Remove unused method

This commit is contained in:
Atlante45 2015-05-20 16:50:31 +02:00
parent ee264368c0
commit 9a007ab135
2 changed files with 1 additions and 8 deletions

View file

@ -70,11 +70,6 @@ void RenderableTextEntityItem::render(RenderArgs* args) {
glPopMatrix();
}
void RenderableTextEntityItem::enableClipPlane(GLenum plane, float x, float y, float z, float w) {
GLdouble coefficients[] = { x, y, z, w };
glClipPlane(plane, coefficients);
glEnable(plane);
}

View file

@ -23,10 +23,8 @@ public:
{ }
virtual void render(RenderArgs* args);
private:
void enableClipPlane(GLenum plane, float x, float y, float z, float w);
};