Make surface and window accessible to subclasses

We need to access these in the Android plugin.

Change-Id: I8c7f279bbe0b7087260cceb1f965c833c0097984
Reviewed-by: Paul Olav Tvete <paul.tvete@digia.com>
This commit is contained in:
Eskil Abrahamsen Blomfeldt 2013-04-12 15:07:12 +02:00 committed by The Qt Project
parent c1ac77b34c
commit 2b4dff8dc1

View File

@ -68,10 +68,12 @@ public:
virtual void invalidateSurface();
virtual void resetSurface();
private:
WId m_winid;
protected:
EGLSurface m_surface;
EGLNativeWindowType m_window;
private:
WId m_winid;
EGLConfig m_config;
QSurfaceFormat m_format;
};