Commit 1a335988 authored by Roderick Colenbrander's avatar Roderick Colenbrander Committed by Alexandre Julliard

wined3d: Fix opengl extension call.

parent 5d37be9e
......@@ -859,7 +859,7 @@ static void unloadVertexData(IWineD3DDevice *iface) {
glDisableClientState(GL_SECONDARY_COLOR_ARRAY_EXT);
}
for (texture_idx = 0; texture_idx < GL_LIMITS(textures); ++texture_idx) {
glClientActiveTextureARB(GL_TEXTURE0_ARB + texture_idx);
GL_EXTCALL(glClientActiveTextureARB(GL_TEXTURE0_ARB + texture_idx));
glDisableClientState(GL_TEXTURE_COORD_ARRAY);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment