diff options
author | Ian Romanick <[email protected]> | 2011-08-21 17:56:39 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2011-08-23 14:52:10 -0700 |
commit | 6183edc070e2d3dce36ab5ee7aee72b0c38775a7 (patch) | |
tree | 041cc6b38b48c2e129fe3bc4ee1cc36319ebe1e3 /src/mesa/main/dd.h | |
parent | f973be59fa293ea75f05cdbac2372360deb5e186 (diff) |
mesa: Remove target parameter from dd_function_table::FlushMappedBufferRange
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 9876d5a53e0..8dfea937f37 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -721,7 +721,7 @@ struct dd_function_table { GLsizeiptr length, GLbitfield access, struct gl_buffer_object *obj); - void (*FlushMappedBufferRange)(struct gl_context *ctx, GLenum target, + void (*FlushMappedBufferRange)(struct gl_context *ctx, GLintptr offset, GLsizeiptr length, struct gl_buffer_object *obj); |