summaryrefslogtreecommitdiffstats
path: root/src/render/renderers/opengl/graphicshelpers/submissioncontext_p.h
diff options
context:
space:
mode:
authorMike Krus <mike.krus@kdab.com>2019-03-14 11:19:31 +0000
committerMike Krus <mike.krus@kdab.com>2019-03-14 17:23:14 +0000
commita7e8df28c7f667a8f1e23ff865268e7f06d43328 (patch)
tree399423291b466e3a101bd27d853a0d230ead0678 /src/render/renderers/opengl/graphicshelpers/submissioncontext_p.h
parent31aa763b0d1f4ec2439c6dc33b4a63b88c16369e (diff)
Fix member overloads
m_currentVAO and m_glHelper were hiding members in parent class. Removed overloads and cleaned up initialization. Change-Id: I174dffc63c812e0b4241018c86e560de48a31a0b Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'src/render/renderers/opengl/graphicshelpers/submissioncontext_p.h')
-rw-r--r--src/render/renderers/opengl/graphicshelpers/submissioncontext_p.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/render/renderers/opengl/graphicshelpers/submissioncontext_p.h b/src/render/renderers/opengl/graphicshelpers/submissioncontext_p.h
index d502a8b27..52c6034d7 100644
--- a/src/render/renderers/opengl/graphicshelpers/submissioncontext_p.h
+++ b/src/render/renderers/opengl/graphicshelpers/submissioncontext_p.h
@@ -101,7 +101,6 @@ public:
bool beginDrawing(QSurface *surface);
void endDrawing(bool swapBuffers);
- void activateGLHelper();
void releaseOpenGL();
void setOpenGLContext(QOpenGLContext* ctx);
@@ -198,8 +197,6 @@ private:
QHash<GLuint, QSize> m_renderTargetsSize;
QAbstractTexture::TextureFormat m_renderTargetFormat;
- QHash<QSurface *, GraphicsHelperInterface*> m_glHelpers;
-
// active textures, indexed by texture unit
struct ActiveTexture {
GLTexture *texture = nullptr;
@@ -226,7 +223,6 @@ private:
// Attributes
friend class OpenGLVertexArrayObject;
- OpenGLVertexArrayObject *m_currentVAO;
struct VAOVertexAttribute
{