diff options
author | José Fonseca <[email protected]> | 2008-05-31 18:14:09 +0900 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-09-23 17:20:38 -0700 |
commit | 452a592ca4b1bac78eee53fb9f2f1deac7832840 (patch) | |
tree | 64f12521f97de549005661c9e680769ff1e9ce84 /src/mesa/main/pixel.h | |
parent | 9118b02fd0e4c5c472d7dbf211eec350a1d37ea4 (diff) |
mesa: Apply MSVC portability fixes from Alan Hourihane.
Diffstat (limited to 'src/mesa/main/pixel.h')
-rw-r--r-- | src/mesa/main/pixel.h | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/src/mesa/main/pixel.h b/src/mesa/main/pixel.h index 32e2bd10753..cb6c5262a39 100644 --- a/src/mesa/main/pixel.h +++ b/src/mesa/main/pixel.h @@ -69,48 +69,6 @@ _mesa_PixelZoom( GLfloat xfactor, GLfloat yfactor ); /*@}*/ -/** \name Pixel processing functions */ -/*@{*/ - -extern void -_mesa_scale_and_bias_rgba(GLuint n, GLfloat rgba[][4], - GLfloat rScale, GLfloat gScale, - GLfloat bScale, GLfloat aScale, - GLfloat rBias, GLfloat gBias, - GLfloat bBias, GLfloat aBias); - -extern void -_mesa_map_rgba(const GLcontext *ctx, GLuint n, GLfloat rgba[][4]); - - -extern void -_mesa_transform_rgba(const GLcontext *ctx, GLuint n, GLfloat rgba[][4]); - - -extern void -_mesa_lookup_rgba_float(const struct gl_color_table *table, - GLuint n, GLfloat rgba[][4]); - -extern void -_mesa_lookup_rgba_ubyte(const struct gl_color_table *table, - GLuint n, GLubyte rgba[][4]); - - -extern void -_mesa_map_ci_to_rgba(const GLcontext *ctx, - GLuint n, const GLuint index[], GLfloat rgba[][4]); - - -extern void -_mesa_map_ci8_to_rgba8(const GLcontext *ctx, GLuint n, const GLubyte index[], - GLubyte rgba[][4]); - - -extern void -_mesa_scale_and_bias_depth(const GLcontext *ctx, GLuint n, - GLfloat depthValues[]); - - extern void _mesa_update_pixel( GLcontext *ctx, GLuint newstate ); |