#ifndef GX_C_GX_FORMAT_HPP #define GX_C_GX_FORMAT_HPP #include #include class CGxFormat { public: // Types enum Format { Fmt_Rgb565 = 0, Fmt_ArgbX888 = 1, Fmt_Argb8888 = 2, Fmt_Argb2101010 = 3, Fmt_Ds160 = 4, Fmt_Ds24X = 5, Fmt_Ds248 = 6, Fmt_Ds320 = 7, Formats_Last = 8 }; // Member variables int8_t window; int32_t maximize; Format depthFormat; C2iVector size; uint32_t sampleCount; Format colorFormat; uint32_t refreshRate; }; #endif