summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/pixel.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2011-09-30 08:15:30 -0600
committerBrian Paul <brianp@vmware.com>2011-09-30 08:16:34 -0600
commita8ca786ba69f6af0120a24f473b2ae7e6a41495d (patch)
tree2909eca9a45a420af02ecd0a4c1b63adf216f949 /src/mesa/main/pixel.h
parent57169c469406f1880107a6b9f052708ce078942d (diff)
downloadexternal_mesa3d-a8ca786ba69f6af0120a24f473b2ae7e6a41495d.zip
external_mesa3d-a8ca786ba69f6af0120a24f473b2ae7e6a41495d.tar.gz
external_mesa3d-a8ca786ba69f6af0120a24f473b2ae7e6a41495d.tar.bz2
meta: fix GetTexImage() for luminance, l/a, intensity formats
The GL spec says that luminance values are returned as (l, 0, 0, 1), L/A values as (l, 0, 0, a) and intensity values as (i, 0, 0, 1). Use the pixel transfer scale controls to implement that. This fixes a few failures in the new piglit getteximage-formats test when getting a compressed L or L/A image.
Diffstat (limited to 'src/mesa/main/pixel.h')
-rw-r--r--src/mesa/main/pixel.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mesa/main/pixel.h b/src/mesa/main/pixel.h
index 6f04eb6..558b106 100644
--- a/src/mesa/main/pixel.h
+++ b/src/mesa/main/pixel.h
@@ -43,6 +43,9 @@ struct gl_context;
#if FEATURE_pixel_transfer
+extern void GLAPIENTRY
+_mesa_PixelTransferf(GLenum pname, GLfloat param);
+
extern void
_mesa_update_pixel( struct gl_context *ctx, GLuint newstate );
@@ -51,6 +54,12 @@ _mesa_init_pixel_dispatch( struct _glapi_table * disp );
#else /* FEATURE_pixel_transfer */
+static inline void GLAPIENTRY
+_mesa_PixelTransferf(GLenum pname, GLfloat param)
+{
+}
+
+
static INLINE void
_mesa_update_pixel(struct gl_context *ctx, GLuint newstate)
{