diff options
author | Brian Paul <[email protected]> | 2011-12-30 08:24:56 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-12-30 08:24:56 -0700 |
commit | bec2ea8ef4aaf0704d3315561da106cd994b1bc6 (patch) | |
tree | 8bfc560469360bc312dedaec6d15ba0434311810 /src/mesa/main/dd.h | |
parent | 94a0c518dc90a24cb4c44ce0a5e6abeba57cbb08 (diff) |
mesa: simplify Driver.GetCompressedTexImage() parameters
Reviewed-by: Chad Versace <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r-- | src/mesa/main/dd.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index 5a306e3902f..6707e785dc7 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -400,10 +400,9 @@ struct dd_function_table { /** * Called by glGetCompressedTexImage. */ - void (*GetCompressedTexImage)(struct gl_context *ctx, GLenum target, GLint level, - GLvoid *img, - struct gl_texture_object *texObj, - struct gl_texture_image *texImage); + void (*GetCompressedTexImage)(struct gl_context *ctx, + struct gl_texture_image *texImage, + GLvoid *data); /*@}*/ |