main: Cosmetic changes to GetBufferSubData.
authorLaura Ekstrand <laura@jlekstrand.net>
Thu, 12 Feb 2015 00:53:46 +0000 (16:53 -0800)
committerLaura Ekstrand <laura@jlekstrand.net>
Tue, 17 Mar 2015 17:18:34 +0000 (10:18 -0700)
Reviewed-by: Fredrik Höglund <fredrik@kde.org>
src/mesa/main/bufferobj.c
src/mesa/main/bufferobj.h

index 7aac1c62f65c5980769f976002841502563636c7..7d2e5f89320bc86073e394ead395539347ffe978 100644 (file)
@@ -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
index feeaa8b058e9f30fc59027e5ebefb135d5c31aa2..b5d73aec0726a4ea76431878feeb05ae7d738af0 100644 (file)
@@ -230,8 +230,8 @@ _mesa_NamedBufferSubData(GLuint buffer, GLintptr offset,
                          GLsizeiptr size, const GLvoid *data);
 
 void GLAPIENTRY
-_mesa_GetBufferSubData(GLenum target, GLintptrARB offset,
-                       GLsizeiptrARB size, void * data);
+_mesa_GetBufferSubData(GLenum target, GLintptr offset,
+                       GLsizeiptr size, GLvoid *data);
 
 void GLAPIENTRY
 _mesa_GetNamedBufferSubData(GLuint buffer, GLintptr offset,