From 388af5b6f43fc81d7a9423a42358bcea65ab8ba9 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 24 Aug 2012 06:40:06 -0600 Subject: [PATCH] main: fix ES compile breakage --- src/mesa/main/teximage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } } -- 2.30.2