mesa: update some old-style (K&R?) function pointer calls
authorBrian Paul <brianp@vmware.com>
Fri, 20 Nov 2015 17:19:16 +0000 (10:19 -0700)
committerBrian Paul <brianp@vmware.com>
Fri, 20 Nov 2015 21:09:15 +0000 (14:09 -0700)
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
src/mesa/main/blend.c
src/mesa/main/buffers.c
src/mesa/main/fog.c
src/mesa/main/getstring.c
src/mesa/main/points.c
src/mesa/main/texenv.c

index f07552b47789adf304df2c5c11d762a0c4369968..2ae22e9e691c6643eb40b9be561a3c7b61ab10d0 100644 (file)
@@ -404,7 +404,7 @@ _mesa_BlendEquation( GLenum mode )
    ctx->Color._BlendEquationPerBuffer = GL_FALSE;
 
    if (ctx->Driver.BlendEquationSeparate)
-      (*ctx->Driver.BlendEquationSeparate)( ctx, mode, mode );
+      ctx->Driver.BlendEquationSeparate(ctx, mode, mode);
 }
 
 
@@ -582,7 +582,7 @@ _mesa_BlendColor( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha )
    ctx->Color.BlendColor[3] = CLAMP(tmp[3], 0.0F, 1.0F);
 
    if (ctx->Driver.BlendColor)
-      (*ctx->Driver.BlendColor)(ctx, ctx->Color.BlendColor);
+      ctx->Driver.BlendColor(ctx, ctx->Color.BlendColor);
 }
 
 
index 93588a2ee1891bb61e50be218b338e022a845cc6..83e238ae825f6faa348e231784c4f1a594ed80fb 100644 (file)
@@ -731,7 +731,7 @@ _mesa_read_buffer(struct gl_context *ctx, struct gl_framebuffer *fb,
    /* Call the device driver function only if fb is the bound read buffer */
    if (fb == ctx->ReadBuffer) {
       if (ctx->Driver.ReadBuffer)
-         (*ctx->Driver.ReadBuffer)(ctx, buffer);
+         ctx->Driver.ReadBuffer(ctx, buffer);
    }
 }
 
index 45f343d61c8e4adb18d931d8824b8da45f647963..1ad939cfde6ccd953647aee237ac025b3c65ff05 100644 (file)
@@ -190,7 +190,7 @@ _mesa_Fogfv( GLenum pname, const GLfloat *params )
    }
 
    if (ctx->Driver.Fogfv) {
-      (*ctx->Driver.Fogfv)( ctx, pname, params );
+      ctx->Driver.Fogfv( ctx, pname, params );
    }
 
    return;
index 06ba17c92d666e2e35f9ae3b0f0dd5ec25c7f3a6..87c5a3a194fcd8433c94c18158127d774f438e0e 100644 (file)
@@ -121,7 +121,7 @@ _mesa_GetString( GLenum name )
    assert(ctx->Driver.GetString);
    {
       /* Give the driver the chance to handle this query */
-      const GLubyte *str = (*ctx->Driver.GetString)(ctx, name);
+      const GLubyte *str = ctx->Driver.GetString(ctx, name);
       if (str)
          return str;
    }
index 863e3c1af32293e243b0c9dcfdd0d937cb0226ef..c2f2b6399cb28efb6ab96970f362b79d94613466 100644 (file)
@@ -209,7 +209,7 @@ _mesa_PointParameterfv( GLenum pname, const GLfloat *params)
    }
 
    if (ctx->Driver.PointParameterfv)
-      (*ctx->Driver.PointParameterfv)(ctx, pname, params);
+      ctx->Driver.PointParameterfv(ctx, pname, params);
 }
 
 
index 091922161c59b08f0b32db641128d099051fcd1c..93c680650bbbfe2dd168ee73a2dd2e6e8b7c7430 100644 (file)
@@ -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);
    }
 }