meta: fix GetTexImage() for luminance, l/a, intensity formats
[mesa.git] / src / mesa / main / pixel.h
index 6f04eb62724e7caa8870c8597802b209a779e254..558b106d78ceceae21a47d3ab016845abce0797e 100644 (file)
@@ -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)
 {