gallium: make sure to set the SamplersUsed field for bitmap/drawpixels shaders
[mesa.git] / src / mesa / state_tracker / st_cb_drawpixels.c
1 /**************************************************************************
2 *
3 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 /*
29 * Authors:
30 * Brian Paul
31 */
32
33 #include "main/imports.h"
34 #include "main/image.h"
35 #include "main/bufferobj.h"
36 #include "main/macros.h"
37 #include "main/texformat.h"
38 #include "shader/program.h"
39 #include "shader/prog_parameter.h"
40 #include "shader/prog_print.h"
41
42 #include "st_context.h"
43 #include "st_atom.h"
44 #include "st_atom_constbuf.h"
45 #include "st_draw.h"
46 #include "st_program.h"
47 #include "st_cb_drawpixels.h"
48 #include "st_cb_readpixels.h"
49 #include "st_cb_fbo.h"
50 #include "st_cb_texture.h"
51 #include "st_draw.h"
52 #include "st_format.h"
53 #include "st_mesa_to_tgsi.h"
54 #include "st_texture.h"
55 #include "pipe/p_context.h"
56 #include "pipe/p_defines.h"
57 #include "pipe/p_inlines.h"
58 #include "pipe/p_winsys.h"
59 #include "util/p_tile.h"
60 #include "util/u_draw_quad.h"
61 #include "shader/prog_instruction.h"
62 #include "cso_cache/cso_context.h"
63
64
65 /**
66 * Check if the given program is:
67 * 0: MOVE result.color, fragment.color;
68 * 1: END;
69 */
70 static GLboolean
71 is_passthrough_program(const struct gl_fragment_program *prog)
72 {
73 if (prog->Base.NumInstructions == 2) {
74 const struct prog_instruction *inst = prog->Base.Instructions;
75 if (inst[0].Opcode == OPCODE_MOV &&
76 inst[1].Opcode == OPCODE_END &&
77 inst[0].DstReg.File == PROGRAM_OUTPUT &&
78 inst[0].DstReg.Index == FRAG_RESULT_COLR &&
79 inst[0].DstReg.WriteMask == WRITEMASK_XYZW &&
80 inst[0].SrcReg[0].File == PROGRAM_INPUT &&
81 inst[0].SrcReg[0].Index == FRAG_ATTRIB_COL0 &&
82 inst[0].SrcReg[0].Swizzle == SWIZZLE_XYZW) {
83 return GL_TRUE;
84 }
85 }
86 return GL_FALSE;
87 }
88
89
90
91 /**
92 * Make fragment shader for glDraw/CopyPixels. This shader is made
93 * by combining the pixel transfer shader with the user-defined shader.
94 */
95 static struct st_fragment_program *
96 combined_drawpix_fragment_program(GLcontext *ctx)
97 {
98 struct st_context *st = ctx->st;
99 struct st_fragment_program *stfp;
100
101 if (st->pixel_xfer.program->serialNo == st->pixel_xfer.xfer_prog_sn
102 && st->fp->serialNo == st->pixel_xfer.user_prog_sn) {
103 /* the pixel tranfer program has not changed and the user-defined
104 * program has not changed, so re-use the combined program.
105 */
106 stfp = st->pixel_xfer.combined_prog;
107 }
108 else {
109 /* Concatenate the pixel transfer program with the current user-
110 * defined program.
111 */
112 if (is_passthrough_program(&st->fp->Base)) {
113 stfp = (struct st_fragment_program *)
114 _mesa_clone_program(ctx, &st->pixel_xfer.program->Base.Base);
115 }
116 else {
117 #if 0
118 printf("Base program:\n");
119 _mesa_print_program(&st->fp->Base.Base);
120 printf("DrawPix program:\n");
121 _mesa_print_program(&st->pixel_xfer.program->Base.Base);
122 #endif
123 stfp = (struct st_fragment_program *)
124 _mesa_combine_programs(ctx,
125 &st->pixel_xfer.program->Base.Base,
126 &st->fp->Base.Base);
127 }
128
129 #if 0
130 {
131 struct gl_program *p = &stfp->Base.Base;
132 printf("Combined DrawPixels program:\n");
133 _mesa_print_program(p);
134 printf("InputsRead: 0x%x\n", p->InputsRead);
135 printf("OutputsWritten: 0x%x\n", p->OutputsWritten);
136 _mesa_print_parameter_list(p->Parameters);
137 }
138 #endif
139
140 /* translate to TGSI tokens */
141 st_translate_fragment_program(st, stfp, NULL);
142
143 /* save new program, update serial numbers */
144 st->pixel_xfer.xfer_prog_sn = st->pixel_xfer.program->serialNo;
145 st->pixel_xfer.user_prog_sn = st->fp->serialNo;
146 st->pixel_xfer.combined_prog_sn = stfp->serialNo;
147 st->pixel_xfer.combined_prog = stfp;
148 }
149
150 /* Ideally we'd have updated the pipe constants during the normal
151 * st/atom mechanism. But we can't since this is specific to glDrawPixels.
152 */
153 st_upload_constants(st, stfp->Base.Base.Parameters, PIPE_SHADER_FRAGMENT);
154
155 return stfp;
156 }
157
158
159 /**
160 * Create fragment shader that does a TEX() instruction to get a Z
161 * value, then writes to FRAG_RESULT_DEPR.
162 * Pass fragment color through as-is.
163 */
164 static struct st_fragment_program *
165 make_fragment_shader_z(struct st_context *st)
166 {
167 GLcontext *ctx = st->ctx;
168 /* only make programs once and re-use */
169 static struct st_fragment_program *stfp = NULL;
170 struct gl_program *p;
171 GLuint ic = 0;
172
173 if (stfp)
174 return stfp;
175
176 p = ctx->Driver.NewProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, 0);
177 if (!p)
178 return NULL;
179
180 p->NumInstructions = 3;
181
182 p->Instructions = _mesa_alloc_instructions(p->NumInstructions);
183 if (!p->Instructions) {
184 ctx->Driver.DeleteProgram(ctx, p);
185 return NULL;
186 }
187 _mesa_init_instructions(p->Instructions, p->NumInstructions);
188
189 /* TEX result.depth, fragment.texcoord[0], texture[0], 2D; */
190 p->Instructions[ic].Opcode = OPCODE_TEX;
191 p->Instructions[ic].DstReg.File = PROGRAM_OUTPUT;
192 p->Instructions[ic].DstReg.Index = FRAG_RESULT_DEPR;
193 p->Instructions[ic].DstReg.WriteMask = WRITEMASK_Z;
194 p->Instructions[ic].SrcReg[0].File = PROGRAM_INPUT;
195 p->Instructions[ic].SrcReg[0].Index = FRAG_ATTRIB_TEX0;
196 p->Instructions[ic].TexSrcUnit = 0;
197 p->Instructions[ic].TexSrcTarget = TEXTURE_2D_INDEX;
198 ic++;
199
200 /* MOV result.color, fragment.color */
201 p->Instructions[ic].Opcode = OPCODE_MOV;
202 p->Instructions[ic].DstReg.File = PROGRAM_OUTPUT;
203 p->Instructions[ic].DstReg.Index = FRAG_RESULT_COLR;
204 p->Instructions[ic].SrcReg[0].File = PROGRAM_INPUT;
205 p->Instructions[ic].SrcReg[0].Index = FRAG_ATTRIB_COL0;
206 ic++;
207
208 /* END; */
209 p->Instructions[ic++].Opcode = OPCODE_END;
210
211 assert(ic == p->NumInstructions);
212
213 p->InputsRead = FRAG_BIT_TEX0 | FRAG_BIT_COL0;
214 p->OutputsWritten = (1 << FRAG_RESULT_COLR) | (1 << FRAG_RESULT_DEPR);
215 p->SamplersUsed = 0x1; /* sampler 0 (bit 0) is used */
216
217 stfp = (struct st_fragment_program *) p;
218 st_translate_fragment_program(st, stfp, NULL);
219
220 return stfp;
221 }
222
223
224
225 /**
226 * Create a simple vertex shader that just passes through the
227 * vertex position and texcoord (and optionally, color).
228 */
229 static struct st_vertex_program *
230 st_make_passthrough_vertex_shader(struct st_context *st, GLboolean passColor)
231 {
232 /* only make programs once and re-use */
233 static struct st_vertex_program *progs[2] = { NULL, NULL };
234 GLcontext *ctx = st->ctx;
235 struct st_vertex_program *stvp;
236 struct gl_program *p;
237 GLuint ic = 0;
238
239 if (progs[passColor])
240 return progs[passColor];
241
242 p = ctx->Driver.NewProgram(ctx, GL_VERTEX_PROGRAM_ARB, 0);
243 if (!p)
244 return NULL;
245
246 if (passColor)
247 p->NumInstructions = 4;
248 else
249 p->NumInstructions = 3;
250
251 p->Instructions = _mesa_alloc_instructions(p->NumInstructions);
252 if (!p->Instructions) {
253 ctx->Driver.DeleteProgram(ctx, p);
254 return NULL;
255 }
256 _mesa_init_instructions(p->Instructions, p->NumInstructions);
257 /* MOV result.pos, vertex.pos; */
258 p->Instructions[0].Opcode = OPCODE_MOV;
259 p->Instructions[0].DstReg.File = PROGRAM_OUTPUT;
260 p->Instructions[0].DstReg.Index = VERT_RESULT_HPOS;
261 p->Instructions[0].SrcReg[0].File = PROGRAM_INPUT;
262 p->Instructions[0].SrcReg[0].Index = VERT_ATTRIB_POS;
263 /* MOV result.texcoord0, vertex.texcoord0; */
264 p->Instructions[1].Opcode = OPCODE_MOV;
265 p->Instructions[1].DstReg.File = PROGRAM_OUTPUT;
266 p->Instructions[1].DstReg.Index = VERT_RESULT_TEX0;
267 p->Instructions[1].SrcReg[0].File = PROGRAM_INPUT;
268 p->Instructions[1].SrcReg[0].Index = VERT_ATTRIB_TEX0;
269 ic = 2;
270 if (passColor) {
271 /* MOV result.color0, vertex.color0; */
272 p->Instructions[ic].Opcode = OPCODE_MOV;
273 p->Instructions[ic].DstReg.File = PROGRAM_OUTPUT;
274 p->Instructions[ic].DstReg.Index = VERT_RESULT_COL0;
275 p->Instructions[ic].SrcReg[0].File = PROGRAM_INPUT;
276 p->Instructions[ic].SrcReg[0].Index = VERT_ATTRIB_COLOR0;
277 ic++;
278 }
279
280 /* END; */
281 p->Instructions[ic].Opcode = OPCODE_END;
282 ic++;
283
284 assert(ic == p->NumInstructions);
285
286 p->InputsRead = VERT_BIT_POS | VERT_BIT_TEX0;
287 p->OutputsWritten = ((1 << VERT_RESULT_TEX0) |
288 (1 << VERT_RESULT_HPOS));
289 if (passColor) {
290 p->InputsRead |= VERT_BIT_COLOR0;
291 p->OutputsWritten |= (1 << VERT_RESULT_COL0);
292 }
293
294 stvp = (struct st_vertex_program *) p;
295 st_translate_vertex_program(st, stvp, NULL);
296
297 progs[passColor] = stvp;
298
299 return stvp;
300 }
301
302
303 static GLenum
304 _mesa_base_format(GLenum format)
305 {
306 switch (format) {
307 case GL_DEPTH_COMPONENT:
308 return GL_DEPTH_COMPONENT;
309 case GL_STENCIL_INDEX:
310 return GL_STENCIL_INDEX;
311 default:
312 return GL_RGBA;
313 }
314 }
315
316
317 /**
318 * Make texture containing an image for glDrawPixels image.
319 * If 'pixels' is NULL, leave the texture image data undefined.
320 */
321 static struct pipe_texture *
322 make_texture(struct st_context *st,
323 GLsizei width, GLsizei height, GLenum format, GLenum type,
324 const struct gl_pixelstore_attrib *unpack,
325 const GLvoid *pixels)
326 {
327 GLcontext *ctx = st->ctx;
328 struct pipe_context *pipe = st->pipe;
329 struct pipe_screen *screen = pipe->screen;
330 const struct gl_texture_format *mformat;
331 struct pipe_texture *pt;
332 enum pipe_format pipeFormat;
333 GLuint cpp;
334 GLenum baseFormat;
335
336 baseFormat = _mesa_base_format(format);
337
338 mformat = st_ChooseTextureFormat(ctx, baseFormat, format, type);
339 assert(mformat);
340
341 pipeFormat = st_mesa_format_to_pipe_format(mformat->MesaFormat);
342 assert(pipeFormat);
343 cpp = st_sizeof_format(pipeFormat);
344
345 pixels = _mesa_map_drawpix_pbo(ctx, unpack, pixels);
346 if (!pixels)
347 return NULL;
348
349 pt = st_texture_create(st, PIPE_TEXTURE_2D, pipeFormat, 0, width, height,
350 1, 0);
351 if (!pt) {
352 _mesa_unmap_drapix_pbo(ctx, unpack);
353 return NULL;
354 }
355
356 {
357 struct pipe_surface *surface;
358 static const GLuint dstImageOffsets = 0;
359 GLboolean success;
360 GLubyte *dest;
361 const GLbitfield imageTransferStateSave = ctx->_ImageTransferState;
362
363 /* we'll do pixel transfer in a fragment shader */
364 ctx->_ImageTransferState = 0x0;
365
366 surface = screen->get_tex_surface(screen, pt, 0, 0, 0);
367
368 /* map texture surface */
369 dest = pipe_surface_map(surface);
370
371 /* Put image into texture surface.
372 * Note that the image is actually going to be upside down in
373 * the texture. We deal with that with texcoords.
374 */
375 success = mformat->StoreImage(ctx, 2, /* dims */
376 baseFormat, /* baseInternalFormat */
377 mformat, /* gl_texture_format */
378 dest, /* dest */
379 0, 0, 0, /* dstX/Y/Zoffset */
380 surface->pitch * cpp, /* dstRowStride, bytes */
381 &dstImageOffsets, /* dstImageOffsets */
382 width, height, 1, /* size */
383 format, type, /* src format/type */
384 pixels, /* data source */
385 unpack);
386
387 /* unmap */
388 pipe_surface_unmap(surface);
389 pipe_surface_reference(&surface, NULL);
390 pipe->texture_update(pipe, pt, 0, 0x1);
391
392 assert(success);
393
394 /* restore */
395 ctx->_ImageTransferState = imageTransferStateSave;
396 }
397
398 _mesa_unmap_drapix_pbo(ctx, unpack);
399
400 return pt;
401 }
402
403
404 /**
405 * Draw textured quad.
406 * Coords are window coords with y=0=bottom.
407 */
408 static void
409 draw_quad(GLcontext *ctx, GLfloat x0, GLfloat y0, GLfloat z,
410 GLfloat x1, GLfloat y1, GLboolean invertTex)
411 {
412 GLfloat verts[4][2][4]; /* four verts, two attribs, XYZW */
413 GLuint i;
414 GLfloat sLeft = 0.0, sRight = 1.0;
415 GLfloat tTop = invertTex, tBot = 1.0 - tTop;
416
417 /* upper-left */
418 verts[0][0][0] = x0; /* attr[0].x */
419 verts[0][0][1] = y0; /* attr[0].y */
420 verts[0][1][0] = sLeft; /* attr[1].s */
421 verts[0][1][1] = tTop; /* attr[1].t */
422
423 /* upper-right */
424 verts[1][0][0] = x1;
425 verts[1][0][1] = y0;
426 verts[1][1][0] = sRight;
427 verts[1][1][1] = tTop;
428
429 /* lower-right */
430 verts[2][0][0] = x1;
431 verts[2][0][1] = y1;
432 verts[2][1][0] = sRight;
433 verts[2][1][1] = tBot;
434
435 /* lower-left */
436 verts[3][0][0] = x0;
437 verts[3][0][1] = y1;
438 verts[3][1][0] = sLeft;
439 verts[3][1][1] = tBot;
440
441 /* same for all verts: */
442 for (i = 0; i < 4; i++) {
443 verts[i][0][2] = z; /*Z*/
444 verts[i][0][3] = 1.0; /*W*/
445 verts[i][1][2] = 0.0; /*R*/
446 verts[i][1][3] = 1.0; /*Q*/
447 }
448
449 st_draw_vertices(ctx, PIPE_PRIM_QUADS, 4, (float *) verts, 2, GL_FALSE);
450 }
451
452
453 static void
454 draw_quad_colored(GLcontext *ctx, GLfloat x0, GLfloat y0, GLfloat z,
455 GLfloat x1, GLfloat y1, const GLfloat *color,
456 GLboolean invertTex)
457 {
458 GLfloat bias = ctx->st->bitmap_texcoord_bias;
459 GLfloat verts[4][3][4]; /* four verts, three attribs, XYZW */
460 GLuint i;
461 GLfloat xBias = bias / (x1-x0);
462 GLfloat yBias = bias / (y1-y0);
463 GLfloat sLeft = 0.0 + xBias, sRight = 1.0 + xBias;
464 GLfloat tTop = invertTex - yBias, tBot = 1.0 - tTop - yBias;
465
466 /* upper-left */
467 verts[0][0][0] = x0; /* attr[0].x */
468 verts[0][0][1] = y0; /* attr[0].y */
469 verts[0][2][0] = sLeft; /* attr[2].s */
470 verts[0][2][1] = tTop; /* attr[2].t */
471
472 /* upper-right */
473 verts[1][0][0] = x1;
474 verts[1][0][1] = y0;
475 verts[1][2][0] = sRight;
476 verts[1][2][1] = tTop;
477
478 /* lower-right */
479 verts[2][0][0] = x1;
480 verts[2][0][1] = y1;
481 verts[2][2][0] = sRight;
482 verts[2][2][1] = tBot;
483
484 /* lower-left */
485 verts[3][0][0] = x0;
486 verts[3][0][1] = y1;
487 verts[3][2][0] = sLeft;
488 verts[3][2][1] = tBot;
489
490 /* same for all verts: */
491 for (i = 0; i < 4; i++) {
492 verts[i][0][2] = z; /*Z*/
493 verts[i][0][3] = 1.0; /*W*/
494 verts[i][1][0] = color[0];
495 verts[i][1][1] = color[1];
496 verts[i][1][2] = color[2];
497 verts[i][1][3] = color[3];
498 verts[i][2][2] = 0.0; /*R*/
499 verts[i][2][3] = 1.0; /*Q*/
500 }
501
502 st_draw_vertices(ctx, PIPE_PRIM_QUADS, 4, (float *) verts, 3, GL_FALSE);
503 }
504
505
506
507 static void
508 draw_textured_quad(GLcontext *ctx, GLint x, GLint y, GLfloat z,
509 GLsizei width, GLsizei height,
510 GLfloat zoomX, GLfloat zoomY,
511 struct pipe_texture *pt,
512 struct st_vertex_program *stvp,
513 struct st_fragment_program *stfp,
514 const GLfloat *color,
515 GLboolean invertTex)
516 {
517 struct st_context *st = ctx->st;
518 struct pipe_context *pipe = ctx->st->pipe;
519 struct cso_context *cso = ctx->st->cso_context;
520 GLfloat x0, y0, x1, y1;
521 GLuint maxSize;
522
523 /* limit checks */
524 /* XXX if DrawPixels image is larger than max texture size, break
525 * it up into chunks.
526 */
527 maxSize = 1 << (pipe->screen->get_param(pipe->screen, PIPE_CAP_MAX_TEXTURE_2D_LEVELS) - 1);
528 assert(width <= maxSize);
529 assert(height <= maxSize);
530
531 cso_save_rasterizer(cso);
532 cso_save_viewport(cso);
533 cso_save_samplers(cso);
534 cso_save_sampler_textures(cso);
535
536 /* rasterizer state: just scissor */
537 {
538 struct pipe_rasterizer_state rasterizer;
539 memset(&rasterizer, 0, sizeof(rasterizer));
540 rasterizer.gl_rasterization_rules = 1;
541 rasterizer.scissor = ctx->Scissor.Enabled;
542 cso_set_rasterizer(cso, &rasterizer);
543 }
544
545 /* fragment shader state: TEX lookup program */
546 pipe->bind_fs_state(pipe, stfp->driver_shader);
547
548 /* vertex shader state: position + texcoord pass-through */
549 pipe->bind_vs_state(pipe, stvp->driver_shader);
550
551
552 /* texture sampling state: */
553 {
554 struct pipe_sampler_state sampler;
555 memset(&sampler, 0, sizeof(sampler));
556 sampler.wrap_s = PIPE_TEX_WRAP_CLAMP;
557 sampler.wrap_t = PIPE_TEX_WRAP_CLAMP;
558 sampler.wrap_r = PIPE_TEX_WRAP_CLAMP;
559 sampler.min_img_filter = PIPE_TEX_FILTER_NEAREST;
560 sampler.min_mip_filter = PIPE_TEX_MIPFILTER_NONE;
561 sampler.mag_img_filter = PIPE_TEX_FILTER_NEAREST;
562 sampler.normalized_coords = 1;
563
564 cso_single_sampler(cso, 0, &sampler);
565 cso_single_sampler_done(cso);
566 }
567
568 /* viewport state: viewport matching window dims */
569 {
570 const float width = ctx->DrawBuffer->Width;
571 const float height = ctx->DrawBuffer->Height;
572 struct pipe_viewport_state vp;
573 vp.scale[0] = 0.5 * width;
574 vp.scale[1] = -0.5 * height;
575 vp.scale[2] = 1.0;
576 vp.scale[3] = 1.0;
577 vp.translate[0] = 0.5 * width;
578 vp.translate[1] = 0.5 * height;
579 vp.translate[2] = 0.0;
580 vp.translate[3] = 0.0;
581 cso_set_viewport(cso, &vp);
582 }
583
584 /* texture state: */
585 pipe->set_sampler_textures(pipe, 1, &pt);
586
587 /* Compute window coords (y=0=bottom) with pixel zoom.
588 * Recall that these coords are transformed by the current
589 * vertex shader and viewport transformation.
590 */
591 x0 = x;
592 x1 = x + width * ctx->Pixel.ZoomX;
593 y0 = y;
594 y1 = y + height * ctx->Pixel.ZoomY;
595
596 /* draw textured quad */
597 if (color)
598 draw_quad_colored(ctx, x0, y0, z, x1, y1, color, invertTex);
599 else
600 draw_quad(ctx, x0, y0, z, x1, y1, invertTex);
601
602 /* restore state */
603 cso_restore_rasterizer(cso);
604 cso_restore_viewport(cso);
605 cso_restore_samplers(cso);
606 cso_restore_sampler_textures(cso);
607
608 /* shaders don't go through cso yet */
609 pipe->bind_fs_state(pipe, st->fp->driver_shader);
610 pipe->bind_vs_state(pipe, st->vp->driver_shader);
611 }
612
613
614 /**
615 * Check if a GL format/type combination is a match to the given pipe format.
616 * XXX probably move this to a re-usable place.
617 */
618 static GLboolean
619 compatible_formats(GLenum format, GLenum type, enum pipe_format pipeFormat)
620 {
621 static const GLuint one = 1;
622 GLubyte littleEndian = *((GLubyte *) &one);
623
624 if (pipeFormat == PIPE_FORMAT_R8G8B8A8_UNORM &&
625 format == GL_RGBA &&
626 type == GL_UNSIGNED_BYTE &&
627 !littleEndian) {
628 return GL_TRUE;
629 }
630 else if (pipeFormat == PIPE_FORMAT_R8G8B8A8_UNORM &&
631 format == GL_ABGR_EXT &&
632 type == GL_UNSIGNED_BYTE &&
633 littleEndian) {
634 return GL_TRUE;
635 }
636 else if (pipeFormat == PIPE_FORMAT_A8R8G8B8_UNORM &&
637 format == GL_BGRA &&
638 type == GL_UNSIGNED_BYTE &&
639 littleEndian) {
640 return GL_TRUE;
641 }
642 else if (pipeFormat == PIPE_FORMAT_R5G6B5_UNORM &&
643 format == GL_RGB &&
644 type == GL_UNSIGNED_SHORT_5_6_5) {
645 /* endian don't care */
646 return GL_TRUE;
647 }
648 else if (pipeFormat == PIPE_FORMAT_R5G6B5_UNORM &&
649 format == GL_BGR &&
650 type == GL_UNSIGNED_SHORT_5_6_5_REV) {
651 /* endian don't care */
652 return GL_TRUE;
653 }
654 else if (pipeFormat == PIPE_FORMAT_S8_UNORM &&
655 format == GL_STENCIL_INDEX &&
656 type == GL_UNSIGNED_BYTE) {
657 return GL_TRUE;
658 }
659 else if (pipeFormat == PIPE_FORMAT_Z32_UNORM &&
660 format == GL_DEPTH_COMPONENT &&
661 type == GL_UNSIGNED_INT) {
662 return GL_TRUE;
663 }
664 /* XXX add more cases */
665 else {
666 return GL_FALSE;
667 }
668 }
669
670
671 /**
672 * Check if any per-fragment ops are enabled.
673 * XXX probably move this to a re-usable place.
674 */
675 static GLboolean
676 any_fragment_ops(const struct st_context *st)
677 {
678 if (st->state.depth_stencil.alpha.enabled ||
679 st->state.depth_stencil.depth.enabled ||
680 st->state.blend.blend_enable ||
681 st->state.blend.logicop_enable)
682 /* XXX more checks */
683 return GL_TRUE;
684 else
685 return GL_FALSE;
686 }
687
688
689 /**
690 * Check if any pixel transfer ops are enabled.
691 * XXX probably move this to a re-usable place.
692 */
693 static GLboolean
694 any_pixel_transfer_ops(const struct st_context *st)
695 {
696 if (st->ctx->Pixel.RedScale != 1.0 ||
697 st->ctx->Pixel.RedBias != 0.0 ||
698 st->ctx->Pixel.GreenScale != 1.0 ||
699 st->ctx->Pixel.GreenBias != 0.0 ||
700 st->ctx->Pixel.BlueScale != 1.0 ||
701 st->ctx->Pixel.BlueBias != 0.0 ||
702 st->ctx->Pixel.AlphaScale != 1.0 ||
703 st->ctx->Pixel.AlphaBias != 0.0 ||
704 st->ctx->Pixel.MapColorFlag)
705 /* XXX more checks */
706 return GL_TRUE;
707 else
708 return GL_FALSE;
709 }
710
711
712 /**
713 * Draw image with a blit, or other non-textured quad method.
714 */
715 static void
716 draw_blit(struct st_context *st,
717 GLsizei width, GLsizei height,
718 GLenum format, GLenum type, const GLvoid *pixels)
719 {
720
721
722 }
723
724
725 static void
726 draw_stencil_pixels(GLcontext *ctx, GLint x, GLint y,
727 GLsizei width, GLsizei height, GLenum type,
728 const struct gl_pixelstore_attrib *unpack,
729 const GLvoid *pixels)
730 {
731 struct st_context *st = ctx->st;
732 struct pipe_context *pipe = st->pipe;
733 struct pipe_surface *ps = st->state.framebuffer.zsbuf;
734 const GLboolean zoom = ctx->Pixel.ZoomX != 1.0 || ctx->Pixel.ZoomY != 1.0;
735 GLint skipPixels;
736 ubyte *stmap;
737
738 pipe->flush(pipe, PIPE_FLUSH_RENDER_CACHE, NULL);
739
740 /* map the stencil buffer */
741 stmap = pipe_surface_map(ps);
742
743 /* if width > MAX_WIDTH, have to process image in chunks */
744 skipPixels = 0;
745 while (skipPixels < width) {
746 const GLint spanX = x + skipPixels;
747 const GLint spanWidth = MIN2(width - skipPixels, MAX_WIDTH);
748 GLint row;
749 for (row = 0; row < height; row++) {
750 GLint spanY = y + row;
751 GLubyte values[MAX_WIDTH];
752 GLenum destType = GL_UNSIGNED_BYTE;
753 const GLvoid *source = _mesa_image_address2d(unpack, pixels,
754 width, height,
755 GL_COLOR_INDEX, type,
756 row, skipPixels);
757 _mesa_unpack_stencil_span(ctx, spanWidth, destType, values,
758 type, source, unpack,
759 ctx->_ImageTransferState);
760 if (zoom) {
761 /*
762 _swrast_write_zoomed_stencil_span(ctx, x, y, spanWidth,
763 spanX, spanY, values);
764 */
765 }
766 else {
767 if (st_fb_orientation(ctx->DrawBuffer) == Y_0_TOP) {
768 spanY = ctx->DrawBuffer->Height - spanY - 1;
769 }
770
771 switch (ps->format) {
772 case PIPE_FORMAT_U_S8:
773 {
774 ubyte *dest = stmap + spanY * ps->pitch + spanX;
775 memcpy(dest, values, spanWidth);
776 }
777 break;
778 case PIPE_FORMAT_S8Z24_UNORM:
779 {
780 uint *dest = (uint *) stmap + spanY * ps->pitch + spanX;
781 GLint k;
782 for (k = 0; k < spanWidth; k++) {
783 uint p = dest[k];
784 p = (p & 0xffffff) | (values[k] << 24);
785 dest[k] = p;
786 }
787 }
788 break;
789 default:
790 assert(0);
791 }
792 }
793 }
794 skipPixels += spanWidth;
795 }
796
797 /* unmap the stencil buffer */
798 pipe_surface_unmap(ps);
799 }
800
801
802 /**
803 * Called via ctx->Driver.DrawPixels()
804 */
805 static void
806 st_DrawPixels(GLcontext *ctx, GLint x, GLint y, GLsizei width, GLsizei height,
807 GLenum format, GLenum type,
808 const struct gl_pixelstore_attrib *unpack, const GLvoid *pixels)
809 {
810 struct st_fragment_program *stfp;
811 struct st_vertex_program *stvp;
812 struct st_context *st = ctx->st;
813 struct pipe_surface *ps;
814 GLuint bufferFormat;
815 const GLfloat *color;
816
817 if (format == GL_STENCIL_INDEX) {
818 draw_stencil_pixels(ctx, x, y, width, height, type, unpack, pixels);
819 return;
820 }
821
822 st_validate_state(st);
823
824 if (format == GL_DEPTH_COMPONENT) {
825 ps = st->state.framebuffer.zsbuf;
826 stfp = make_fragment_shader_z(ctx->st);
827 stvp = st_make_passthrough_vertex_shader(ctx->st, GL_TRUE);
828 color = ctx->Current.RasterColor;
829 }
830 else if (format == GL_STENCIL_INDEX) {
831 ps = st->state.framebuffer.zsbuf;
832 /* XXX special case - can't use texture map */
833 color = NULL;
834 }
835 else {
836 ps = st->state.framebuffer.cbufs[0];
837 stfp = combined_drawpix_fragment_program(ctx);
838 stvp = st_make_passthrough_vertex_shader(ctx->st, GL_FALSE);
839 color = NULL;
840 }
841
842 bufferFormat = ps->format;
843
844 if (1/*any_fragment_ops(st) ||
845 any_pixel_transfer_ops(st) ||
846 !compatible_formats(format, type, ps->format)*/) {
847 /* textured quad */
848 struct pipe_texture *pt
849 = make_texture(ctx->st, width, height, format, type, unpack, pixels);
850 if (pt) {
851 draw_textured_quad(ctx, x, y, ctx->Current.RasterPos[2],
852 width, height, ctx->Pixel.ZoomX, ctx->Pixel.ZoomY,
853 pt, stvp, stfp, color, GL_FALSE);
854 pipe_texture_reference(&pt, NULL);
855 }
856 }
857 else {
858 /* blit */
859 draw_blit(st, width, height, format, type, pixels);
860 }
861 }
862
863
864
865 static void
866 copy_stencil_pixels(GLcontext *ctx, GLint srcx, GLint srcy,
867 GLsizei width, GLsizei height,
868 GLint dstx, GLint dsty)
869 {
870 struct st_renderbuffer *rbRead = st_renderbuffer(ctx->ReadBuffer->_StencilBuffer);
871 struct st_renderbuffer *rbDraw = st_renderbuffer(ctx->DrawBuffer->_StencilBuffer);
872 struct pipe_surface *psRead = rbRead->surface;
873 struct pipe_surface *psDraw = rbDraw->surface;
874 ubyte *readMap, *drawMap;
875 ubyte *buffer;
876 int i;
877
878 buffer = malloc(width * height * sizeof(ubyte));
879 if (!buffer) {
880 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glCopyPixels(stencil)");
881 return;
882 }
883
884 /* map the stencil buffers */
885 readMap = pipe_surface_map(psRead);
886 drawMap = pipe_surface_map(psDraw);
887
888 /* this will do stencil pixel transfer ops */
889 st_read_stencil_pixels(ctx, srcx, srcy, width, height, GL_UNSIGNED_BYTE,
890 &ctx->DefaultPacking, buffer);
891
892 /* draw */
893 /* XXX PixelZoom not handled yet */
894 for (i = 0; i < height; i++) {
895 ubyte *dst;
896 const ubyte *src;
897 int y;
898
899 y = dsty + i;
900
901 if (st_fb_orientation(ctx->DrawBuffer) == Y_0_TOP) {
902 y = ctx->DrawBuffer->Height - y - 1;
903 }
904
905 dst = drawMap + (y * psDraw->pitch + dstx) * psDraw->cpp;
906 src = buffer + i * width;
907
908 switch (psDraw->format) {
909 case PIPE_FORMAT_S8Z24_UNORM:
910 {
911 uint *dst4 = (uint *) dst;
912 int j;
913 for (j = 0; j < width; j++) {
914 *dst4 = (*dst4 & 0xffffff) | (src[j] << 24);
915 dst4++;
916 }
917 }
918 break;
919 case PIPE_FORMAT_U_S8:
920 memcpy(dst, src, width);
921 break;
922 default:
923 assert(0);
924 }
925 }
926
927 free(buffer);
928
929 /* unmap the stencil buffers */
930 pipe_surface_unmap(psRead);
931 pipe_surface_unmap(psDraw);
932 }
933
934
935 static void
936 st_CopyPixels(GLcontext *ctx, GLint srcx, GLint srcy,
937 GLsizei width, GLsizei height,
938 GLint dstx, GLint dsty, GLenum type)
939 {
940 struct st_context *st = ctx->st;
941 struct pipe_context *pipe = st->pipe;
942 struct pipe_screen *screen = pipe->screen;
943 struct st_renderbuffer *rbRead;
944 struct st_vertex_program *stvp;
945 struct st_fragment_program *stfp;
946 struct pipe_surface *psRead;
947 struct pipe_surface *psTex;
948 struct pipe_texture *pt;
949 GLfloat *color;
950 enum pipe_format srcFormat, texFormat;
951
952 /* make sure rendering has completed */
953 pipe->flush(pipe, PIPE_FLUSH_RENDER_CACHE, NULL);
954
955 st_validate_state(st);
956
957 if (type == GL_STENCIL) {
958 /* can't use texturing to do stencil */
959 copy_stencil_pixels(ctx, srcx, srcy, width, height, dstx, dsty);
960 return;
961 }
962
963 if (type == GL_COLOR) {
964 rbRead = st_renderbuffer(ctx->ReadBuffer->_ColorReadBuffer);
965 color = NULL;
966 stfp = combined_drawpix_fragment_program(ctx);
967 stvp = st_make_passthrough_vertex_shader(ctx->st, GL_FALSE);
968 }
969 else {
970 assert(type == GL_DEPTH);
971 rbRead = st_renderbuffer(ctx->ReadBuffer->_DepthBuffer);
972 color = ctx->Current.Attrib[VERT_ATTRIB_COLOR0];
973 stfp = make_fragment_shader_z(ctx->st);
974 stvp = st_make_passthrough_vertex_shader(ctx->st, GL_TRUE);
975 }
976
977 psRead = rbRead->surface;
978 srcFormat = psRead->format;
979
980 if (screen->is_format_supported(screen, srcFormat, PIPE_TEXTURE)) {
981 texFormat = srcFormat;
982 }
983 else {
984 /* srcFormat can't be used as a texture format */
985 if (type == GL_DEPTH) {
986 static const enum pipe_format zFormats[] = {
987 PIPE_FORMAT_Z16_UNORM,
988 PIPE_FORMAT_Z32_UNORM,
989 PIPE_FORMAT_S8Z24_UNORM,
990 PIPE_FORMAT_Z24S8_UNORM
991 };
992 uint i;
993 texFormat = 0;
994 for (i = 0; i < Elements(zFormats); i++) {
995 if (screen->is_format_supported(screen, zFormats[i],
996 PIPE_TEXTURE)) {
997 texFormat = zFormats[i];
998 break;
999 }
1000 }
1001 assert(texFormat); /* XXX no depth texture formats??? */
1002 }
1003 else {
1004 /* todo */
1005 assert(0);
1006 }
1007 }
1008
1009 pt = st_texture_create(ctx->st, PIPE_TEXTURE_2D, texFormat, 0,
1010 width, height, 1, 0);
1011 if (!pt)
1012 return;
1013
1014 psTex = screen->get_tex_surface(screen, pt, 0, 0, 0);
1015
1016 if (st_fb_orientation(ctx->DrawBuffer) == Y_0_TOP) {
1017 srcy = ctx->DrawBuffer->Height - srcy - height;
1018 }
1019
1020 /* For some drivers (like Xlib) it's not possible to treat the
1021 * front/back color buffers as surfaces (they're XImages and Pixmaps).
1022 * So, this var tells us if we can use surface_copy here...
1023 */
1024 if (st->haveFramebufferSurfaces && srcFormat == texFormat) {
1025 /* copy source framebuffer surface into mipmap/texture */
1026 pipe->surface_copy(pipe,
1027 FALSE,
1028 psTex, /* dest */
1029 0, 0, /* destx/y */
1030 psRead,
1031 srcx, srcy, width, height);
1032 }
1033 else if (type == GL_COLOR) {
1034 /* alternate path using get/put_tile() */
1035 GLfloat *buf = (GLfloat *) malloc(width * height * 4 * sizeof(GLfloat));
1036
1037 pipe_get_tile_rgba(pipe, psRead, srcx, srcy, width, height, buf);
1038 pipe_put_tile_rgba(pipe, psTex, 0, 0, width, height, buf);
1039
1040 free(buf);
1041 }
1042 else {
1043 /* GL_DEPTH */
1044 GLuint *buf = (GLuint *) malloc(width * height * sizeof(GLuint));
1045 pipe_get_tile_z(pipe, psRead, srcx, srcy, width, height, buf);
1046 pipe_put_tile_z(pipe, psTex, 0, 0, width, height, buf);
1047 free(buf);
1048 }
1049
1050 /* draw textured quad */
1051 draw_textured_quad(ctx, dstx, dsty, ctx->Current.RasterPos[2],
1052 width, height, ctx->Pixel.ZoomX, ctx->Pixel.ZoomY,
1053 pt, stvp, stfp, color, GL_TRUE);
1054
1055 pipe_surface_reference(&psTex, NULL);
1056 pipe_texture_reference(&pt, NULL);
1057 }
1058
1059
1060
1061 void st_init_drawpixels_functions(struct dd_function_table *functions)
1062 {
1063 functions->DrawPixels = st_DrawPixels;
1064 functions->CopyPixels = st_CopyPixels;
1065 }