161990024b98a15e06df042b812d836068b4f85f
[mesa.git] / src / mesa / main / pixel.h
1 /**
2 * \file pixel.h
3 * Pixel operations.
4 */
5
6 /*
7 * Mesa 3-D graphics library
8 * Version: 6.5
9 *
10 * Copyright (C) 1999-2005 Brian Paul All Rights Reserved.
11 *
12 * Permission is hereby granted, free of charge, to any person obtaining a
13 * copy of this software and associated documentation files (the "Software"),
14 * to deal in the Software without restriction, including without limitation
15 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
16 * and/or sell copies of the Software, and to permit persons to whom the
17 * Software is furnished to do so, subject to the following conditions:
18 *
19 * The above copyright notice and this permission notice shall be included
20 * in all copies or substantial portions of the Software.
21 *
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
23 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
25 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
26 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
27 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 */
29
30
31 #ifndef PIXEL_H
32 #define PIXEL_H
33
34
35 #include "mtypes.h"
36
37
38 /** \name API functions */
39 /*@{*/
40
41 extern void GLAPIENTRY
42 _mesa_GetPixelMapfv( GLenum map, GLfloat *values );
43
44 extern void GLAPIENTRY
45 _mesa_GetPixelMapuiv( GLenum map, GLuint *values );
46
47 extern void GLAPIENTRY
48 _mesa_GetPixelMapusv( GLenum map, GLushort *values );
49
50 extern void GLAPIENTRY
51 _mesa_PixelMapfv( GLenum map, GLsizei mapsize, const GLfloat *values );
52
53 extern void GLAPIENTRY
54 _mesa_PixelMapuiv(GLenum map, GLsizei mapsize, const GLuint *values );
55
56 extern void GLAPIENTRY
57 _mesa_PixelMapusv(GLenum map, GLsizei mapsize, const GLushort *values );
58
59 extern void GLAPIENTRY
60 _mesa_PixelStoref( GLenum pname, GLfloat param );
61
62
63 extern void GLAPIENTRY
64 _mesa_PixelStorei( GLenum pname, GLint param );
65
66 extern void GLAPIENTRY
67 _mesa_PixelTransferf( GLenum pname, GLfloat param );
68
69 extern void GLAPIENTRY
70 _mesa_PixelTransferi( GLenum pname, GLint param );
71
72 extern void GLAPIENTRY
73 _mesa_PixelZoom( GLfloat xfactor, GLfloat yfactor );
74
75 /*@}*/
76
77
78 /** \name Pixel processing functions */
79 /*@{*/
80
81 extern void
82 _mesa_scale_and_bias_rgba(GLuint n, GLfloat rgba[][4],
83 GLfloat rScale, GLfloat gScale,
84 GLfloat bScale, GLfloat aScale,
85 GLfloat rBias, GLfloat gBias,
86 GLfloat bBias, GLfloat aBias);
87
88 extern void
89 _mesa_map_rgba(const GLcontext *ctx, GLuint n, GLfloat rgba[][4]);
90
91
92 extern void
93 _mesa_transform_rgba(const GLcontext *ctx, GLuint n, GLfloat rgba[][4]);
94
95
96 extern void
97 _mesa_lookup_rgba_float(const struct gl_color_table *table,
98 GLuint n, GLfloat rgba[][4]);
99
100 extern void
101 _mesa_lookup_rgba_chan(const struct gl_color_table *table,
102 GLuint n, GLchan rgba[][4]);
103
104
105 extern void
106 _mesa_shift_and_offset_ci(const GLcontext *ctx, GLuint n,
107 GLuint indexes[]);
108
109
110 extern void
111 _mesa_map_ci(const GLcontext *ctx, GLuint n, GLuint index[]);
112
113
114 extern void
115 _mesa_map_ci_to_rgba_chan(const GLcontext *ctx,
116 GLuint n, const GLuint index[],
117 GLchan rgba[][4]);
118
119
120 extern void
121 _mesa_map_ci_to_rgba(const GLcontext *ctx,
122 GLuint n, const GLuint index[], GLfloat rgba[][4]);
123
124
125 extern void
126 _mesa_map_ci8_to_rgba(const GLcontext *ctx,
127 GLuint n, const GLubyte index[],
128 GLchan rgba[][4]);
129
130
131 extern void
132 _mesa_shift_and_offset_stencil(const GLcontext *ctx, GLuint n,
133 GLstencil indexes[]);
134
135
136 extern void
137 _mesa_map_stencil(const GLcontext *ctx, GLuint n, GLstencil index[]);
138
139
140 extern void
141 _mesa_scale_and_bias_depth(const GLcontext *ctx, GLuint n,
142 GLfloat depthValues[]);
143
144
145 extern void
146 _mesa_chan_to_float_span(const GLcontext *ctx, GLuint n,
147 CONST GLchan rgba[][4], GLfloat rgbaf[][4]);
148
149
150 extern void
151 _mesa_update_pixel( GLcontext *ctx, GLuint newstate );
152
153 extern void
154 _mesa_init_pixel( GLcontext * ctx );
155
156 /*@}*/
157
158 #endif