st/mesa: set geometry shader to NULL when doing internal drawing
[mesa.git] / src / mesa / state_tracker / st_cb_bitmap.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/mfeatures.h"
38 #include "main/pbo.h"
39 #include "program/program.h"
40 #include "program/prog_print.h"
41
42 #include "st_context.h"
43 #include "st_atom.h"
44 #include "st_atom_constbuf.h"
45 #include "st_program.h"
46 #include "st_cb_bitmap.h"
47 #include "st_texture.h"
48
49 #include "pipe/p_context.h"
50 #include "pipe/p_defines.h"
51 #include "pipe/p_shader_tokens.h"
52 #include "util/u_inlines.h"
53 #include "util/u_draw_quad.h"
54 #include "util/u_simple_shaders.h"
55 #include "program/prog_instruction.h"
56 #include "cso_cache/cso_context.h"
57
58
59 #if FEATURE_drawpix
60
61 /**
62 * glBitmaps are drawn as textured quads. The user's bitmap pattern
63 * is stored in a texture image. An alpha8 texture format is used.
64 * The fragment shader samples a bit (texel) from the texture, then
65 * discards the fragment if the bit is off.
66 *
67 * Note that we actually store the inverse image of the bitmap to
68 * simplify the fragment program. An "on" bit gets stored as texel=0x0
69 * and an "off" bit is stored as texel=0xff. Then we kill the
70 * fragment if the negated texel value is less than zero.
71 */
72
73
74 /**
75 * The bitmap cache attempts to accumulate multiple glBitmap calls in a
76 * buffer which is then rendered en mass upon a flush, state change, etc.
77 * A wide, short buffer is used to target the common case of a series
78 * of glBitmap calls being used to draw text.
79 */
80 static GLboolean UseBitmapCache = GL_TRUE;
81
82
83 #define BITMAP_CACHE_WIDTH 512
84 #define BITMAP_CACHE_HEIGHT 32
85
86 struct bitmap_cache
87 {
88 /** Window pos to render the cached image */
89 GLint xpos, ypos;
90 /** Bounds of region used in window coords */
91 GLint xmin, ymin, xmax, ymax;
92
93 GLfloat color[4];
94
95 /** Bitmap's Z position */
96 GLfloat zpos;
97
98 struct pipe_resource *texture;
99 struct pipe_transfer *trans;
100
101 GLboolean empty;
102
103 /** An I8 texture image: */
104 ubyte *buffer;
105 };
106
107
108 /** Epsilon for Z comparisons */
109 #define Z_EPSILON 1e-06
110
111
112 /**
113 * Make fragment program for glBitmap:
114 * Sample the texture and kill the fragment if the bit is 0.
115 * This program will be combined with the user's fragment program.
116 */
117 static struct st_fragment_program *
118 make_bitmap_fragment_program(struct gl_context *ctx, GLuint samplerIndex)
119 {
120 struct st_context *st = st_context(ctx);
121 struct st_fragment_program *stfp;
122 struct gl_program *p;
123 GLuint ic = 0;
124
125 p = ctx->Driver.NewProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, 0);
126 if (!p)
127 return NULL;
128
129 p->NumInstructions = 3;
130
131 p->Instructions = _mesa_alloc_instructions(p->NumInstructions);
132 if (!p->Instructions) {
133 ctx->Driver.DeleteProgram(ctx, p);
134 return NULL;
135 }
136 _mesa_init_instructions(p->Instructions, p->NumInstructions);
137
138 /* TEX tmp0, fragment.texcoord[0], texture[0], 2D; */
139 p->Instructions[ic].Opcode = OPCODE_TEX;
140 p->Instructions[ic].DstReg.File = PROGRAM_TEMPORARY;
141 p->Instructions[ic].DstReg.Index = 0;
142 p->Instructions[ic].SrcReg[0].File = PROGRAM_INPUT;
143 p->Instructions[ic].SrcReg[0].Index = FRAG_ATTRIB_TEX0;
144 p->Instructions[ic].TexSrcUnit = samplerIndex;
145 p->Instructions[ic].TexSrcTarget = TEXTURE_2D_INDEX;
146 ic++;
147
148 /* KIL if -tmp0 < 0 # texel=0 -> keep / texel=0 -> discard */
149 p->Instructions[ic].Opcode = OPCODE_KIL;
150 p->Instructions[ic].SrcReg[0].File = PROGRAM_TEMPORARY;
151
152 if (st->bitmap.tex_format == PIPE_FORMAT_L8_UNORM)
153 p->Instructions[ic].SrcReg[0].Swizzle = SWIZZLE_XXXX;
154
155 p->Instructions[ic].SrcReg[0].Index = 0;
156 p->Instructions[ic].SrcReg[0].Negate = NEGATE_XYZW;
157 ic++;
158
159 /* END; */
160 p->Instructions[ic++].Opcode = OPCODE_END;
161
162 assert(ic == p->NumInstructions);
163
164 p->InputsRead = FRAG_BIT_TEX0;
165 p->OutputsWritten = 0x0;
166 p->SamplersUsed = (1 << samplerIndex);
167
168 stfp = (struct st_fragment_program *) p;
169 stfp->Base.UsesKill = GL_TRUE;
170
171 return stfp;
172 }
173
174
175 static struct gl_program *
176 make_bitmap_fragment_program_glsl(struct st_context *st,
177 struct st_fragment_program *orig,
178 GLuint samplerIndex)
179 {
180 struct gl_context *ctx = st->ctx;
181 struct st_fragment_program *fp = (struct st_fragment_program *)
182 ctx->Driver.NewProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, 0);
183
184 if (!fp)
185 return NULL;
186
187 get_bitmap_visitor(fp, orig->glsl_to_tgsi, samplerIndex);
188 return &fp->Base.Base;
189 }
190
191
192 static int
193 find_free_bit(uint bitfield)
194 {
195 int i;
196 for (i = 0; i < 32; i++) {
197 if ((bitfield & (1 << i)) == 0) {
198 return i;
199 }
200 }
201 return -1;
202 }
203
204
205 /**
206 * Combine basic bitmap fragment program with the user-defined program.
207 * \param st current context
208 * \param fpIn the incoming fragment program
209 * \param fpOut the new fragment program which does fragment culling
210 * \param bitmap_sampler sampler number for the bitmap texture
211 */
212 void
213 st_make_bitmap_fragment_program(struct st_context *st,
214 struct gl_fragment_program *fpIn,
215 struct gl_fragment_program **fpOut,
216 GLuint *bitmap_sampler)
217 {
218 struct st_fragment_program *bitmap_prog;
219 struct st_fragment_program *stfpIn = (struct st_fragment_program *) fpIn;
220 struct gl_program *newProg;
221 uint sampler;
222
223 /*
224 * Generate new program which is the user-defined program prefixed
225 * with the bitmap sampler/kill instructions.
226 */
227 sampler = find_free_bit(fpIn->Base.SamplersUsed);
228
229 if (stfpIn->glsl_to_tgsi)
230 newProg = make_bitmap_fragment_program_glsl(st, stfpIn, sampler);
231 else {
232 bitmap_prog = make_bitmap_fragment_program(st->ctx, sampler);
233
234 newProg = _mesa_combine_programs(st->ctx,
235 &bitmap_prog->Base.Base,
236 &fpIn->Base);
237 /* done with this after combining */
238 st_reference_fragprog(st, &bitmap_prog, NULL);
239 }
240
241 #if 0
242 {
243 printf("Combined bitmap program:\n");
244 _mesa_print_program(newProg);
245 printf("InputsRead: 0x%x\n", newProg->InputsRead);
246 printf("OutputsWritten: 0x%x\n", newProg->OutputsWritten);
247 _mesa_print_parameter_list(newProg->Parameters);
248 }
249 #endif
250
251 /* return results */
252 *fpOut = (struct gl_fragment_program *) newProg;
253 *bitmap_sampler = sampler;
254 }
255
256
257 /**
258 * Copy user-provide bitmap bits into texture buffer, expanding
259 * bits into texels.
260 * "On" bits will set texels to 0x0.
261 * "Off" bits will not modify texels.
262 * Note that the image is actually going to be upside down in
263 * the texture. We deal with that with texcoords.
264 */
265 static void
266 unpack_bitmap(struct st_context *st,
267 GLint px, GLint py, GLsizei width, GLsizei height,
268 const struct gl_pixelstore_attrib *unpack,
269 const GLubyte *bitmap,
270 ubyte *destBuffer, uint destStride)
271 {
272 destBuffer += py * destStride + px;
273
274 _mesa_expand_bitmap(width, height, unpack, bitmap,
275 destBuffer, destStride, 0x0);
276 }
277
278
279 /**
280 * Create a texture which represents a bitmap image.
281 */
282 static struct pipe_resource *
283 make_bitmap_texture(struct gl_context *ctx, GLsizei width, GLsizei height,
284 const struct gl_pixelstore_attrib *unpack,
285 const GLubyte *bitmap)
286 {
287 struct st_context *st = st_context(ctx);
288 struct pipe_context *pipe = st->pipe;
289 struct pipe_transfer *transfer;
290 ubyte *dest;
291 struct pipe_resource *pt;
292
293 /* PBO source... */
294 bitmap = _mesa_map_pbo_source(ctx, unpack, bitmap);
295 if (!bitmap) {
296 return NULL;
297 }
298
299 /**
300 * Create texture to hold bitmap pattern.
301 */
302 pt = st_texture_create(st, st->internal_target, st->bitmap.tex_format,
303 0, width, height, 1, 1,
304 PIPE_BIND_SAMPLER_VIEW);
305 if (!pt) {
306 _mesa_unmap_pbo_source(ctx, unpack);
307 return NULL;
308 }
309
310 transfer = pipe_get_transfer(st->pipe, pt, 0, 0,
311 PIPE_TRANSFER_WRITE,
312 0, 0, width, height);
313
314 dest = pipe_transfer_map(pipe, transfer);
315
316 /* Put image into texture transfer */
317 memset(dest, 0xff, height * transfer->stride);
318 unpack_bitmap(st, 0, 0, width, height, unpack, bitmap,
319 dest, transfer->stride);
320
321 _mesa_unmap_pbo_source(ctx, unpack);
322
323 /* Release transfer */
324 pipe_transfer_unmap(pipe, transfer);
325 pipe->transfer_destroy(pipe, transfer);
326
327 return pt;
328 }
329
330 static GLuint
331 setup_bitmap_vertex_data(struct st_context *st, bool normalized,
332 int x, int y, int width, int height,
333 float z, const float color[4])
334 {
335 struct pipe_context *pipe = st->pipe;
336 const struct gl_framebuffer *fb = st->ctx->DrawBuffer;
337 const GLfloat fb_width = (GLfloat)fb->Width;
338 const GLfloat fb_height = (GLfloat)fb->Height;
339 const GLfloat x0 = (GLfloat)x;
340 const GLfloat x1 = (GLfloat)(x + width);
341 const GLfloat y0 = (GLfloat)y;
342 const GLfloat y1 = (GLfloat)(y + height);
343 GLfloat sLeft = (GLfloat)0.0, sRight = (GLfloat)1.0;
344 GLfloat tTop = (GLfloat)0.0, tBot = (GLfloat)1.0 - tTop;
345 const GLfloat clip_x0 = (GLfloat)(x0 / fb_width * 2.0 - 1.0);
346 const GLfloat clip_y0 = (GLfloat)(y0 / fb_height * 2.0 - 1.0);
347 const GLfloat clip_x1 = (GLfloat)(x1 / fb_width * 2.0 - 1.0);
348 const GLfloat clip_y1 = (GLfloat)(y1 / fb_height * 2.0 - 1.0);
349 const GLuint max_slots = 1; /* 4096 / sizeof(st->bitmap.vertices); */
350 GLuint i;
351
352 if(!normalized)
353 {
354 sRight = (GLfloat) width;
355 tBot = (GLfloat) height;
356 }
357
358 /* XXX: Need to improve buffer_write to allow NO_WAIT (as well as
359 * no_flush) updates to buffers where we know there is no conflict
360 * with previous data. Currently using max_slots > 1 will cause
361 * synchronous rendering if the driver flushes its command buffers
362 * between one bitmap and the next. Our flush hook below isn't
363 * sufficient to catch this as the driver doesn't tell us when it
364 * flushes its own command buffers. Until this gets fixed, pay the
365 * price of allocating a new buffer for each bitmap cache-flush to
366 * avoid synchronous rendering.
367 */
368 if (st->bitmap.vbuf_slot >= max_slots) {
369 pipe_resource_reference(&st->bitmap.vbuf, NULL);
370 st->bitmap.vbuf_slot = 0;
371 }
372
373 if (!st->bitmap.vbuf) {
374 st->bitmap.vbuf = pipe_buffer_create(pipe->screen,
375 PIPE_BIND_VERTEX_BUFFER,
376 PIPE_USAGE_STREAM,
377 max_slots *
378 sizeof(st->bitmap.vertices));
379 }
380
381 /* Positions are in clip coords since we need to do clipping in case
382 * the bitmap quad goes beyond the window bounds.
383 */
384 st->bitmap.vertices[0][0][0] = clip_x0;
385 st->bitmap.vertices[0][0][1] = clip_y0;
386 st->bitmap.vertices[0][2][0] = sLeft;
387 st->bitmap.vertices[0][2][1] = tTop;
388
389 st->bitmap.vertices[1][0][0] = clip_x1;
390 st->bitmap.vertices[1][0][1] = clip_y0;
391 st->bitmap.vertices[1][2][0] = sRight;
392 st->bitmap.vertices[1][2][1] = tTop;
393
394 st->bitmap.vertices[2][0][0] = clip_x1;
395 st->bitmap.vertices[2][0][1] = clip_y1;
396 st->bitmap.vertices[2][2][0] = sRight;
397 st->bitmap.vertices[2][2][1] = tBot;
398
399 st->bitmap.vertices[3][0][0] = clip_x0;
400 st->bitmap.vertices[3][0][1] = clip_y1;
401 st->bitmap.vertices[3][2][0] = sLeft;
402 st->bitmap.vertices[3][2][1] = tBot;
403
404 /* same for all verts: */
405 for (i = 0; i < 4; i++) {
406 st->bitmap.vertices[i][0][2] = z;
407 st->bitmap.vertices[i][0][3] = 1.0f;
408 st->bitmap.vertices[i][1][0] = color[0];
409 st->bitmap.vertices[i][1][1] = color[1];
410 st->bitmap.vertices[i][1][2] = color[2];
411 st->bitmap.vertices[i][1][3] = color[3];
412 st->bitmap.vertices[i][2][2] = 0.0; /*R*/
413 st->bitmap.vertices[i][2][3] = 1.0; /*Q*/
414 }
415
416 /* put vertex data into vbuf */
417 pipe_buffer_write_nooverlap(st->pipe,
418 st->bitmap.vbuf,
419 st->bitmap.vbuf_slot
420 * sizeof(st->bitmap.vertices),
421 sizeof st->bitmap.vertices,
422 st->bitmap.vertices);
423
424 return st->bitmap.vbuf_slot++ * sizeof st->bitmap.vertices;
425 }
426
427
428
429 /**
430 * Render a glBitmap by drawing a textured quad
431 */
432 static void
433 draw_bitmap_quad(struct gl_context *ctx, GLint x, GLint y, GLfloat z,
434 GLsizei width, GLsizei height,
435 struct pipe_sampler_view *sv,
436 const GLfloat *color)
437 {
438 struct st_context *st = st_context(ctx);
439 struct pipe_context *pipe = st->pipe;
440 struct cso_context *cso = st->cso_context;
441 struct st_fp_variant *fpv;
442 struct st_fp_variant_key key;
443 GLuint maxSize;
444 GLuint offset;
445
446 memset(&key, 0, sizeof(key));
447 key.st = st;
448 key.bitmap = GL_TRUE;
449
450 fpv = st_get_fp_variant(st, st->fp, &key);
451
452 /* As an optimization, Mesa's fragment programs will sometimes get the
453 * primary color from a statevar/constant rather than a varying variable.
454 * when that's the case, we need to ensure that we use the 'color'
455 * parameter and not the current attribute color (which may have changed
456 * through glRasterPos and state validation.
457 * So, we force the proper color here. Not elegant, but it works.
458 */
459 {
460 GLfloat colorSave[4];
461 COPY_4V(colorSave, ctx->Current.Attrib[VERT_ATTRIB_COLOR0]);
462 COPY_4V(ctx->Current.Attrib[VERT_ATTRIB_COLOR0], color);
463 st_upload_constants(st, fpv->parameters, PIPE_SHADER_FRAGMENT);
464 COPY_4V(ctx->Current.Attrib[VERT_ATTRIB_COLOR0], colorSave);
465 }
466
467
468 /* limit checks */
469 /* XXX if the bitmap is larger than the max texture size, break
470 * it up into chunks.
471 */
472 maxSize = 1 << (pipe->screen->get_param(pipe->screen,
473 PIPE_CAP_MAX_TEXTURE_2D_LEVELS) - 1);
474 assert(width <= (GLsizei)maxSize);
475 assert(height <= (GLsizei)maxSize);
476
477 cso_save_rasterizer(cso);
478 cso_save_samplers(cso);
479 cso_save_fragment_sampler_views(cso);
480 cso_save_viewport(cso);
481 cso_save_fragment_shader(cso);
482 cso_save_vertex_shader(cso);
483 cso_save_geometry_shader(cso);
484 cso_save_vertex_elements(cso);
485 cso_save_vertex_buffers(cso);
486
487 /* rasterizer state: just scissor */
488 st->bitmap.rasterizer.scissor = ctx->Scissor.Enabled;
489 cso_set_rasterizer(cso, &st->bitmap.rasterizer);
490
491 /* fragment shader state: TEX lookup program */
492 cso_set_fragment_shader_handle(cso, fpv->driver_shader);
493
494 /* vertex shader state: position + texcoord pass-through */
495 cso_set_vertex_shader_handle(cso, st->bitmap.vs);
496
497 /* geometry shader state: disabled */
498 cso_set_geometry_shader_handle(cso, NULL);
499
500 /* user samplers, plus our bitmap sampler */
501 {
502 struct pipe_sampler_state *samplers[PIPE_MAX_SAMPLERS];
503 uint num = MAX2(fpv->bitmap_sampler + 1, st->state.num_samplers);
504 uint i;
505 for (i = 0; i < st->state.num_samplers; i++) {
506 samplers[i] = &st->state.samplers[i];
507 }
508 samplers[fpv->bitmap_sampler] =
509 &st->bitmap.samplers[sv->texture->target != PIPE_TEXTURE_RECT];
510 cso_set_samplers(cso, num, (const struct pipe_sampler_state **) samplers);
511 }
512
513 /* user textures, plus the bitmap texture */
514 {
515 struct pipe_sampler_view *sampler_views[PIPE_MAX_SAMPLERS];
516 uint num = MAX2(fpv->bitmap_sampler + 1, st->state.num_textures);
517 memcpy(sampler_views, st->state.sampler_views, sizeof(sampler_views));
518 sampler_views[fpv->bitmap_sampler] = sv;
519 cso_set_fragment_sampler_views(cso, num, sampler_views);
520 }
521
522 /* viewport state: viewport matching window dims */
523 {
524 const struct gl_framebuffer *fb = st->ctx->DrawBuffer;
525 const GLboolean invert = (st_fb_orientation(fb) == Y_0_TOP);
526 const GLfloat width = (GLfloat)fb->Width;
527 const GLfloat height = (GLfloat)fb->Height;
528 struct pipe_viewport_state vp;
529 vp.scale[0] = 0.5f * width;
530 vp.scale[1] = height * (invert ? -0.5f : 0.5f);
531 vp.scale[2] = 0.5f;
532 vp.scale[3] = 1.0f;
533 vp.translate[0] = 0.5f * width;
534 vp.translate[1] = 0.5f * height;
535 vp.translate[2] = 0.5f;
536 vp.translate[3] = 0.0f;
537 cso_set_viewport(cso, &vp);
538 }
539
540 cso_set_vertex_elements(cso, 3, st->velems_util_draw);
541
542 /* convert Z from [0,1] to [-1,-1] to match viewport Z scale/bias */
543 z = z * 2.0f - 1.0f;
544
545 /* draw textured quad */
546 offset = setup_bitmap_vertex_data(st,
547 sv->texture->target != PIPE_TEXTURE_RECT,
548 x, y, width, height, z, color);
549
550 util_draw_vertex_buffer(pipe, st->cso_context, st->bitmap.vbuf, offset,
551 PIPE_PRIM_TRIANGLE_FAN,
552 4, /* verts */
553 3); /* attribs/vert */
554
555
556 /* restore state */
557 cso_restore_rasterizer(cso);
558 cso_restore_samplers(cso);
559 cso_restore_fragment_sampler_views(cso);
560 cso_restore_viewport(cso);
561 cso_restore_fragment_shader(cso);
562 cso_restore_vertex_shader(cso);
563 cso_restore_geometry_shader(cso);
564 cso_restore_vertex_elements(cso);
565 cso_restore_vertex_buffers(cso);
566 }
567
568
569 static void
570 reset_cache(struct st_context *st)
571 {
572 struct pipe_context *pipe = st->pipe;
573 struct bitmap_cache *cache = st->bitmap.cache;
574
575 /*memset(cache->buffer, 0xff, sizeof(cache->buffer));*/
576 cache->empty = GL_TRUE;
577
578 cache->xmin = 1000000;
579 cache->xmax = -1000000;
580 cache->ymin = 1000000;
581 cache->ymax = -1000000;
582
583 if (cache->trans) {
584 pipe->transfer_destroy(pipe, cache->trans);
585 cache->trans = NULL;
586 }
587
588 assert(!cache->texture);
589
590 /* allocate a new texture */
591 cache->texture = st_texture_create(st, PIPE_TEXTURE_2D,
592 st->bitmap.tex_format, 0,
593 BITMAP_CACHE_WIDTH, BITMAP_CACHE_HEIGHT,
594 1, 1,
595 PIPE_BIND_SAMPLER_VIEW);
596 }
597
598
599 /** Print bitmap image to stdout (debug) */
600 static void
601 print_cache(const struct bitmap_cache *cache)
602 {
603 int i, j, k;
604
605 for (i = 0; i < BITMAP_CACHE_HEIGHT; i++) {
606 k = BITMAP_CACHE_WIDTH * (BITMAP_CACHE_HEIGHT - i - 1);
607 for (j = 0; j < BITMAP_CACHE_WIDTH; j++) {
608 if (cache->buffer[k])
609 printf("X");
610 else
611 printf(" ");
612 k++;
613 }
614 printf("\n");
615 }
616 }
617
618
619 /**
620 * Create gallium pipe_transfer object for the bitmap cache.
621 */
622 static void
623 create_cache_trans(struct st_context *st)
624 {
625 struct pipe_context *pipe = st->pipe;
626 struct bitmap_cache *cache = st->bitmap.cache;
627
628 if (cache->trans)
629 return;
630
631 /* Map the texture transfer.
632 * Subsequent glBitmap calls will write into the texture image.
633 */
634 cache->trans = pipe_get_transfer(st->pipe, cache->texture, 0, 0,
635 PIPE_TRANSFER_WRITE, 0, 0,
636 BITMAP_CACHE_WIDTH,
637 BITMAP_CACHE_HEIGHT);
638 cache->buffer = pipe_transfer_map(pipe, cache->trans);
639
640 /* init image to all 0xff */
641 memset(cache->buffer, 0xff, cache->trans->stride * BITMAP_CACHE_HEIGHT);
642 }
643
644
645 /**
646 * If there's anything in the bitmap cache, draw/flush it now.
647 */
648 void
649 st_flush_bitmap_cache(struct st_context *st)
650 {
651 if (!st->bitmap.cache->empty) {
652 struct bitmap_cache *cache = st->bitmap.cache;
653
654 if (st->ctx->DrawBuffer) {
655 struct pipe_context *pipe = st->pipe;
656 struct pipe_sampler_view *sv;
657
658 assert(cache->xmin <= cache->xmax);
659
660 /* printf("flush size %d x %d at %d, %d\n",
661 cache->xmax - cache->xmin,
662 cache->ymax - cache->ymin,
663 cache->xpos, cache->ypos);
664 */
665
666 /* The texture transfer has been mapped until now.
667 * So unmap and release the texture transfer before drawing.
668 */
669 if (cache->trans) {
670 if (0)
671 print_cache(cache);
672 pipe_transfer_unmap(pipe, cache->trans);
673 cache->buffer = NULL;
674
675 pipe->transfer_destroy(pipe, cache->trans);
676 cache->trans = NULL;
677 }
678
679 sv = st_create_texture_sampler_view(st->pipe, cache->texture);
680 if (sv) {
681 draw_bitmap_quad(st->ctx,
682 cache->xpos,
683 cache->ypos,
684 cache->zpos,
685 BITMAP_CACHE_WIDTH, BITMAP_CACHE_HEIGHT,
686 sv,
687 cache->color);
688
689 pipe_sampler_view_reference(&sv, NULL);
690 }
691 }
692
693 /* release/free the texture */
694 pipe_resource_reference(&cache->texture, NULL);
695
696 reset_cache(st);
697 }
698 }
699
700
701 /**
702 * Flush bitmap cache and release vertex buffer.
703 */
704 void
705 st_flush_bitmap( struct st_context *st )
706 {
707 st_flush_bitmap_cache(st);
708
709 /* Release vertex buffer to avoid synchronous rendering if we were
710 * to map it in the next frame.
711 */
712 pipe_resource_reference(&st->bitmap.vbuf, NULL);
713 st->bitmap.vbuf_slot = 0;
714 }
715
716
717 /**
718 * Try to accumulate this glBitmap call in the bitmap cache.
719 * \return GL_TRUE for success, GL_FALSE if bitmap is too large, etc.
720 */
721 static GLboolean
722 accum_bitmap(struct st_context *st,
723 GLint x, GLint y, GLsizei width, GLsizei height,
724 const struct gl_pixelstore_attrib *unpack,
725 const GLubyte *bitmap )
726 {
727 struct bitmap_cache *cache = st->bitmap.cache;
728 int px = -999, py = -999;
729 const GLfloat z = st->ctx->Current.RasterPos[2];
730
731 if (width > BITMAP_CACHE_WIDTH ||
732 height > BITMAP_CACHE_HEIGHT)
733 return GL_FALSE; /* too big to cache */
734
735 if (!cache->empty) {
736 px = x - cache->xpos; /* pos in buffer */
737 py = y - cache->ypos;
738 if (px < 0 || px + width > BITMAP_CACHE_WIDTH ||
739 py < 0 || py + height > BITMAP_CACHE_HEIGHT ||
740 !TEST_EQ_4V(st->ctx->Current.RasterColor, cache->color) ||
741 ((fabs(z - cache->zpos) > Z_EPSILON))) {
742 /* This bitmap would extend beyond cache bounds, or the bitmap
743 * color is changing
744 * so flush and continue.
745 */
746 st_flush_bitmap_cache(st);
747 }
748 }
749
750 if (cache->empty) {
751 /* Initialize. Center bitmap vertically in the buffer. */
752 px = 0;
753 py = (BITMAP_CACHE_HEIGHT - height) / 2;
754 cache->xpos = x;
755 cache->ypos = y - py;
756 cache->zpos = z;
757 cache->empty = GL_FALSE;
758 COPY_4FV(cache->color, st->ctx->Current.RasterColor);
759 }
760
761 assert(px != -999);
762 assert(py != -999);
763
764 if (x < cache->xmin)
765 cache->xmin = x;
766 if (y < cache->ymin)
767 cache->ymin = y;
768 if (x + width > cache->xmax)
769 cache->xmax = x + width;
770 if (y + height > cache->ymax)
771 cache->ymax = y + height;
772
773 /* create the transfer if needed */
774 create_cache_trans(st);
775
776 unpack_bitmap(st, px, py, width, height, unpack, bitmap,
777 cache->buffer, BITMAP_CACHE_WIDTH);
778
779 return GL_TRUE; /* accumulated */
780 }
781
782
783
784 /**
785 * Called via ctx->Driver.Bitmap()
786 */
787 static void
788 st_Bitmap(struct gl_context *ctx, GLint x, GLint y,
789 GLsizei width, GLsizei height,
790 const struct gl_pixelstore_attrib *unpack, const GLubyte *bitmap )
791 {
792 struct st_context *st = st_context(ctx);
793 struct pipe_resource *pt;
794
795 if (width == 0 || height == 0)
796 return;
797
798 st_validate_state(st);
799
800 if (!st->bitmap.vs) {
801 /* create pass-through vertex shader now */
802 const uint semantic_names[] = { TGSI_SEMANTIC_POSITION,
803 TGSI_SEMANTIC_COLOR,
804 TGSI_SEMANTIC_GENERIC };
805 const uint semantic_indexes[] = { 0, 0, 0 };
806 st->bitmap.vs = util_make_vertex_passthrough_shader(st->pipe, 3,
807 semantic_names,
808 semantic_indexes);
809 }
810
811 if (UseBitmapCache && accum_bitmap(st, x, y, width, height, unpack, bitmap))
812 return;
813
814 pt = make_bitmap_texture(ctx, width, height, unpack, bitmap);
815 if (pt) {
816 struct pipe_sampler_view *sv =
817 st_create_texture_sampler_view(st->pipe, pt);
818
819 assert(pt->target == PIPE_TEXTURE_2D || pt->target == PIPE_TEXTURE_RECT);
820
821 if (sv) {
822 draw_bitmap_quad(ctx, x, y, ctx->Current.RasterPos[2],
823 width, height, sv,
824 st->ctx->Current.RasterColor);
825
826 pipe_sampler_view_reference(&sv, NULL);
827 }
828
829 /* release/free the texture */
830 pipe_resource_reference(&pt, NULL);
831 }
832 }
833
834
835 /** Per-context init */
836 void
837 st_init_bitmap_functions(struct dd_function_table *functions)
838 {
839 functions->Bitmap = st_Bitmap;
840 }
841
842
843 /** Per-context init */
844 void
845 st_init_bitmap(struct st_context *st)
846 {
847 struct pipe_sampler_state *sampler = &st->bitmap.samplers[0];
848 struct pipe_context *pipe = st->pipe;
849 struct pipe_screen *screen = pipe->screen;
850
851 /* init sampler state once */
852 memset(sampler, 0, sizeof(*sampler));
853 sampler->wrap_s = PIPE_TEX_WRAP_CLAMP;
854 sampler->wrap_t = PIPE_TEX_WRAP_CLAMP;
855 sampler->wrap_r = PIPE_TEX_WRAP_CLAMP;
856 sampler->min_img_filter = PIPE_TEX_FILTER_NEAREST;
857 sampler->min_mip_filter = PIPE_TEX_MIPFILTER_NONE;
858 sampler->mag_img_filter = PIPE_TEX_FILTER_NEAREST;
859 st->bitmap.samplers[1] = *sampler;
860 st->bitmap.samplers[1].normalized_coords = 1;
861
862 /* init baseline rasterizer state once */
863 memset(&st->bitmap.rasterizer, 0, sizeof(st->bitmap.rasterizer));
864 st->bitmap.rasterizer.gl_rasterization_rules = 1;
865
866 /* find a usable texture format */
867 if (screen->is_format_supported(screen, PIPE_FORMAT_I8_UNORM,
868 PIPE_TEXTURE_2D, 0,
869 PIPE_BIND_SAMPLER_VIEW)) {
870 st->bitmap.tex_format = PIPE_FORMAT_I8_UNORM;
871 }
872 else if (screen->is_format_supported(screen, PIPE_FORMAT_A8_UNORM,
873 PIPE_TEXTURE_2D, 0,
874 PIPE_BIND_SAMPLER_VIEW)) {
875 st->bitmap.tex_format = PIPE_FORMAT_A8_UNORM;
876 }
877 else if (screen->is_format_supported(screen, PIPE_FORMAT_L8_UNORM,
878 PIPE_TEXTURE_2D, 0,
879 PIPE_BIND_SAMPLER_VIEW)) {
880 st->bitmap.tex_format = PIPE_FORMAT_L8_UNORM;
881 }
882 else {
883 /* XXX support more formats */
884 assert(0);
885 }
886
887 /* alloc bitmap cache object */
888 st->bitmap.cache = ST_CALLOC_STRUCT(bitmap_cache);
889
890 reset_cache(st);
891 }
892
893
894 /** Per-context tear-down */
895 void
896 st_destroy_bitmap(struct st_context *st)
897 {
898 struct pipe_context *pipe = st->pipe;
899 struct bitmap_cache *cache = st->bitmap.cache;
900
901 if (st->bitmap.vs) {
902 cso_delete_vertex_shader(st->cso_context, st->bitmap.vs);
903 st->bitmap.vs = NULL;
904 }
905
906 if (st->bitmap.vbuf) {
907 pipe_resource_reference(&st->bitmap.vbuf, NULL);
908 st->bitmap.vbuf = NULL;
909 }
910
911 if (cache) {
912 if (cache->trans) {
913 pipe_transfer_unmap(pipe, cache->trans);
914 pipe->transfer_destroy(pipe, cache->trans);
915 }
916 pipe_resource_reference(&st->bitmap.cache->texture, NULL);
917 free(st->bitmap.cache);
918 st->bitmap.cache = NULL;
919 }
920 }
921
922 #endif /* FEATURE_drawpix */