mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
opengl32: Add alternative function for glVertexAttribDivisor.
Signed-off-by: Sebastian Lackner <sebastian@fds-team.de> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
50da224be7
commit
f915f9db4c
1 changed files with 2 additions and 1 deletions
|
@ -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++)
|
||||
|
|
Loading…
Reference in a new issue