aboutsummaryrefslogtreecommitdiff
path: root/backends/graphics/opengl/pipelines/fixed.h
diff options
context:
space:
mode:
Diffstat (limited to 'backends/graphics/opengl/pipelines/fixed.h')
-rw-r--r--backends/graphics/opengl/pipelines/fixed.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/backends/graphics/opengl/pipelines/fixed.h b/backends/graphics/opengl/pipelines/fixed.h
index f344ef1364..6bfe140c19 100644
--- a/backends/graphics/opengl/pipelines/fixed.h
+++ b/backends/graphics/opengl/pipelines/fixed.h
@@ -30,13 +30,14 @@ namespace OpenGL {
#if !USE_FORCED_GLES2
class FixedPipeline : public Pipeline {
public:
- virtual void activate();
-
virtual void setColor(GLfloat r, GLfloat g, GLfloat b, GLfloat a);
virtual void drawTexture(const GLTexture &texture, const GLfloat *coordinates);
virtual void setProjectionMatrix(const GLfloat *projectionMatrix);
+
+protected:
+ virtual void activateInternal();
};
#endif // !USE_FORCED_GLES2