main: Cosmetic changes to GetBufferSubData.

Reviewed-by: Fredrik Höglund <fredrik@kde.org>
This commit is contained in:
Laura Ekstrand
2015-02-11 16:53:46 -08:00
parent 23eab47bbe
commit 579297c8bd
2 changed files with 3 additions and 3 deletions
+1 -1
View 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
+2 -2
View 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,