summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/texgetimage.h
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2011-12-30 08:24:56 -0700
committerBrian Paul <[email protected]>2011-12-30 08:24:56 -0700
commitbec2ea8ef4aaf0704d3315561da106cd994b1bc6 (patch)
tree8bfc560469360bc312dedaec6d15ba0434311810 /src/mesa/main/texgetimage.h
parent94a0c518dc90a24cb4c44ce0a5e6abeba57cbb08 (diff)
mesa: simplify Driver.GetCompressedTexImage() parameters
Reviewed-by: Chad Versace <[email protected]> Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/main/texgetimage.h')
-rw-r--r--src/mesa/main/texgetimage.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mesa/main/texgetimage.h b/src/mesa/main/texgetimage.h
index 02b1cf4599c..cd8e76e7a3e 100644
--- a/src/mesa/main/texgetimage.h
+++ b/src/mesa/main/texgetimage.h
@@ -40,10 +40,9 @@ _mesa_get_teximage(struct gl_context *ctx,
extern void
-_mesa_get_compressed_teximage(struct gl_context *ctx, GLenum target, GLint level,
- GLvoid *img,
- struct gl_texture_object *texObj,
- struct gl_texture_image *texImage);
+_mesa_get_compressed_teximage(struct gl_context *ctx,
+ struct gl_texture_image *texImage,
+ GLvoid *data);