mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
wined3d: Use GL_EXTCALL.
That fixes compilation with gl headers that do not know about glUniform4fvARB.
This commit is contained in:
parent
272196f514
commit
581c24ef4e
1 changed files with 1 additions and 1 deletions
|
@ -319,7 +319,7 @@ void shader_glsl_load_constants(
|
|||
/* Upload the position fixup params */
|
||||
pos = GL_EXTCALL(glGetUniformLocationARB(programId, "posFixup"));
|
||||
checkGLcall("glGetUniformLocationARB");
|
||||
glUniform4fvARB(pos, 1, &vshader_impl->wineD3DDevice->posFixup[0]);
|
||||
GL_EXTCALL(glUniform4fvARB(pos, 1, &vshader_impl->wineD3DDevice->posFixup[0]));
|
||||
checkGLcall("glUniform4fvARB");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue