2024-08-25 04:08:24 +00:00
|
|
|
#include <QSize>
|
|
|
|
#include <QSurface>
|
|
|
|
#include <QSurfaceFormat>
|
2024-10-16 05:07:56 +00:00
|
|
|
#include <qsurface.h>
|
2024-08-29 07:01:51 +00:00
|
|
|
#include "gen_qsurface.h"
|
2024-09-14 22:29:05 +00:00
|
|
|
#include "_cgo_export.h"
|
2024-08-25 04:08:24 +00:00
|
|
|
|
2024-09-18 00:12:02 +00:00
|
|
|
int QSurface_SurfaceClass(const QSurface* self) {
|
2024-09-14 22:29:05 +00:00
|
|
|
QSurface::SurfaceClass _ret = self->surfaceClass();
|
2024-09-18 00:12:02 +00:00
|
|
|
return static_cast<int>(_ret);
|
2024-08-29 07:01:51 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QSurfaceFormat* QSurface_Format(const QSurface* self) {
|
2024-09-17 06:29:11 +00:00
|
|
|
return new QSurfaceFormat(self->format());
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-18 00:12:02 +00:00
|
|
|
int QSurface_SurfaceType(const QSurface* self) {
|
2024-09-14 22:29:05 +00:00
|
|
|
QSurface::SurfaceType _ret = self->surfaceType();
|
2024-09-18 00:12:02 +00:00
|
|
|
return static_cast<int>(_ret);
|
2024-08-29 07:01:51 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
bool QSurface_SupportsOpenGL(const QSurface* self) {
|
|
|
|
return self->supportsOpenGL();
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 05:41:09 +00:00
|
|
|
QSize* QSurface_Size(const QSurface* self) {
|
2024-09-17 06:29:11 +00:00
|
|
|
return new QSize(self->size());
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-11-19 06:29:06 +00:00
|
|
|
void QSurface_Delete(QSurface* self, bool isSubclass) {
|
|
|
|
if (isSubclass) {
|
|
|
|
delete dynamic_cast<QSurface*>( self );
|
|
|
|
} else {
|
|
|
|
delete self;
|
|
|
|
}
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|