enum ByteOrderInfo (Niantic.ARDK.AR.ReferenceImage.ByteOrderInfo)

Overview

Defines the order of data per pixel of an image. More...

enum ByteOrderInfo: uint {
    little32 = 1,
    big32    = 2,
};

Detailed Documentation

Defines the order of data per pixel of an image.

注釈

: Although this sounds like it handles all four bytes, the position of that alpha data is defined by the AlphaInfo, so this actually only handles the order of the RGB data.

Enum Values

little32

The bytes in an image are stored in 32-bit little-endian format. e.g. for an ARGB image, the data will look like BGRA.

big32

The bytes in an image are stored in 32-bit big-endian format. e.g. for an ARGB image, the data will look like ARGB.