mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 17:08:38 +00:00
56 lines
2.2 KiB
C++
56 lines
2.2 KiB
C++
#ifndef GEN_QSURFACEFORMAT_H
|
|
#define GEN_QSURFACEFORMAT_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#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(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);
|
|
bool QSurfaceFormat_HasAlpha(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);
|
|
int QSurfaceFormat_SwapInterval(QSurfaceFormat* self);
|
|
void QSurfaceFormat_SetSwapInterval(QSurfaceFormat* self, int interval);
|
|
void QSurfaceFormat_SetDefaultFormat(QSurfaceFormat* format);
|
|
QSurfaceFormat* QSurfaceFormat_DefaultFormat();
|
|
void QSurfaceFormat_Delete(QSurfaceFormat* self);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|