i965: take the secondary color into account when drawing
[mesa.git] / src / mesa / drivers / dri / i965 / intel_pixel_bitmap.c
1 /**************************************************************************
2 *
3 * Copyright 2006 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 portionsalloc
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 #include "glheader.h"
29 #include "enums.h"
30 #include "image.h"
31 #include "colormac.h"
32 #include "mtypes.h"
33 #include "macros.h"
34 #include "bufferobj.h"
35 #include "swrast/swrast.h"
36
37 #include "intel_screen.h"
38 #include "intel_context.h"
39 #include "intel_ioctl.h"
40 #include "intel_batchbuffer.h"
41 #include "intel_blit.h"
42 #include "intel_regions.h"
43 #include "intel_buffer_objects.h"
44
45
46
47 #define FILE_DEBUG_FLAG DEBUG_PIXEL
48
49
50 /* Unlike the other intel_pixel_* functions, the expectation here is
51 * that the incoming data is not in a PBO. With the XY_TEXT blit
52 * method, there's no benefit haveing it in a PBO, but we could
53 * implement a path based on XY_MONO_SRC_COPY_BLIT which might benefit
54 * PBO bitmaps. I think they are probably pretty rare though - I
55 * wonder if Xgl uses them?
56 */
57 static const GLubyte *map_pbo( GLcontext *ctx,
58 GLsizei width, GLsizei height,
59 const struct gl_pixelstore_attrib *unpack,
60 const GLubyte *bitmap )
61 {
62 GLubyte *buf;
63
64 if (!_mesa_validate_pbo_access(2, unpack, width, height, 1,
65 GL_COLOR_INDEX, GL_BITMAP,
66 (GLvoid *) bitmap)) {
67 _mesa_error(ctx, GL_INVALID_OPERATION,"glBitmap(invalid PBO access)");
68 return NULL;
69 }
70
71 buf = (GLubyte *) ctx->Driver.MapBuffer(ctx, GL_PIXEL_UNPACK_BUFFER_EXT,
72 GL_READ_ONLY_ARB,
73 unpack->BufferObj);
74 if (!buf) {
75 _mesa_error(ctx, GL_INVALID_OPERATION, "glBitmap(PBO is mapped)");
76 return NULL;
77 }
78
79 return ADD_POINTERS(buf, bitmap);
80 }
81
82 static GLboolean test_bit( const GLubyte *src,
83 GLuint bit )
84 {
85 return (src[bit/8] & (1<<(bit % 8))) ? 1 : 0;
86 }
87
88 static void set_bit( GLubyte *dest,
89 GLuint bit )
90 {
91 dest[bit/8] |= 1 << (bit % 8);
92 }
93
94 static int align(int x, int align)
95 {
96 return (x + align - 1) & ~(align - 1);
97 }
98
99 /* Extract a rectangle's worth of data from the bitmap. Called
100 * per-cliprect.
101 */
102 static GLuint get_bitmap_rect(GLsizei width, GLsizei height,
103 const struct gl_pixelstore_attrib *unpack,
104 const GLubyte *bitmap,
105 GLuint x, GLuint y,
106 GLuint w, GLuint h,
107 GLubyte *dest,
108 GLuint row_align,
109 GLboolean invert)
110 {
111 GLuint src_offset = (x + unpack->SkipPixels) & 0x7;
112 GLuint mask = unpack->LsbFirst ? 0 : 7;
113 GLuint bit = 0;
114 GLint row, col;
115 GLint first, last;
116 GLint incr;
117 GLuint count = 0;
118
119 if (INTEL_DEBUG & DEBUG_PIXEL)
120 _mesa_printf("%s %d,%d %dx%d bitmap %dx%d skip %d src_offset %d mask %d\n",
121 __FUNCTION__, x,y,w,h,width,height,unpack->SkipPixels, src_offset, mask);
122
123 if (invert) {
124 first = h-1;
125 last = 0;
126 incr = -1;
127 }
128 else {
129 first = 0;
130 last = h-1;
131 incr = 1;
132 }
133
134 /* Require that dest be pre-zero'd.
135 */
136 for (row = first; row != (last+incr); row += incr) {
137 const GLubyte *rowsrc = _mesa_image_address2d(unpack, bitmap,
138 width, height,
139 GL_COLOR_INDEX, GL_BITMAP,
140 y + row, x);
141
142 for (col = 0; col < w; col++, bit++) {
143 if (test_bit(rowsrc, (col + src_offset) ^ mask)) {
144 set_bit(dest, bit ^ 7);
145 count++;
146 }
147 }
148
149 if (row_align)
150 bit = (bit + row_align - 1) & ~(row_align - 1);
151 }
152
153 return count;
154 }
155
156
157
158
159 /*
160 * Render a bitmap.
161 */
162 static GLboolean
163 do_blit_bitmap( GLcontext *ctx,
164 GLint dstx, GLint dsty,
165 GLsizei width, GLsizei height,
166 const struct gl_pixelstore_attrib *unpack,
167 const GLubyte *bitmap )
168 {
169 struct intel_context *intel = intel_context(ctx);
170 struct intel_region *dst = intel_drawbuf_region(intel);
171 GLfloat tmpColor[4];
172
173 union {
174 GLuint ui;
175 GLubyte ub[4];
176 } color;
177
178 if (!dst)
179 return GL_FALSE;
180
181 if (unpack->BufferObj->Name) {
182 bitmap = map_pbo(ctx, width, height, unpack, bitmap);
183 if (bitmap == NULL)
184 return GL_TRUE; /* even though this is an error, we're done */
185 }
186
187 COPY_4V(tmpColor, ctx->Current.RasterColor);
188
189 if (NEED_SECONDARY_COLOR(ctx)) {
190 ADD_3V(tmpColor, tmpColor, ctx->Current.RasterSecondaryColor);
191 }
192
193 UNCLAMPED_FLOAT_TO_CHAN(color.ub[0], tmpColor[2]);
194 UNCLAMPED_FLOAT_TO_CHAN(color.ub[1], tmpColor[1]);
195 UNCLAMPED_FLOAT_TO_CHAN(color.ub[2], tmpColor[0]);
196 UNCLAMPED_FLOAT_TO_CHAN(color.ub[3], tmpColor[3]);
197
198 /* Does zoom apply to bitmaps?
199 */
200 if (!intel_check_blit_fragment_ops(ctx) ||
201 ctx->Pixel.ZoomX != 1.0F ||
202 ctx->Pixel.ZoomY != 1.0F)
203 return GL_FALSE;
204
205 LOCK_HARDWARE(intel);
206
207 if (intel->driDrawable->numClipRects) {
208 __DRIdrawablePrivate *dPriv = intel->driDrawable;
209 drm_clip_rect_t *box = dPriv->pClipRects;
210 drm_clip_rect_t dest_rect;
211 GLint nbox = dPriv->numClipRects;
212 GLint srcx = 0, srcy = 0;
213 GLint orig_screen_x1, orig_screen_y2;
214 GLuint i;
215
216
217 orig_screen_x1 = dPriv->x + dstx;
218 orig_screen_y2 = dPriv->y + (dPriv->h - dsty);
219
220 /* Do scissoring in GL coordinates:
221 */
222 if (ctx->Scissor.Enabled)
223 {
224 GLint x = ctx->Scissor.X;
225 GLint y = ctx->Scissor.Y;
226 GLuint w = ctx->Scissor.Width;
227 GLuint h = ctx->Scissor.Height;
228
229 if (!_mesa_clip_to_region(x, y, x+w-1, y+h-1, &dstx, &dsty, &width, &height))
230 goto out;
231 }
232
233 /* Convert from GL to hardware coordinates:
234 */
235 dsty = dPriv->y + (dPriv->h - dsty - height);
236 dstx = dPriv->x + dstx;
237
238 dest_rect.x1 = dstx < 0 ? 0 : dstx;
239 dest_rect.y1 = dsty < 0 ? 0 : dsty;
240 dest_rect.x2 = dstx + width < 0 ? 0 : dstx + width;
241 dest_rect.y2 = dsty + height < 0 ? 0 : dsty + height;
242
243 for (i = 0; i < nbox; i++) {
244 drm_clip_rect_t rect;
245 int box_w, box_h;
246 GLint px, py;
247 GLuint stipple[32];
248
249 if (!intel_intersect_cliprects(&rect, &dest_rect, &box[i]))
250 continue;
251
252 /* Now go back to GL coordinates to figure out what subset of
253 * the bitmap we are uploading for this cliprect:
254 */
255 box_w = rect.x2 - rect.x1;
256 box_h = rect.y2 - rect.y1;
257 srcx = rect.x1 - orig_screen_x1;
258 srcy = orig_screen_y2 - rect.y2;
259
260
261 #define DY 32
262 #define DX 32
263
264 /* Then, finally, chop it all into chunks that can be
265 * digested by hardware:
266 */
267 for (py = 0; py < box_h; py += DY) {
268 for (px = 0; px < box_w; px += DX) {
269 int h = MIN2(DY, box_h - py);
270 int w = MIN2(DX, box_w - px);
271 GLuint sz = align(align(w,8) * h, 64)/8;
272 GLenum logic_op = ctx->Color.ColorLogicOpEnabled ?
273 ctx->Color.LogicOp : GL_COPY;
274
275 assert(sz <= sizeof(stipple));
276 memset(stipple, 0, sz);
277
278 /* May need to adjust this when padding has been introduced in
279 * sz above:
280 */
281 if (get_bitmap_rect(width, height, unpack,
282 bitmap,
283 srcx + px, srcy + py, w, h,
284 (GLubyte *)stipple,
285 8,
286 GL_TRUE) == 0)
287 continue;
288
289 /*
290 */
291 intelEmitImmediateColorExpandBlit( intel,
292 dst->cpp,
293 (GLubyte *)stipple,
294 sz,
295 color.ui,
296 dst->pitch,
297 dst->buffer,
298 0,
299 dst->tiled,
300 rect.x1 + px,
301 rect.y2 - (py + h),
302 w, h,
303 logic_op);
304 }
305 }
306 }
307 intel->need_flush = GL_TRUE;
308 out:
309 intel_batchbuffer_flush(intel->batch);
310 }
311 UNLOCK_HARDWARE(intel);
312
313
314 if (unpack->BufferObj->Name) {
315 /* done with PBO so unmap it now */
316 ctx->Driver.UnmapBuffer(ctx, GL_PIXEL_UNPACK_BUFFER_EXT,
317 unpack->BufferObj);
318 }
319
320 return GL_TRUE;
321 }
322
323
324
325
326
327 /* There are a large number of possible ways to implement bitmap on
328 * this hardware, most of them have some sort of drawback. Here are a
329 * few that spring to mind:
330 *
331 * Blit:
332 * - XY_MONO_SRC_BLT_CMD
333 * - use XY_SETUP_CLIP_BLT for cliprect clipping.
334 * - XY_TEXT_BLT
335 * - XY_TEXT_IMMEDIATE_BLT
336 * - blit per cliprect, subject to maximum immediate data size.
337 * - XY_COLOR_BLT
338 * - per pixel or run of pixels
339 * - XY_PIXEL_BLT
340 * - good for sparse bitmaps
341 *
342 * 3D engine:
343 * - Point per pixel
344 * - Translate bitmap to an alpha texture and render as a quad
345 * - Chop bitmap up into 32x32 squares and render w/polygon stipple.
346 */
347 void
348 intelBitmap(GLcontext * ctx,
349 GLint x, GLint y,
350 GLsizei width, GLsizei height,
351 const struct gl_pixelstore_attrib *unpack,
352 const GLubyte * pixels)
353 {
354 if (do_blit_bitmap(ctx, x, y, width, height,
355 unpack, pixels))
356 return;
357
358 if (INTEL_DEBUG & DEBUG_PIXEL)
359 _mesa_printf("%s: fallback to swrast\n", __FUNCTION__);
360
361 _swrast_Bitmap(ctx, x, y, width, height, unpack, pixels);
362 }