* remove constness.

This commit is contained in:
Nathan Letwory 2008-02-10 20:41:59 +00:00
parent a4e27a689a
commit f6dcb28560

@ -196,7 +196,7 @@ void RAS_2DFilterManager::SetupTexture()
{
glDeleteTextures(1,(const GLuint *)&texname);
}
glGenTextures(1, (const GLuint *)&texname);
glGenTextures(1, (GLuint *)&texname);
glBindTexture(GL_TEXTURE_2D, texname);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, texturewidth, textureheight, 0, GL_RGB,
GL_UNSIGNED_BYTE, 0);