summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/eglfs/qeglfsbackingstore.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/platforms/eglfs/qeglfsbackingstore.h')
-rw-r--r--src/plugins/platforms/eglfs/qeglfsbackingstore.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/plugins/platforms/eglfs/qeglfsbackingstore.h b/src/plugins/platforms/eglfs/qeglfsbackingstore.h
index 97ea322420..f723bca685 100644
--- a/src/plugins/platforms/eglfs/qeglfsbackingstore.h
+++ b/src/plugins/platforms/eglfs/qeglfsbackingstore.h
@@ -44,10 +44,16 @@
#include <QtGui/qplatformbackingstore_qpa.h>
+#include <QImage>
+#include <QRegion>
+
+#define EGLFS_BACKINGSTORE_USE_IMAGE
+
QT_BEGIN_NAMESPACE
class QOpenGLContext;
class QOpenGLPaintDevice;
+class QOpenGLShaderProgram;
class QEglFSBackingStore : public QPlatformBackingStore
{
@@ -64,8 +70,19 @@ public:
void resize(const QSize &size, const QRegion &staticContents);
private:
+ void makeCurrent();
+
QOpenGLContext *m_context;
+#ifdef EGLFS_BACKINGSTORE_USE_IMAGE
+ QImage m_image;
+ uint m_texture;
+ QRegion m_dirty;
+ QOpenGLShaderProgram *m_program;
+ int m_vertexCoordEntry;
+ int m_textureCoordEntry;
+#else
QOpenGLPaintDevice *m_device;
+#endif
};
QT_END_NAMESPACE