Commit f915f9db authored by Sebastian Lackner's avatar Sebastian Lackner Committed by Alexandre Julliard

opengl32: Add alternative function for glVertexAttribDivisor.

parent 50da224b
......@@ -881,7 +881,8 @@ PROC WINAPI wglGetProcAddress( LPCSTR name )
unsigned int i;
static const struct { const char *name, *alt; } alternatives[] =
{
{ "glCopyTexSubImage3DEXT", "glCopyTexSubImage3D" }, /* needed by RuneScape */
{ "glCopyTexSubImage3DEXT", "glCopyTexSubImage3D" }, /* needed by RuneScape */
{ "glVertexAttribDivisor", "glVertexAttribDivisorARB"}, /* needed by Caffeine */
};
for (i = 0; i < sizeof(alternatives)/sizeof(alternatives[0]); i++)
......
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