diff options
author | Brian Paul <[email protected]> | 2015-11-20 10:19:16 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2015-11-20 14:09:15 -0700 |
commit | 47fae842d01331af5acc56ff8db37c09ceca791f (patch) | |
tree | 02d83a79dc318c3d87eca2661dafbddb83280fad /src/mesa/main/texenv.c | |
parent | 1def5ef95863f704ab5d1bd3bef3a31a6e461b60 (diff) |
mesa: update some old-style (K&R?) function pointer calls
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/mesa/main/texenv.c')
-rw-r--r-- | src/mesa/main/texenv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/texenv.c b/src/mesa/main/texenv.c index 091922161c5..93c680650bb 100644 --- a/src/mesa/main/texenv.c +++ b/src/mesa/main/texenv.c @@ -495,7 +495,7 @@ _mesa_TexEnvfv( GLenum target, GLenum pname, const GLfloat *param ) /* Tell device driver about the new texture environment */ if (ctx->Driver.TexEnv) { - (*ctx->Driver.TexEnv)( ctx, target, pname, param ); + ctx->Driver.TexEnv(ctx, target, pname, param); } } |