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/buffers.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/buffers.c')
-rw-r--r-- | src/mesa/main/buffers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/buffers.c b/src/mesa/main/buffers.c index 93588a2ee18..83e238ae825 100644 --- a/src/mesa/main/buffers.c +++ b/src/mesa/main/buffers.c @@ -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); } } |