diff options
author | Laura Ekstrand <[email protected]> | 2015-02-11 16:53:46 -0800 |
---|---|---|
committer | Laura Ekstrand <[email protected]> | 2015-03-17 10:18:34 -0700 |
commit | 579297c8bdffd92f47a8cc02100b9535822d2ae7 (patch) | |
tree | 3e80cc20cd37ccabeb25afdb4e9be913f312502e /src/mesa/main/bufferobj.c | |
parent | 23eab47bbe998b95d5da889b85b7b0ca6e14385b (diff) |
main: Cosmetic changes to GetBufferSubData.
Reviewed-by: Fredrik Höglund <[email protected]>
Diffstat (limited to 'src/mesa/main/bufferobj.c')
-rw-r--r-- | src/mesa/main/bufferobj.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/bufferobj.c b/src/mesa/main/bufferobj.c index 7aac1c62f65..7d2e5f89320 100644 --- a/src/mesa/main/bufferobj.c +++ b/src/mesa/main/bufferobj.c @@ -1697,7 +1697,7 @@ _mesa_GetBufferSubData(GLenum target, GLintptr offset, } assert(ctx->Driver.GetBufferSubData); - ctx->Driver.GetBufferSubData( ctx, offset, size, data, bufObj ); + ctx->Driver.GetBufferSubData(ctx, offset, size, data, bufObj); } void GLAPIENTRY |