diff options
author | Brian Paul <[email protected]> | 2012-06-05 16:32:23 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-06-06 07:56:00 -0600 |
commit | e8fdd0e0d5286f4a9c763ffde44decec51124ebc (patch) | |
tree | cb07e2c420c728b9b395f6199a216ddb2e874e78 /src/mesa/drivers/dri/nouveau | |
parent | cd9ab2584f5e2a5eb0e96a948e6aedc9a33c886d (diff) |
mesa: consolidate internal glCompressedTexImage1/2/3D code
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/nouveau')
-rw-r--r-- | src/mesa/drivers/dri/nouveau/nouveau_texture.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/nouveau/nouveau_texture.c b/src/mesa/drivers/dri/nouveau/nouveau_texture.c index 4d6518d2426..281d1dda458 100644 --- a/src/mesa/drivers/dri/nouveau/nouveau_texture.c +++ b/src/mesa/drivers/dri/nouveau/nouveau_texture.c @@ -555,10 +555,10 @@ nouveau_teximage_123d(struct gl_context *ctx, GLuint dims, } static void -nouveau_compressed_teximage_2d(struct gl_context *ctx, +nouveau_compressed_teximage(struct gl_context *ctx, GLuint dims, struct gl_texture_image *ti, GLint internalFormat, - GLint width, GLint height, GLint border, + GLint width, GLint height, GLint depth, GLint border, GLsizei imageSize, const GLvoid *data) { nouveau_teximage(ctx, 2, ti, internalFormat, @@ -708,7 +708,7 @@ nouveau_texture_functions_init(struct dd_function_table *functions) functions->ChooseTextureFormat = nouveau_choose_tex_format; functions->TexImage = nouveau_teximage_123d; functions->TexSubImage = nouveau_texsubimage_123d; - functions->CompressedTexImage2D = nouveau_compressed_teximage_2d; + functions->CompressedTexImage = nouveau_compressed_teximage; functions->CompressedTexSubImage2D = nouveau_compressed_texsubimage_2d; functions->BindTexture = nouveau_bind_texture; functions->MapTextureImage = nouveau_map_texture_image; |