#ifndef GEN_QSURFACEFORMAT_H #define GEN_QSURFACEFORMAT_H #include #include #include #pragma GCC diagnostic ignored "-Wdeprecated-declarations" #ifdef __cplusplus extern "C" { #endif #ifdef __cplusplus class QSurfaceFormat; #else typedef struct QSurfaceFormat QSurfaceFormat; #endif QSurfaceFormat* QSurfaceFormat_new(); QSurfaceFormat* QSurfaceFormat_new2(int options); QSurfaceFormat* QSurfaceFormat_new3(QSurfaceFormat* other); void QSurfaceFormat_OperatorAssign(QSurfaceFormat* self, QSurfaceFormat* other); void QSurfaceFormat_SetDepthBufferSize(QSurfaceFormat* self, int size); int QSurfaceFormat_DepthBufferSize(QSurfaceFormat* self); void QSurfaceFormat_SetStencilBufferSize(QSurfaceFormat* self, int size); int QSurfaceFormat_StencilBufferSize(QSurfaceFormat* self); void QSurfaceFormat_SetRedBufferSize(QSurfaceFormat* self, int size); int QSurfaceFormat_RedBufferSize(QSurfaceFormat* self); void QSurfaceFormat_SetGreenBufferSize(QSurfaceFormat* self, int size); int QSurfaceFormat_GreenBufferSize(QSurfaceFormat* self); void QSurfaceFormat_SetBlueBufferSize(QSurfaceFormat* self, int size); int QSurfaceFormat_BlueBufferSize(QSurfaceFormat* self); void QSurfaceFormat_SetAlphaBufferSize(QSurfaceFormat* self, int size); int QSurfaceFormat_AlphaBufferSize(QSurfaceFormat* self); void QSurfaceFormat_SetSamples(QSurfaceFormat* self, int numSamples); int QSurfaceFormat_Samples(QSurfaceFormat* self); void QSurfaceFormat_SetSwapBehavior(QSurfaceFormat* self, uintptr_t behavior); uintptr_t QSurfaceFormat_SwapBehavior(QSurfaceFormat* self); bool QSurfaceFormat_HasAlpha(QSurfaceFormat* self); void QSurfaceFormat_SetProfile(QSurfaceFormat* self, uintptr_t profile); uintptr_t QSurfaceFormat_Profile(QSurfaceFormat* self); void QSurfaceFormat_SetRenderableType(QSurfaceFormat* self, uintptr_t typeVal); uintptr_t QSurfaceFormat_RenderableType(QSurfaceFormat* self); void QSurfaceFormat_SetMajorVersion(QSurfaceFormat* self, int majorVersion); int QSurfaceFormat_MajorVersion(QSurfaceFormat* self); void QSurfaceFormat_SetMinorVersion(QSurfaceFormat* self, int minorVersion); int QSurfaceFormat_MinorVersion(QSurfaceFormat* self); void QSurfaceFormat_SetVersion(QSurfaceFormat* self, int major, int minor); bool QSurfaceFormat_Stereo(QSurfaceFormat* self); void QSurfaceFormat_SetStereo(QSurfaceFormat* self, bool enable); void QSurfaceFormat_SetOption(QSurfaceFormat* self, int opt); bool QSurfaceFormat_TestOption(QSurfaceFormat* self, int opt); void QSurfaceFormat_SetOptions(QSurfaceFormat* self, int options); void QSurfaceFormat_SetOptionWithOption(QSurfaceFormat* self, uintptr_t option); bool QSurfaceFormat_TestOptionWithOption(QSurfaceFormat* self, uintptr_t option); int QSurfaceFormat_Options(QSurfaceFormat* self); int QSurfaceFormat_SwapInterval(QSurfaceFormat* self); void QSurfaceFormat_SetSwapInterval(QSurfaceFormat* self, int interval); uintptr_t QSurfaceFormat_ColorSpace(QSurfaceFormat* self); void QSurfaceFormat_SetColorSpace(QSurfaceFormat* self, uintptr_t colorSpace); void QSurfaceFormat_SetDefaultFormat(QSurfaceFormat* format); QSurfaceFormat* QSurfaceFormat_DefaultFormat(); void QSurfaceFormat_SetOption2(QSurfaceFormat* self, uintptr_t option, bool on); void QSurfaceFormat_Delete(QSurfaceFormat* self); #ifdef __cplusplus } /* extern C */ #endif #endif