diff options
author | Ian Romanick <[email protected]> | 2011-08-21 17:23:58 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2011-08-23 14:52:09 -0700 |
commit | 92f3fca0ea429dcf07123e63447449db53308266 (patch) | |
tree | 587c5ef18f6e2e02a2dda327a9866832d5b3766a /src/mesa/main/dd.h | |
parent | 12d924c5ae14a1c6a05a3dcae29b77e7668e227d (diff) |
mesa: Remove target parameter from dd_function_table::BufferSubData
No driver used that parameter, and most drivers ended up with a bunch
of unused-parameter warnings because it was there.
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Acked-by: Kenneth Graunke <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r-- | src/mesa/main/dd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index cfccdb0d828..54fcb88f69a 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -698,7 +698,7 @@ struct dd_function_table { const GLvoid *data, GLenum usage, struct gl_buffer_object *obj ); - void (*BufferSubData)( struct gl_context *ctx, GLenum target, GLintptrARB offset, + void (*BufferSubData)( struct gl_context *ctx, GLintptrARB offset, GLsizeiptrARB size, const GLvoid *data, struct gl_buffer_object *obj ); |