[MESA]
[reactos.git] / reactos / dll / opengl / mesa / src / mesa / main / drawpix.c
1 /*
2 * Mesa 3-D graphics library
3 * Version: 7.1
4 *
5 * Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25 #include "glheader.h"
26 #include "imports.h"
27 #include "bufferobj.h"
28 #include "context.h"
29 #include "drawpix.h"
30 #include "enums.h"
31 #include "feedback.h"
32 #include "framebuffer.h"
33 #include "image.h"
34 #include "mfeatures.h"
35 #include "pbo.h"
36 #include "readpix.h"
37 #include "state.h"
38 #include "dispatch.h"
39
40
41 #if FEATURE_drawpix
42
43
44 /*
45 * Execute glDrawPixels
46 */
47 static void GLAPIENTRY
48 _mesa_DrawPixels( GLsizei width, GLsizei height,
49 GLenum format, GLenum type, const GLvoid *pixels )
50 {
51 GET_CURRENT_CONTEXT(ctx);
52 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
53
54 if (MESA_VERBOSE & VERBOSE_API)
55 _mesa_debug(ctx, "glDrawPixels(%d, %d, %s, %s, %p) // to %s at %d, %d\n",
56 width, height,
57 _mesa_lookup_enum_by_nr(format),
58 _mesa_lookup_enum_by_nr(type),
59 pixels,
60 _mesa_lookup_enum_by_nr(ctx->DrawBuffer->ColorDrawBuffer),
61 IROUND(ctx->Current.RasterPos[0]),
62 IROUND(ctx->Current.RasterPos[1]));
63
64
65 if (width < 0 || height < 0) {
66 _mesa_error( ctx, GL_INVALID_VALUE, "glDrawPixels(width or height < 0)" );
67 return;
68 }
69
70 /* We're not using the current vertex program, and the driver may install
71 * its own. Note: this may dirty some state.
72 */
73 _mesa_set_vp_override(ctx, GL_TRUE);
74
75 /* Note: this call does state validation */
76 if (!_mesa_valid_to_render(ctx, "glDrawPixels")) {
77 goto end; /* the error code was recorded */
78 }
79
80 /* GL 3.0 introduced a new restriction on glDrawPixels() over what was in
81 * GL_EXT_texture_integer. From section 3.7.4 ("Rasterization of Pixel
82 * Rectangles) on page 151 of the GL 3.0 specification:
83 *
84 * "If format contains integer components, as shown in table 3.6, an
85 * INVALID OPERATION error is generated."
86 *
87 * Since DrawPixels rendering would be merely undefined if not an error (due
88 * to a lack of defined mapping from integer data to gl_Color fragment shader
89 * input), NVIDIA's implementation also just returns this error despite
90 * exposing GL_EXT_texture_integer, just return an error regardless.
91 */
92 if (_mesa_is_integer_format(format)) {
93 _mesa_error(ctx, GL_INVALID_OPERATION, "glDrawPixels(integer format)");
94 goto end;
95 }
96
97 if (_mesa_error_check_format_type(ctx, format, type, GL_TRUE)) {
98 goto end; /* the error code was recorded */
99 }
100
101 if (ctx->RasterDiscard) {
102 goto end;
103 }
104
105 if (!ctx->Current.RasterPosValid) {
106 goto end; /* no-op, not an error */
107 }
108
109 if (ctx->RenderMode == GL_RENDER) {
110 if (width > 0 && height > 0) {
111 /* Round, to satisfy conformance tests (matches SGI's OpenGL) */
112 GLint x = IROUND(ctx->Current.RasterPos[0]);
113 GLint y = IROUND(ctx->Current.RasterPos[1]);
114
115 if (_mesa_is_bufferobj(ctx->Unpack.BufferObj)) {
116 /* unpack from PBO */
117 if (!_mesa_validate_pbo_access(2, &ctx->Unpack, width, height,
118 1, format, type, INT_MAX, pixels)) {
119 _mesa_error(ctx, GL_INVALID_OPERATION,
120 "glDrawPixels(invalid PBO access)");
121 goto end;
122 }
123 if (_mesa_bufferobj_mapped(ctx->Unpack.BufferObj)) {
124 /* buffer is mapped - that's an error */
125 _mesa_error(ctx, GL_INVALID_OPERATION,
126 "glDrawPixels(PBO is mapped)");
127 goto end;
128 }
129 }
130
131 ctx->Driver.DrawPixels(ctx, x, y, width, height, format, type,
132 &ctx->Unpack, pixels);
133 }
134 }
135 else if (ctx->RenderMode == GL_FEEDBACK) {
136 /* Feedback the current raster pos info */
137 FLUSH_CURRENT( ctx, 0 );
138 _mesa_feedback_token( ctx, (GLfloat) (GLint) GL_DRAW_PIXEL_TOKEN );
139 _mesa_feedback_vertex( ctx,
140 ctx->Current.RasterPos,
141 ctx->Current.RasterColor,
142 ctx->Current.RasterTexCoords[0] );
143 }
144 else {
145 ASSERT(ctx->RenderMode == GL_SELECT);
146 /* Do nothing. See OpenGL Spec, Appendix B, Corollary 6. */
147 }
148
149 end:
150 _mesa_set_vp_override(ctx, GL_FALSE);
151 }
152
153
154 static void GLAPIENTRY
155 _mesa_CopyPixels( GLint srcx, GLint srcy, GLsizei width, GLsizei height,
156 GLenum type )
157 {
158 GET_CURRENT_CONTEXT(ctx);
159 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
160
161 if (MESA_VERBOSE & VERBOSE_API)
162 _mesa_debug(ctx,
163 "glCopyPixels(%d, %d, %d, %d, %s) // from %s to %s at %d, %d\n",
164 srcx, srcy, width, height,
165 _mesa_lookup_enum_by_nr(type),
166 _mesa_lookup_enum_by_nr(ctx->ReadBuffer->ColorReadBuffer),
167 _mesa_lookup_enum_by_nr(ctx->DrawBuffer->ColorDrawBuffer),
168 IROUND(ctx->Current.RasterPos[0]),
169 IROUND(ctx->Current.RasterPos[1]));
170
171 if (width < 0 || height < 0) {
172 _mesa_error(ctx, GL_INVALID_VALUE, "glCopyPixels(width or height < 0)");
173 return;
174 }
175
176 /* Note: more detailed 'type' checking is done by the
177 * _mesa_source/dest_buffer_exists() calls below. That's where we
178 * check if the stencil buffer exists, etc.
179 */
180 if (type != GL_COLOR &&
181 type != GL_DEPTH &&
182 type != GL_STENCIL) {
183 _mesa_error(ctx, GL_INVALID_ENUM, "glCopyPixels(type=%s)",
184 _mesa_lookup_enum_by_nr(type));
185 return;
186 }
187
188 /* We're not using the current vertex program, and the driver may install
189 * it's own. Note: this may dirty some state.
190 */
191 _mesa_set_vp_override(ctx, GL_TRUE);
192
193 /* Note: this call does state validation */
194 if (!_mesa_valid_to_render(ctx, "glCopyPixels")) {
195 goto end; /* the error code was recorded */
196 }
197
198 if (!_mesa_source_buffer_exists(ctx, type) ||
199 !_mesa_dest_buffer_exists(ctx, type)) {
200 _mesa_error(ctx, GL_INVALID_OPERATION,
201 "glCopyPixels(missing source or dest buffer)");
202 goto end;
203 }
204
205 if (ctx->RasterDiscard) {
206 goto end;
207 }
208
209 if (!ctx->Current.RasterPosValid || width == 0 || height == 0) {
210 goto end; /* no-op, not an error */
211 }
212
213 if (ctx->RenderMode == GL_RENDER) {
214 /* Round to satisfy conformance tests (matches SGI's OpenGL) */
215 if (width > 0 && height > 0) {
216 GLint destx = IROUND(ctx->Current.RasterPos[0]);
217 GLint desty = IROUND(ctx->Current.RasterPos[1]);
218 ctx->Driver.CopyPixels( ctx, srcx, srcy, width, height, destx, desty,
219 type );
220 }
221 }
222 else if (ctx->RenderMode == GL_FEEDBACK) {
223 FLUSH_CURRENT( ctx, 0 );
224 _mesa_feedback_token( ctx, (GLfloat) (GLint) GL_COPY_PIXEL_TOKEN );
225 _mesa_feedback_vertex( ctx,
226 ctx->Current.RasterPos,
227 ctx->Current.RasterColor,
228 ctx->Current.RasterTexCoords[0] );
229 }
230 else {
231 ASSERT(ctx->RenderMode == GL_SELECT);
232 /* Do nothing. See OpenGL Spec, Appendix B, Corollary 6. */
233 }
234
235 end:
236 _mesa_set_vp_override(ctx, GL_FALSE);
237 }
238
239
240 static void GLAPIENTRY
241 _mesa_Bitmap( GLsizei width, GLsizei height,
242 GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove,
243 const GLubyte *bitmap )
244 {
245 GET_CURRENT_CONTEXT(ctx);
246 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
247
248 if (width < 0 || height < 0) {
249 _mesa_error( ctx, GL_INVALID_VALUE, "glBitmap(width or height < 0)" );
250 return;
251 }
252
253 if (!ctx->Current.RasterPosValid) {
254 return; /* do nothing */
255 }
256
257 /* Note: this call does state validation */
258 if (!_mesa_valid_to_render(ctx, "glBitmap")) {
259 /* the error code was recorded */
260 return;
261 }
262
263 if (ctx->RasterDiscard)
264 return;
265
266 if (ctx->RenderMode == GL_RENDER) {
267 /* Truncate, to satisfy conformance tests (matches SGI's OpenGL). */
268 if (width > 0 && height > 0) {
269 const GLfloat epsilon = 0.0001F;
270 GLint x = IFLOOR(ctx->Current.RasterPos[0] + epsilon - xorig);
271 GLint y = IFLOOR(ctx->Current.RasterPos[1] + epsilon - yorig);
272
273 if (_mesa_is_bufferobj(ctx->Unpack.BufferObj)) {
274 /* unpack from PBO */
275 if (!_mesa_validate_pbo_access(2, &ctx->Unpack, width, height,
276 1, GL_COLOR_INDEX, GL_BITMAP,
277 INT_MAX, (const GLvoid *) bitmap)) {
278 _mesa_error(ctx, GL_INVALID_OPERATION,
279 "glBitmap(invalid PBO access)");
280 return;
281 }
282 if (_mesa_bufferobj_mapped(ctx->Unpack.BufferObj)) {
283 /* buffer is mapped - that's an error */
284 _mesa_error(ctx, GL_INVALID_OPERATION,
285 "glBitmap(PBO is mapped)");
286 return;
287 }
288 }
289
290 ctx->Driver.Bitmap( ctx, x, y, width, height, &ctx->Unpack, bitmap );
291 }
292 }
293 #if _HAVE_FULL_GL
294 else if (ctx->RenderMode == GL_FEEDBACK) {
295 FLUSH_CURRENT(ctx, 0);
296 _mesa_feedback_token( ctx, (GLfloat) (GLint) GL_BITMAP_TOKEN );
297 _mesa_feedback_vertex( ctx,
298 ctx->Current.RasterPos,
299 ctx->Current.RasterColor,
300 ctx->Current.RasterTexCoords[0] );
301 }
302 else {
303 ASSERT(ctx->RenderMode == GL_SELECT);
304 /* Do nothing. See OpenGL Spec, Appendix B, Corollary 6. */
305 }
306 #endif
307
308 /* update raster position */
309 ctx->Current.RasterPos[0] += xmove;
310 ctx->Current.RasterPos[1] += ymove;
311 }
312
313
314 void
315 _mesa_init_drawpix_dispatch(struct _glapi_table *disp)
316 {
317 SET_Bitmap(disp, _mesa_Bitmap);
318 SET_CopyPixels(disp, _mesa_CopyPixels);
319 SET_DrawPixels(disp, _mesa_DrawPixels);
320 }
321
322
323 #endif /* FEATURE_drawpix */