summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/teximage.c
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2012-08-24 06:40:06 -0600
committerBrian Paul <[email protected]>2012-08-24 06:40:06 -0600
commit388af5b6f43fc81d7a9423a42358bcea65ab8ba9 (patch)
tree1fcbafe5caf4bd3d1f8b840c92b468a5fa1d9528 /src/mesa/main/teximage.c
parent4fec5e9154582439bc185eb143e89f220b169c32 (diff)
main: fix ES compile breakage
Diffstat (limited to 'src/mesa/main/teximage.c')
-rw-r--r--src/mesa/main/teximage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c
index 0cd0b328c8b..8ec48eb62a6 100644
--- a/src/mesa/main/teximage.c
+++ b/src/mesa/main/teximage.c
@@ -2926,7 +2926,7 @@ teximage(struct gl_context *ctx, GLboolean compressed, GLuint dims,
case GL_PALETTE8_RGBA4_OES:
case GL_PALETTE8_RGB5_A1_OES:
_mesa_cpal_compressed_teximage2d(target, level, internalFormat,
- width, height, imageSize, data);
+ width, height, imageSize, pixels);
return;
}
}