mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
38 lines
830 B
C++
38 lines
830 B
C++
#include <QSize>
|
|
#include <QSurface>
|
|
#include <QSurfaceFormat>
|
|
#include <qsurface.h>
|
|
#include "gen_qsurface.h"
|
|
#include "_cgo_export.h"
|
|
|
|
int QSurface_SurfaceClass(const QSurface* self) {
|
|
QSurface::SurfaceClass _ret = self->surfaceClass();
|
|
return static_cast<int>(_ret);
|
|
}
|
|
|
|
QSurfaceFormat* QSurface_Format(const QSurface* self) {
|
|
return new QSurfaceFormat(self->format());
|
|
}
|
|
|
|
int QSurface_SurfaceType(const QSurface* self) {
|
|
QSurface::SurfaceType _ret = self->surfaceType();
|
|
return static_cast<int>(_ret);
|
|
}
|
|
|
|
bool QSurface_SupportsOpenGL(const QSurface* self) {
|
|
return self->supportsOpenGL();
|
|
}
|
|
|
|
QSize* QSurface_Size(const QSurface* self) {
|
|
return new QSize(self->size());
|
|
}
|
|
|
|
void QSurface_Delete(QSurface* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<QSurface*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|