blob: a3f1354644121556e338609aaad5d7455c31f51b [file] [log] [blame]
Brian Paul4e176ff1999-11-22 22:21:38 +00001/* $Id: drawpix.c,v 1.8 1999/11/22 22:21:38 brianp Exp $ */
jtgafb833d1999-08-19 00:55:39 +00002
3/*
4 * Mesa 3-D graphics library
Brian Paulfbd8f211999-11-11 01:22:25 +00005 * Version: 3.3
jtgafb833d1999-08-19 00:55:39 +00006 *
7 * Copyright (C) 1999 Brian Paul All Rights Reserved.
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the "Software"),
11 * to deal in the Software without restriction, including without limitation
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 * and/or sell copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included
17 * in all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
23 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 */
26
27
jtgafb833d1999-08-19 00:55:39 +000028#ifdef PC_HEADER
29#include "all.h"
30#else
Brian Paulfbd8f211999-11-11 01:22:25 +000031#include "glheader.h"
jtgafb833d1999-08-19 00:55:39 +000032#include "context.h"
33#include "drawpix.h"
34#include "feedback.h"
35#include "image.h"
36#include "macros.h"
37#include "mmath.h"
38#include "pixel.h"
39#include "span.h"
40#include "stencil.h"
41#include "types.h"
42#include "zoom.h"
jtgafb833d1999-08-19 00:55:39 +000043#endif
44
45
46
jtgafb833d1999-08-19 00:55:39 +000047/*
Brian Paul4e176ff1999-11-22 22:21:38 +000048 * Given the dest position, size and skipPixels and skipRows values
49 * for a glDrawPixels command, perform clipping of the image bounds
50 * so the result lies withing the context's buffer bounds.
51 * Return: GL_TRUE if image is ready for drawing
52 * GL_FALSE if image was completely clipped away (draw nothing)
53 */
54GLboolean
55_mesa_clip_pixelrect(const GLcontext *ctx,
56 GLint *destX, GLint *destY,
57 GLsizei *width, GLsizei *height,
58 GLint *skipPixels, GLint *skipRows)
59{
60 /* left clipping */
61 if (*destX < ctx->Buffer->Xmin) {
62 *skipPixels += (ctx->Buffer->Xmin - *destX);
63 *width -= (ctx->Buffer->Xmin - *destX);
64 *destX = ctx->Buffer->Xmin;
65 }
66 /* right clipping */
67 if (*destX + *width > ctx->Buffer->Xmax)
68 *width -= (*destX + *width - ctx->Buffer->Xmax - 1);
69
70 if (*width <= 0)
71 return GL_FALSE;
72
73 /* bottom clipping */
74 if (*destY < ctx->Buffer->Ymin) {
75 *skipRows += (ctx->Buffer->Ymin - *destY);
76 *height -= (ctx->Buffer->Ymin - *destY);
77 *destY = ctx->Buffer->Ymin;
78 }
79 /* top clipping */
80 if (*destY + *height > ctx->Buffer->Ymax)
81 *height -= (*destY + *height - ctx->Buffer->Ymax - 1);
82
83 if (*height <= 0)
84 return GL_TRUE;
85
86 return GL_TRUE;
87}
88
89
90
91/*
Brian Paulfbd8f211999-11-11 01:22:25 +000092 * Try to do a fast and simple RGB(a) glDrawPixels.
jtgafb833d1999-08-19 00:55:39 +000093 * Return: GL_TRUE if success, GL_FALSE if slow path must be used instead
94 */
Brian Paulfbd8f211999-11-11 01:22:25 +000095static GLboolean
96simple_DrawPixels( GLcontext *ctx, GLint x, GLint y,
97 GLsizei width, GLsizei height, GLenum format, GLenum type,
98 const GLvoid *pixels )
jtgafb833d1999-08-19 00:55:39 +000099{
Brian Paulfbd8f211999-11-11 01:22:25 +0000100 const struct gl_pixelstore_attrib *unpack = &ctx->Unpack;
jtgafb833d1999-08-19 00:55:39 +0000101 GLubyte rgb[MAX_WIDTH][3];
102 GLubyte rgba[MAX_WIDTH][4];
103
104 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH_WITH_RETVAL(ctx, "glDrawPixels",
105 GL_FALSE);
106
107
108 if (!ctx->Current.RasterPosValid) {
109 /* no-op */
110 return GL_TRUE;
111 }
112
113 if (ctx->NewState) {
114 gl_update_state(ctx);
115 }
116
117 /* see if device driver can do the drawpix */
Brian Paulfbd8f211999-11-11 01:22:25 +0000118 if (ctx->Driver.DrawPixels
119 && (*ctx->Driver.DrawPixels)(ctx, x, y, width, height, format, type,
120 unpack, pixels)) {
121 return GL_TRUE;
jtgafb833d1999-08-19 00:55:39 +0000122 }
123
124 if ((ctx->RasterMask&(~(SCISSOR_BIT|WINCLIP_BIT)))==0
125 && ctx->Pixel.RedBias==0.0 && ctx->Pixel.RedScale==1.0
126 && ctx->Pixel.GreenBias==0.0 && ctx->Pixel.GreenScale==1.0
127 && ctx->Pixel.BlueBias==0.0 && ctx->Pixel.BlueScale==1.0
128 && ctx->Pixel.AlphaBias==0.0 && ctx->Pixel.AlphaScale==1.0
129 && ctx->Pixel.IndexShift==0 && ctx->Pixel.IndexOffset==0
130 && ctx->Pixel.MapColorFlag==0
131 && unpack->Alignment==1
132 && !unpack->SwapBytes
133 && !unpack->LsbFirst) {
134
Brian Paulfbd8f211999-11-11 01:22:25 +0000135 GLint destX = x;
136 GLint destY = y;
jtgafb833d1999-08-19 00:55:39 +0000137 GLint drawWidth = width; /* actual width drawn */
138 GLint drawHeight = height; /* actual height drawn */
139 GLint skipPixels = unpack->SkipPixels;
140 GLint skipRows = unpack->SkipRows;
141 GLint rowLength;
142 GLdepth zSpan[MAX_WIDTH]; /* only used when zooming */
143 GLint zoomY0;
144
145 if (unpack->RowLength > 0)
146 rowLength = unpack->RowLength;
147 else
148 rowLength = width;
149
150 /* If we're not using pixel zoom then do all clipping calculations
151 * now. Otherwise, we'll let the gl_write_zoomed_*_span() functions
152 * handle the clipping.
153 */
154 if (ctx->Pixel.ZoomX==1.0F && ctx->Pixel.ZoomY==1.0F) {
155 /* horizontal clipping */
156 if (destX < ctx->Buffer->Xmin) {
157 skipPixels += (ctx->Buffer->Xmin - destX);
158 drawWidth -= (ctx->Buffer->Xmin - destX);
159 destX = ctx->Buffer->Xmin;
160 }
161 if (destX + drawWidth > ctx->Buffer->Xmax)
162 drawWidth -= (destX + drawWidth - ctx->Buffer->Xmax - 1);
163 if (drawWidth <= 0)
164 return GL_TRUE;
165
166 /* vertical clipping */
167 if (destY < ctx->Buffer->Ymin) {
168 skipRows += (ctx->Buffer->Ymin - destY);
169 drawHeight -= (ctx->Buffer->Ymin - destY);
170 destY = ctx->Buffer->Ymin;
171 }
172 if (destY + drawHeight > ctx->Buffer->Ymax)
173 drawHeight -= (destY + drawHeight - ctx->Buffer->Ymax - 1);
174 if (drawHeight <= 0)
175 return GL_TRUE;
Brian Paul4b7526d1999-11-18 15:44:37 +0000176
177 zoomY0 = 0; /* not used - silence compiler warning */
jtgafb833d1999-08-19 00:55:39 +0000178 }
179 else {
180 /* setup array of fragment Z value to pass to zoom function */
181 GLdepth z = (GLdepth) (ctx->Current.RasterPos[2] * DEPTH_SCALE);
182 GLint i;
183 assert(drawWidth < MAX_WIDTH);
184 for (i=0; i<drawWidth; i++)
185 zSpan[i] = z;
186
187 /* save Y value of first row */
188 zoomY0 = (GLint) (ctx->Current.RasterPos[1] + 0.5F);
189 }
190
191
192 /*
193 * Ready to draw!
194 * The window region at (destX, destY) of size (drawWidth, drawHeight)
195 * will be written to.
196 * We'll take pixel data from buffer pointed to by "pixels" but we'll
197 * skip "skipRows" rows and skip "skipPixels" pixels/row.
198 */
199
200 if (format==GL_RGBA && type==GL_UNSIGNED_BYTE) {
201 if (ctx->Visual->RGBAflag) {
202 GLubyte *src = (GLubyte *) pixels
203 + (skipRows * rowLength + skipPixels) * 4;
204 if (ctx->Pixel.ZoomX==1.0F && ctx->Pixel.ZoomY==1.0F) {
205 /* no zooming */
206 GLint row;
207 for (row=0; row<drawHeight; row++) {
208 (*ctx->Driver.WriteRGBASpan)(ctx, drawWidth, destX, destY,
209 (void *) src, NULL);
210 src += rowLength * 4;
211 destY++;
212 }
213 }
214 else {
215 /* with zooming */
216 GLint row;
217 for (row=0; row<drawHeight; row++) {
218 gl_write_zoomed_rgba_span(ctx, drawWidth, destX, destY,
219 zSpan, (void *) src, zoomY0);
220 src += rowLength * 4;
221 destY++;
222 }
223 }
224 }
225 return GL_TRUE;
226 }
227 else if (format==GL_RGB && type==GL_UNSIGNED_BYTE) {
228 if (ctx->Visual->RGBAflag) {
229 GLubyte *src = (GLubyte *) pixels
230 + (skipRows * rowLength + skipPixels) * 3;
231 if (ctx->Pixel.ZoomX==1.0F && ctx->Pixel.ZoomY==1.0F) {
232 GLint row;
233 for (row=0; row<drawHeight; row++) {
234 (*ctx->Driver.WriteRGBSpan)(ctx, drawWidth, destX, destY,
235 (void *) src, NULL);
236 src += rowLength * 3;
237 destY++;
238 }
239 }
240 else {
241 /* with zooming */
242 GLint row;
243 for (row=0; row<drawHeight; row++) {
244 gl_write_zoomed_rgb_span(ctx, drawWidth, destX, destY,
245 zSpan, (void *) src, zoomY0);
246 src += rowLength * 3;
247 destY++;
248 }
249 }
250 }
251 return GL_TRUE;
252 }
253 else if (format==GL_LUMINANCE && type==GL_UNSIGNED_BYTE) {
254 if (ctx->Visual->RGBAflag) {
255 GLubyte *src = (GLubyte *) pixels
256 + (skipRows * rowLength + skipPixels);
257 if (ctx->Pixel.ZoomX==1.0F && ctx->Pixel.ZoomY==1.0F) {
258 /* no zooming */
259 GLint row;
260 assert(drawWidth < MAX_WIDTH);
261 for (row=0; row<drawHeight; row++) {
262 GLint i;
263 for (i=0;i<drawWidth;i++) {
264 rgb[i][0] = src[i];
265 rgb[i][1] = src[i];
266 rgb[i][2] = src[i];
267 }
268 (*ctx->Driver.WriteRGBSpan)(ctx, drawWidth, destX, destY,
269 (void *) rgb, NULL);
270 src += rowLength;
271 destY++;
272 }
273 }
274 else {
275 /* with zooming */
276 GLint row;
277 assert(drawWidth < MAX_WIDTH);
278 for (row=0; row<drawHeight; row++) {
279 GLint i;
280 for (i=0;i<drawWidth;i++) {
281 rgb[i][0] = src[i];
282 rgb[i][1] = src[i];
283 rgb[i][2] = src[i];
284 }
285 gl_write_zoomed_rgb_span(ctx, drawWidth, destX, destY,
286 zSpan, (void *) rgb, zoomY0);
287 src += rowLength;
288 destY++;
289 }
290 }
291 }
292 return GL_TRUE;
293 }
294 else if (format==GL_LUMINANCE_ALPHA && type==GL_UNSIGNED_BYTE) {
295 if (ctx->Visual->RGBAflag) {
296 GLubyte *src = (GLubyte *) pixels
297 + (skipRows * rowLength + skipPixels)*2;
298 if (ctx->Pixel.ZoomX==1.0F && ctx->Pixel.ZoomY==1.0F) {
299 /* no zooming */
300 GLint row;
301 assert(drawWidth < MAX_WIDTH);
302 for (row=0; row<drawHeight; row++) {
303 GLint i;
304 GLubyte *ptr = src;
305 for (i=0;i<drawWidth;i++) {
306 rgba[i][0] = *ptr;
307 rgba[i][1] = *ptr;
308 rgba[i][2] = *ptr++;
309 rgba[i][3] = *ptr++;
310 }
311 (*ctx->Driver.WriteRGBASpan)(ctx, drawWidth, destX, destY,
312 (void *) rgba, NULL);
313 src += rowLength*2;
314 destY++;
315 }
316 }
317 else {
318 /* with zooming */
319 GLint row;
320 assert(drawWidth < MAX_WIDTH);
321 for (row=0; row<drawHeight; row++) {
322 GLubyte *ptr = src;
323 GLint i;
324 for (i=0;i<drawWidth;i++) {
325 rgba[i][0] = *ptr;
326 rgba[i][1] = *ptr;
327 rgba[i][2] = *ptr++;
328 rgba[i][3] = *ptr++;
329 }
330 gl_write_zoomed_rgba_span(ctx, drawWidth, destX, destY,
331 zSpan, (void *) rgba, zoomY0);
332 src += rowLength*2;
333 destY++;
334 }
335 }
336 }
337 return GL_TRUE;
338 }
339 else if (format==GL_COLOR_INDEX && type==GL_UNSIGNED_BYTE) {
340 GLubyte *src = (GLubyte *) pixels + skipRows * rowLength + skipPixels;
341 if (ctx->Visual->RGBAflag) {
342 /* convert CI data to RGBA */
343 if (ctx->Pixel.ZoomX==1.0F && ctx->Pixel.ZoomY==1.0F) {
344 /* no zooming */
345 GLint row;
346 for (row=0; row<drawHeight; row++) {
347 assert(drawWidth < MAX_WIDTH);
348 gl_map_ci8_to_rgba(ctx, drawWidth, src, rgba);
349 (*ctx->Driver.WriteRGBASpan)(ctx, drawWidth, destX, destY,
350 (const GLubyte (*)[4])rgba,
351 NULL);
352 src += rowLength;
353 destY++;
354 }
355 return GL_TRUE;
356 }
357 else {
358 /* with zooming */
359 GLint row;
360 for (row=0; row<drawHeight; row++) {
361 assert(drawWidth < MAX_WIDTH);
362 gl_map_ci8_to_rgba(ctx, drawWidth, src, rgba);
363 gl_write_zoomed_rgba_span(ctx, drawWidth, destX, destY,
364 zSpan, (void *) rgba, zoomY0);
365 src += rowLength;
366 destY++;
367 }
368 return GL_TRUE;
369 }
370 }
371 else {
372 /* write CI data to CI frame buffer */
373 GLint row;
374 if (ctx->Pixel.ZoomX==1.0F && ctx->Pixel.ZoomY==1.0F) {
375 /* no zooming */
376 for (row=0; row<drawHeight; row++) {
377 (*ctx->Driver.WriteCI8Span)(ctx, drawWidth, destX, destY,
378 src, NULL);
379 src += rowLength;
380 destY++;
381 }
382 return GL_TRUE;
383 }
384 else {
385 /* with zooming */
386 return GL_FALSE;
387 }
388 }
389 }
390 else {
391 /* can't handle this pixel format and/or data type here */
392 return GL_FALSE;
393 }
394 }
Brian Paulfbd8f211999-11-11 01:22:25 +0000395
396 /* can't do a simple draw, have to use slow path */
397 return GL_FALSE;
jtgafb833d1999-08-19 00:55:39 +0000398}
399
400
401
402/*
403 * Do glDrawPixels of index pixels.
404 */
Brian Paulfbd8f211999-11-11 01:22:25 +0000405static void
406draw_index_pixels( GLcontext *ctx, GLint x, GLint y,
407 GLsizei width, GLsizei height,
408 GLenum type, const GLvoid *pixels )
jtgafb833d1999-08-19 00:55:39 +0000409{
jtgafb833d1999-08-19 00:55:39 +0000410 const GLboolean zoom = ctx->Pixel.ZoomX!=1.0 || ctx->Pixel.ZoomY!=1.0;
Brian Paulfbd8f211999-11-11 01:22:25 +0000411 const GLint desty = y;
412 GLint row, drawWidth;
413 GLdepth zspan[MAX_WIDTH];
jtgafb833d1999-08-19 00:55:39 +0000414
Brian Paulfbd8f211999-11-11 01:22:25 +0000415 drawWidth = (width > MAX_WIDTH) ? MAX_WIDTH : width;
jtgafb833d1999-08-19 00:55:39 +0000416
417 /* Fragment depth values */
418 if (ctx->Depth.Test) {
419 GLdepth zval = (GLdepth) (ctx->Current.RasterPos[2] * DEPTH_SCALE);
Brian Paulfbd8f211999-11-11 01:22:25 +0000420 GLint i;
421 for (i = 0; i < drawWidth; i++) {
jtgafb833d1999-08-19 00:55:39 +0000422 zspan[i] = zval;
423 }
424 }
425
Brian Paulfbd8f211999-11-11 01:22:25 +0000426 /*
427 * General solution
428 */
429 for (row = 0; row < height; row++, y++) {
430 GLuint indexes[MAX_WIDTH];
431 const GLvoid *source = gl_pixel_addr_in_image(&ctx->Unpack,
432 pixels, width, height, GL_COLOR_INDEX, type, 0, row, 0);
433 _mesa_unpack_index_span(ctx, drawWidth, GL_UNSIGNED_INT, indexes,
434 type, source, &ctx->Unpack, GL_TRUE);
435 if (zoom) {
436 gl_write_zoomed_index_span(ctx, drawWidth, x, y, zspan, indexes, desty);
jtgafb833d1999-08-19 00:55:39 +0000437 }
438 else {
Brian Paulfbd8f211999-11-11 01:22:25 +0000439 gl_write_index_span(ctx, drawWidth, x, y, zspan, indexes, GL_BITMAP);
jtgafb833d1999-08-19 00:55:39 +0000440 }
441 }
jtgafb833d1999-08-19 00:55:39 +0000442}
443
444
445
446/*
447 * Do glDrawPixels of stencil image. The image datatype may either
448 * be GLubyte or GLbitmap.
449 */
Brian Paulfbd8f211999-11-11 01:22:25 +0000450static void
451draw_stencil_pixels( GLcontext *ctx, GLint x, GLint y,
452 GLsizei width, GLsizei height,
453 GLenum type, const GLvoid *pixels )
jtgafb833d1999-08-19 00:55:39 +0000454{
jtgafb833d1999-08-19 00:55:39 +0000455 const GLboolean zoom = ctx->Pixel.ZoomX!=1.0 || ctx->Pixel.ZoomY!=1.0;
Brian Paulfbd8f211999-11-11 01:22:25 +0000456 const GLint desty = y;
457 GLint row, drawWidth;
jtgafb833d1999-08-19 00:55:39 +0000458
Brian Paulfbd8f211999-11-11 01:22:25 +0000459 if (type != GL_BYTE &&
460 type != GL_UNSIGNED_BYTE &&
461 type != GL_SHORT &&
462 type != GL_UNSIGNED_SHORT &&
463 type != GL_INT &&
464 type != GL_UNSIGNED_INT &&
465 type != GL_FLOAT &&
466 type != GL_BITMAP) {
467 gl_error( ctx, GL_INVALID_ENUM, "glDrawPixels(stencil type)");
Brian Paulbc41b081999-10-19 20:33:57 +0000468 return;
469 }
470
Brian Paulfbd8f211999-11-11 01:22:25 +0000471 drawWidth = (width > MAX_WIDTH) ? MAX_WIDTH : width;
jtgafb833d1999-08-19 00:55:39 +0000472
Brian Paulfbd8f211999-11-11 01:22:25 +0000473 for (row = 0; row < height; row++, y++) {
474 GLstencil values[MAX_WIDTH];
475 GLenum destType = (sizeof(GLstencil) == sizeof(GLubyte))
476 ? GL_UNSIGNED_BYTE : GL_UNSIGNED_SHORT;
477 const GLvoid *source = gl_pixel_addr_in_image(&ctx->Unpack,
478 pixels, width, height, GL_COLOR_INDEX, type, 0, row, 0);
479 _mesa_unpack_index_span(ctx, drawWidth, destType, values,
480 type, source, &ctx->Unpack, GL_TRUE);
jtgafb833d1999-08-19 00:55:39 +0000481
jtgafb833d1999-08-19 00:55:39 +0000482 if (zoom) {
Brian Paulfbd8f211999-11-11 01:22:25 +0000483 gl_write_zoomed_stencil_span( ctx, (GLuint) drawWidth, x, y,
484 values, desty );
jtgafb833d1999-08-19 00:55:39 +0000485 }
486 else {
Brian Paulfbd8f211999-11-11 01:22:25 +0000487 gl_write_stencil_span( ctx, (GLuint) drawWidth, x, y, values );
jtgafb833d1999-08-19 00:55:39 +0000488 }
489 }
490}
491
492
493
494/*
495 * Do a glDrawPixels of depth values.
496 */
Brian Paulfbd8f211999-11-11 01:22:25 +0000497static void
498draw_depth_pixels( GLcontext *ctx, GLint x, GLint y,
499 GLsizei width, GLsizei height,
500 GLenum type, const GLvoid *pixels )
jtgafb833d1999-08-19 00:55:39 +0000501{
Brian Paulfbd8f211999-11-11 01:22:25 +0000502 const GLboolean bias_or_scale = ctx->Pixel.DepthBias!=0.0 || ctx->Pixel.DepthScale!=1.0;
503 const GLboolean zoom = ctx->Pixel.ZoomX!=1.0 || ctx->Pixel.ZoomY!=1.0;
jtgafb833d1999-08-19 00:55:39 +0000504 const GLint desty = y;
505 GLubyte rgba[MAX_WIDTH][4];
506 GLuint ispan[MAX_WIDTH];
Brian Paulfbd8f211999-11-11 01:22:25 +0000507 GLint drawWidth = (width > MAX_WIDTH) ? MAX_WIDTH : width;
jtgafb833d1999-08-19 00:55:39 +0000508
Brian Paulfbd8f211999-11-11 01:22:25 +0000509 if (type != GL_UNSIGNED_BYTE
510 && type != GL_UNSIGNED_BYTE
511 && type != GL_UNSIGNED_SHORT
512 && type != GL_UNSIGNED_SHORT
513 && type != GL_UNSIGNED_INT
514 && type != GL_UNSIGNED_INT
515 && type != GL_FLOAT) {
516 gl_error(ctx, GL_INVALID_ENUM, "glDrawPixels(type)");
517 return;
518 }
jtgafb833d1999-08-19 00:55:39 +0000519
Brian Paulfbd8f211999-11-11 01:22:25 +0000520 /* Colors or indexes */
jtgafb833d1999-08-19 00:55:39 +0000521 if (ctx->Visual->RGBAflag) {
522 GLint r = (GLint) (ctx->Current.RasterColor[0] * 255.0F);
523 GLint g = (GLint) (ctx->Current.RasterColor[1] * 255.0F);
524 GLint b = (GLint) (ctx->Current.RasterColor[2] * 255.0F);
525 GLint a = (GLint) (ctx->Current.RasterColor[3] * 255.0F);
526 GLint i;
Brian Paulfbd8f211999-11-11 01:22:25 +0000527 for (i = 0; i < drawWidth; i++) {
jtgafb833d1999-08-19 00:55:39 +0000528 rgba[i][RCOMP] = r;
529 rgba[i][GCOMP] = g;
530 rgba[i][BCOMP] = b;
531 rgba[i][ACOMP] = a;
532 }
533 }
534 else {
535 GLint i;
Brian Paulfbd8f211999-11-11 01:22:25 +0000536 for (i = 0; i < drawWidth; i++) {
jtgafb833d1999-08-19 00:55:39 +0000537 ispan[i] = ctx->Current.RasterIndex;
538 }
539 }
540
Brian Paulfbd8f211999-11-11 01:22:25 +0000541 if (type==GL_UNSIGNED_SHORT && sizeof(GLdepth)==sizeof(GLushort)
jtgafb833d1999-08-19 00:55:39 +0000542 && !bias_or_scale && !zoom && ctx->Visual->RGBAflag) {
543 /* Special case: directly write 16-bit depth values */
Brian Paulfbd8f211999-11-11 01:22:25 +0000544 GLint row;
545 for (row = 0; row < height; row++, y++) {
546 const GLdepth *zptr = gl_pixel_addr_in_image(&ctx->Unpack,
547 pixels, width, height, GL_DEPTH_COMPONENT, type, 0, row, 0);
jtgafb833d1999-08-19 00:55:39 +0000548 gl_write_rgba_span( ctx, width, x, y, zptr, rgba, GL_BITMAP );
549 }
550 }
Brian Paulfbd8f211999-11-11 01:22:25 +0000551 else if (type==GL_UNSIGNED_INT && sizeof(GLdepth)==sizeof(GLuint)
jtgafb833d1999-08-19 00:55:39 +0000552 && !bias_or_scale && !zoom && ctx->Visual->RGBAflag) {
553 /* Special case: directly write 32-bit depth values */
Brian Paulfbd8f211999-11-11 01:22:25 +0000554 GLint i, row;
jtgafb833d1999-08-19 00:55:39 +0000555 /* Compute shift value to scale 32-bit uints down to depth values. */
556 GLuint shift = 0;
557 GLuint max = MAX_DEPTH;
Brian Paulfbd8f211999-11-11 01:22:25 +0000558 while ((max & 0x80000000) == 0) {
jtgafb833d1999-08-19 00:55:39 +0000559 max = max << 1;
560 shift++;
561 }
Brian Paulfbd8f211999-11-11 01:22:25 +0000562 for (row = 0; row < height; row++, y++) {
jtgafb833d1999-08-19 00:55:39 +0000563 GLdepth zspan[MAX_WIDTH];
Brian Paulfbd8f211999-11-11 01:22:25 +0000564 const GLdepth *zptr = gl_pixel_addr_in_image(&ctx->Unpack,
565 pixels, width, height, GL_DEPTH_COMPONENT, type, 0, row, 0);
jtgafb833d1999-08-19 00:55:39 +0000566 for (i=0;i<width;i++) {
567 zspan[i] = zptr[i] >> shift;
568 }
569 gl_write_rgba_span( ctx, width, x, y, zspan, rgba, GL_BITMAP );
570 }
571 }
572 else {
Brian Paulfbd8f211999-11-11 01:22:25 +0000573 /* General case */
574 GLint row;
575 for (row = 0; row < height; row++, y++) {
jtgafb833d1999-08-19 00:55:39 +0000576 GLdepth zspan[MAX_WIDTH];
Brian Paulfbd8f211999-11-11 01:22:25 +0000577 const GLvoid *src = gl_pixel_addr_in_image(&ctx->Unpack,
578 pixels, width, height, GL_DEPTH_COMPONENT, type, 0, row, 0);
579 _mesa_unpack_depth_span( ctx, drawWidth, zspan, type, src,
580 &ctx->Unpack, GL_TRUE );
jtgafb833d1999-08-19 00:55:39 +0000581 if (ctx->Visual->RGBAflag) {
582 if (zoom) {
Brian Paulfbd8f211999-11-11 01:22:25 +0000583 gl_write_zoomed_rgba_span(ctx, width, x, y, zspan,
584 (const GLubyte (*)[4])rgba, desty);
jtgafb833d1999-08-19 00:55:39 +0000585 }
586 else {
Brian Paulfbd8f211999-11-11 01:22:25 +0000587 gl_write_rgba_span(ctx, width, x, y, zspan, rgba, GL_BITMAP);
jtgafb833d1999-08-19 00:55:39 +0000588 }
589 }
590 else {
591 if (zoom) {
Brian Paulfbd8f211999-11-11 01:22:25 +0000592 gl_write_zoomed_index_span(ctx, width, x, y, zspan,
593 ispan, GL_BITMAP);
jtgafb833d1999-08-19 00:55:39 +0000594 }
595 else {
Brian Paulfbd8f211999-11-11 01:22:25 +0000596 gl_write_index_span(ctx, width, x, y, zspan, ispan, GL_BITMAP);
jtgafb833d1999-08-19 00:55:39 +0000597 }
598 }
599
600 }
601 }
602}
603
604
jtgafb833d1999-08-19 00:55:39 +0000605/*
606 * Do glDrawPixels of RGBA pixels.
607 */
Brian Paulfbd8f211999-11-11 01:22:25 +0000608static void
609draw_rgba_pixels( GLcontext *ctx, GLint x, GLint y,
610 GLsizei width, GLsizei height,
611 GLenum format, GLenum type, const GLvoid *pixels )
jtgafb833d1999-08-19 00:55:39 +0000612{
Brian Paulfbd8f211999-11-11 01:22:25 +0000613 const struct gl_pixelstore_attrib *unpack = &ctx->Unpack;
614 const GLboolean zoom = ctx->Pixel.ZoomX!=1.0 || ctx->Pixel.ZoomY!=1.0;
jtgafb833d1999-08-19 00:55:39 +0000615 const GLint desty = y;
616 GLdepth zspan[MAX_WIDTH];
617 GLboolean quickDraw;
jtgafb833d1999-08-19 00:55:39 +0000618
619 /* Try an optimized glDrawPixels first */
Brian Paulfbd8f211999-11-11 01:22:25 +0000620 if (simple_DrawPixels(ctx, x, y, width, height, format, type, pixels))
jtgafb833d1999-08-19 00:55:39 +0000621 return;
622
jtgafb833d1999-08-19 00:55:39 +0000623 /* Fragment depth values */
624 if (ctx->Depth.Test) {
625 /* fill in array of z values */
626 GLdepth z = (GLdepth) (ctx->Current.RasterPos[2] * DEPTH_SCALE);
Brian Paulfbd8f211999-11-11 01:22:25 +0000627 GLint i;
jtgafb833d1999-08-19 00:55:39 +0000628 for (i=0;i<width;i++) {
629 zspan[i] = z;
630 }
631 }
632
Brian Paulfbd8f211999-11-11 01:22:25 +0000633
634 if (ctx->RasterMask == 0 && !zoom
635 && x >= 0 && y >= 0
636 && x + width <= ctx->Buffer->Width
637 && y + height <= ctx->Buffer->Height) {
jtgafb833d1999-08-19 00:55:39 +0000638 quickDraw = GL_TRUE;
639 }
640 else {
641 quickDraw = GL_FALSE;
642 }
643
Brian Paulfbd8f211999-11-11 01:22:25 +0000644 /*
645 * General solution
646 */
jtgafb833d1999-08-19 00:55:39 +0000647 {
jtgafb833d1999-08-19 00:55:39 +0000648 GLubyte rgba[MAX_WIDTH][4];
Brian Paulfbd8f211999-11-11 01:22:25 +0000649 GLint row;
650 if (width > MAX_WIDTH)
651 width = MAX_WIDTH;
652 for (row = 0; row < height; row++, y++) {
653 const GLvoid *source = gl_pixel_addr_in_image(unpack,
654 pixels, width, height, format, type, 0, row, 0);
655 _mesa_unpack_ubyte_color_span(ctx, width, GL_RGBA, (void*) rgba,
656 format, type, source, unpack, GL_TRUE);
jtgafb833d1999-08-19 00:55:39 +0000657
jtgafb833d1999-08-19 00:55:39 +0000658 if (quickDraw) {
Brian Paulfbd8f211999-11-11 01:22:25 +0000659 (*ctx->Driver.WriteRGBASpan)( ctx, width, x, y,
660 (CONST GLubyte (*)[]) rgba, NULL);
jtgafb833d1999-08-19 00:55:39 +0000661 }
662 else if (zoom) {
663 gl_write_zoomed_rgba_span( ctx, width, x, y, zspan,
Brian Paulfbd8f211999-11-11 01:22:25 +0000664 (CONST GLubyte (*)[]) rgba, desty );
jtgafb833d1999-08-19 00:55:39 +0000665 }
666 else {
667 gl_write_rgba_span( ctx, (GLuint) width, x, y, zspan, rgba, GL_BITMAP);
668 }
669 }
jtgafb833d1999-08-19 00:55:39 +0000670 }
671}
672
673
674
675/*
676 * Execute glDrawPixels
677 */
Brian Paulfbd8f211999-11-11 01:22:25 +0000678void
679_mesa_DrawPixels( GLsizei width, GLsizei height,
680 GLenum format, GLenum type, const GLvoid *pixels )
jtgafb833d1999-08-19 00:55:39 +0000681{
Brian Paulfbd8f211999-11-11 01:22:25 +0000682 GET_CURRENT_CONTEXT(ctx);
jtgafb833d1999-08-19 00:55:39 +0000683 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx, "glDrawPixels");
684
jtgafb833d1999-08-19 00:55:39 +0000685 if (ctx->RenderMode==GL_RENDER) {
686 GLint x, y;
Brian Paulfbd8f211999-11-11 01:22:25 +0000687 if (!pixels || !ctx->Current.RasterPosValid) {
jtgafb833d1999-08-19 00:55:39 +0000688 return;
689 }
690
691 x = (GLint) (ctx->Current.RasterPos[0] + 0.5F);
692 y = (GLint) (ctx->Current.RasterPos[1] + 0.5F);
693
Brian Paulfbd8f211999-11-11 01:22:25 +0000694 switch (format) {
jtgafb833d1999-08-19 00:55:39 +0000695 case GL_STENCIL_INDEX:
Brian Paulfbd8f211999-11-11 01:22:25 +0000696 draw_stencil_pixels( ctx, x, y, width, height, type, pixels );
jtgafb833d1999-08-19 00:55:39 +0000697 break;
698 case GL_DEPTH_COMPONENT:
Brian Paulfbd8f211999-11-11 01:22:25 +0000699 draw_depth_pixels( ctx, x, y, width, height, type, pixels );
700 break;
701 case GL_COLOR_INDEX:
702 if (ctx->Visual->RGBAflag)
703 draw_index_pixels(ctx, x, y, width, height, type, pixels);
704 else
705 draw_rgba_pixels(ctx, x,y, width, height, format, type, pixels);
jtgafb833d1999-08-19 00:55:39 +0000706 break;
707 case GL_RED:
708 case GL_GREEN:
709 case GL_BLUE:
710 case GL_ALPHA:
jtgafb833d1999-08-19 00:55:39 +0000711 case GL_LUMINANCE:
712 case GL_LUMINANCE_ALPHA:
Brian Paulfbd8f211999-11-11 01:22:25 +0000713 case GL_RGB:
714 case GL_BGR:
jtgafb833d1999-08-19 00:55:39 +0000715 case GL_RGBA:
Brian Paulfbd8f211999-11-11 01:22:25 +0000716 case GL_BGRA:
717 case GL_ABGR_EXT:
718 draw_rgba_pixels(ctx, x, y, width, height, format, type, pixels);
jtgafb833d1999-08-19 00:55:39 +0000719 break;
720 default:
Brian Paulfbd8f211999-11-11 01:22:25 +0000721 gl_error( ctx, GL_INVALID_ENUM, "glDrawPixels(format)" );
jtgafb833d1999-08-19 00:55:39 +0000722 return;
723 }
724 }
725 else if (ctx->RenderMode==GL_FEEDBACK) {
726 if (ctx->Current.RasterPosValid) {
727 GLfloat color[4];
728 GLfloat texcoord[4], invq;
729 UBYTE_RGBA_TO_FLOAT_RGBA(color, ctx->Current.ByteColor);
730 invq = 1.0F / ctx->Current.Texcoord[0][3];
731 texcoord[0] = ctx->Current.Texcoord[0][0] * invq;
732 texcoord[1] = ctx->Current.Texcoord[0][1] * invq;
733 texcoord[2] = ctx->Current.Texcoord[0][2] * invq;
734 texcoord[3] = ctx->Current.Texcoord[0][3];
735 FEEDBACK_TOKEN( ctx, (GLfloat) (GLint) GL_DRAW_PIXEL_TOKEN );
736 gl_feedback_vertex( ctx,
Keith Whitwell1bf9dfa1999-09-18 20:41:22 +0000737 ctx->Current.RasterPos,
jtgafb833d1999-08-19 00:55:39 +0000738 color, ctx->Current.Index, texcoord );
739 }
740 }
741 else if (ctx->RenderMode==GL_SELECT) {
742 if (ctx->Current.RasterPosValid) {
743 gl_update_hitflag( ctx, ctx->Current.RasterPos[2] );
744 }
745 }
746}
747