summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/eglfs/qeglfsintegration.h
diff options
context:
space:
mode:
authorSamuel Rødal <samuel.rodal@nokia.com>2012-05-15 08:12:45 +0200
committerQt by Nokia <qt-info@nokia.com>2012-05-16 19:36:27 +0200
commit9487acb9d2dea07a89a82c1a723bd08c45133cdd (patch)
treeb12110c9b0297058476a3db9563f202d0b0fafa4 /src/plugins/platforms/eglfs/qeglfsintegration.h
parentce2b46daea5815df1070463b6bc379e1b4573dae (diff)
Handle EglDisplay and EglContext in the native interface of eglfs.
Change-Id: I793176204f12eea9d915fb7fe489bd3450a283cd Reviewed-by: Girish Ramakrishnan <girish.1.ramakrishnan@nokia.com>
Diffstat (limited to 'src/plugins/platforms/eglfs/qeglfsintegration.h')
-rw-r--r--src/plugins/platforms/eglfs/qeglfsintegration.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/plugins/platforms/eglfs/qeglfsintegration.h b/src/plugins/platforms/eglfs/qeglfsintegration.h
index b7cb715a9c..04d77a5903 100644
--- a/src/plugins/platforms/eglfs/qeglfsintegration.h
+++ b/src/plugins/platforms/eglfs/qeglfsintegration.h
@@ -45,13 +45,14 @@
#include "qeglfsscreen.h"
#include <qpa/qplatformintegration.h>
+#include <qpa/qplatformnativeinterface.h>
#include <qpa/qplatformscreen.h>
QT_BEGIN_HEADER
QT_BEGIN_NAMESPACE
-class QEglFSIntegration : public QPlatformIntegration
+class QEglFSIntegration : public QPlatformIntegration, public QPlatformNativeInterface
{
public:
QEglFSIntegration();
@@ -62,6 +63,7 @@ public:
QPlatformWindow *createPlatformWindow(QWindow *window) const;
QPlatformBackingStore *createPlatformBackingStore(QWindow *window) const;
QPlatformOpenGLContext *createPlatformOpenGLContext(QOpenGLContext *context) const;
+ QPlatformNativeInterface *nativeInterface() const;
QPlatformFontDatabase *fontDatabase() const;
@@ -69,6 +71,10 @@ public:
QVariant styleHint(QPlatformIntegration::StyleHint hint) const;
+ // QPlatformNativeInterface
+ void *nativeResourceForIntegration(const QByteArray &resource);
+ void *nativeResourceForContext(const QByteArray &resource, QOpenGLContext *context);
+
private:
QPlatformFontDatabase *mFontDb;
QPlatformScreen *mScreen;