OSDN Git Service

i965: Add support for NV_conditional_render.
[android-x86/external-mesa.git] / src / mesa / drivers / dri / intel / 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 "main/glheader.h"
29 #include "main/enums.h"
30 #include "main/image.h"
31 #include "main/colormac.h"
32 #include "main/condrender.h"
33 #include "main/mtypes.h"
34 #include "main/macros.h"
35 #include "main/pbo.h"
36 #include "main/bufferobj.h"
37 #include "main/state.h"
38 #include "main/texobj.h"
39 #include "main/context.h"
40 #include "swrast/swrast.h"
41 #include "drivers/common/meta.h"
42
43 #include "intel_screen.h"
44 #include "intel_context.h"
45 #include "intel_batchbuffer.h"
46 #include "intel_blit.h"
47 #include "intel_regions.h"
48 #include "intel_buffers.h"
49 #include "intel_pixel.h"
50 #include "intel_reg.h"
51
52
53 #define FILE_DEBUG_FLAG DEBUG_PIXEL
54
55
56 /* Unlike the other intel_pixel_* functions, the expectation here is
57  * that the incoming data is not in a PBO.  With the XY_TEXT blit
58  * method, there's no benefit haveing it in a PBO, but we could
59  * implement a path based on XY_MONO_SRC_COPY_BLIT which might benefit
60  * PBO bitmaps.  I think they are probably pretty rare though - I
61  * wonder if Xgl uses them?
62  */
63 static const GLubyte *map_pbo( struct gl_context *ctx,
64                                GLsizei width, GLsizei height,
65                                const struct gl_pixelstore_attrib *unpack,
66                                const GLubyte *bitmap )
67 {
68    GLubyte *buf;
69
70    if (!_mesa_validate_pbo_access(2, unpack, width, height, 1,
71                                   GL_COLOR_INDEX, GL_BITMAP,
72                                   (GLvoid *) bitmap)) {
73       _mesa_error(ctx, GL_INVALID_OPERATION,"glBitmap(invalid PBO access)");
74       return NULL;
75    }
76
77    buf = (GLubyte *) ctx->Driver.MapBuffer(ctx, GL_PIXEL_UNPACK_BUFFER_EXT,
78                                            GL_READ_ONLY_ARB,
79                                            unpack->BufferObj);
80    if (!buf) {
81       _mesa_error(ctx, GL_INVALID_OPERATION, "glBitmap(PBO is mapped)");
82       return NULL;
83    }
84
85    return ADD_POINTERS(buf, bitmap);
86 }
87
88 static GLboolean test_bit( const GLubyte *src, GLuint bit )
89 {
90    return (src[bit/8] & (1<<(bit % 8))) ? 1 : 0;
91 }
92
93 static void set_bit( GLubyte *dest, GLuint bit )
94 {
95    dest[bit/8] |= 1 << (bit % 8);
96 }
97
98 /* Extract a rectangle's worth of data from the bitmap.  Called
99  * per chunk of HW-sized bitmap.
100  */
101 static GLuint get_bitmap_rect(GLsizei width, GLsizei height,
102                               const struct gl_pixelstore_attrib *unpack,
103                               const GLubyte *bitmap,
104                               GLuint x, GLuint y, 
105                               GLuint w, GLuint h,
106                               GLubyte *dest,
107                               GLuint row_align,
108                               GLboolean invert)
109 {
110    GLuint src_offset = (x + unpack->SkipPixels) & 0x7;
111    GLuint mask = unpack->LsbFirst ? 0 : 7;
112    GLuint bit = 0;
113    GLint row, col;
114    GLint first, last;
115    GLint incr;
116    GLuint count = 0;
117
118    DBG("%s %d,%d %dx%d bitmap %dx%d skip %d src_offset %d mask %d\n",
119        __FUNCTION__, x,y,w,h,width,height,unpack->SkipPixels, src_offset, mask);
120
121    if (invert) {
122       first = h-1;
123       last = 0;
124       incr = -1;
125    }
126    else {
127       first = 0;
128       last = h-1;
129       incr = 1;
130    }
131
132    /* Require that dest be pre-zero'd.
133     */
134    for (row = first; row != (last+incr); row += incr) {
135       const GLubyte *rowsrc = _mesa_image_address2d(unpack, bitmap, 
136                                                     width, height, 
137                                                     GL_COLOR_INDEX, GL_BITMAP, 
138                                                     y + row, x);
139
140       for (col = 0; col < w; col++, bit++) {
141          if (test_bit(rowsrc, (col + src_offset) ^ mask)) {
142             set_bit(dest, bit ^ 7);
143             count++;
144          }
145       }
146
147       if (row_align)
148          bit = ALIGN(bit, row_align);
149    }
150
151    return count;
152 }
153
154 /**
155  * Returns the low Y value of the vertical range given, flipped according to
156  * whether the framebuffer is or not.
157  */
158 static INLINE int
159 y_flip(struct gl_framebuffer *fb, int y, int height)
160 {
161    if (fb->Name != 0)
162       return y;
163    else
164       return fb->Height - y - height;
165 }
166
167 /*
168  * Render a bitmap.
169  */
170 static GLboolean
171 do_blit_bitmap( struct gl_context *ctx, 
172                 GLint dstx, GLint dsty,
173                 GLsizei width, GLsizei height,
174                 const struct gl_pixelstore_attrib *unpack,
175                 const GLubyte *bitmap )
176 {
177    struct intel_context *intel = intel_context(ctx);
178    struct intel_region *dst = intel_drawbuf_region(intel);
179    struct gl_framebuffer *fb = ctx->DrawBuffer;
180    GLfloat tmpColor[4];
181    GLubyte ubcolor[4];
182    GLuint color;
183    GLsizei bitmap_width = width;
184    GLsizei bitmap_height = height;
185    GLint px, py;
186    GLuint stipple[32];
187    GLint orig_dstx = dstx;
188    GLint orig_dsty = dsty;
189
190    /* Update draw buffer bounds */
191    _mesa_update_state(ctx);
192
193    if (ctx->Depth.Test) {
194       /* The blit path produces incorrect results when depth testing is on.
195        * It seems the blit Z coord is always 1.0 (the far plane) so fragments
196        * will likely be obscured by other, closer geometry.
197        */
198       return GL_FALSE;
199    }
200
201    if (!dst)
202        return GL_FALSE;
203
204    if (_mesa_is_bufferobj(unpack->BufferObj)) {
205       bitmap = map_pbo(ctx, width, height, unpack, bitmap);
206       if (bitmap == NULL)
207          return GL_TRUE;        /* even though this is an error, we're done */
208    }
209
210    COPY_4V(tmpColor, ctx->Current.RasterColor);
211
212    if (_mesa_need_secondary_color(ctx)) {
213        ADD_3V(tmpColor, tmpColor, ctx->Current.RasterSecondaryColor);
214    }
215
216    UNCLAMPED_FLOAT_TO_UBYTE(ubcolor[0], tmpColor[0]);
217    UNCLAMPED_FLOAT_TO_UBYTE(ubcolor[1], tmpColor[1]);
218    UNCLAMPED_FLOAT_TO_UBYTE(ubcolor[2], tmpColor[2]);
219    UNCLAMPED_FLOAT_TO_UBYTE(ubcolor[3], tmpColor[3]);
220
221    if (dst->cpp == 2)
222       color = PACK_COLOR_565(ubcolor[0], ubcolor[1], ubcolor[2]);
223    else
224       color = PACK_COLOR_8888(ubcolor[3], ubcolor[0], ubcolor[1], ubcolor[2]);
225
226    if (!intel_check_blit_fragment_ops(ctx, tmpColor[3] == 1.0F))
227       return GL_FALSE;
228
229    intel_prepare_render(intel);
230
231    /* Clip to buffer bounds and scissor. */
232    if (!_mesa_clip_to_region(fb->_Xmin, fb->_Ymin,
233                              fb->_Xmax, fb->_Ymax,
234                              &dstx, &dsty, &width, &height))
235       goto out;
236
237    dsty = y_flip(fb, dsty, height);
238
239 #define DY 32
240 #define DX 32
241
242    /* Chop it all into chunks that can be digested by hardware: */
243    for (py = 0; py < height; py += DY) {
244       for (px = 0; px < width; px += DX) {
245          int h = MIN2(DY, height - py);
246          int w = MIN2(DX, width - px);
247          GLuint sz = ALIGN(ALIGN(w,8) * h, 64)/8;
248          GLenum logic_op = ctx->Color.ColorLogicOpEnabled ?
249             ctx->Color.LogicOp : GL_COPY;
250
251          assert(sz <= sizeof(stipple));
252          memset(stipple, 0, sz);
253
254          /* May need to adjust this when padding has been introduced in
255           * sz above:
256           *
257           * Have to translate destination coordinates back into source
258           * coordinates.
259           */
260          if (get_bitmap_rect(bitmap_width, bitmap_height, unpack,
261                              bitmap,
262                              -orig_dstx + (dstx + px),
263                              -orig_dsty + y_flip(fb, dsty + py, h),
264                              w, h,
265                              (GLubyte *)stipple,
266                              8,
267                              fb->Name == 0 ? GL_TRUE : GL_FALSE) == 0)
268             continue;
269
270          if (!intelEmitImmediateColorExpandBlit(intel,
271                                                 dst->cpp,
272                                                 (GLubyte *)stipple,
273                                                 sz,
274                                                 color,
275                                                 dst->pitch,
276                                                 dst->buffer,
277                                                 0,
278                                                 dst->tiling,
279                                                 dstx + px,
280                                                 dsty + py,
281                                                 w, h,
282                                                 logic_op)) {
283             return GL_FALSE;
284          }
285       }
286    }
287 out:
288
289    if (unlikely(INTEL_DEBUG & DEBUG_SYNC))
290       intel_batchbuffer_flush(intel);
291
292    if (_mesa_is_bufferobj(unpack->BufferObj)) {
293       /* done with PBO so unmap it now */
294       ctx->Driver.UnmapBuffer(ctx, GL_PIXEL_UNPACK_BUFFER_EXT,
295                               unpack->BufferObj);
296    }
297
298    intel_check_front_buffer_rendering(intel);
299
300    return GL_TRUE;
301 }
302
303
304 /* There are a large number of possible ways to implement bitmap on
305  * this hardware, most of them have some sort of drawback.  Here are a
306  * few that spring to mind:
307  * 
308  * Blit:
309  *    - XY_MONO_SRC_BLT_CMD
310  *         - use XY_SETUP_CLIP_BLT for cliprect clipping.
311  *    - XY_TEXT_BLT
312  *    - XY_TEXT_IMMEDIATE_BLT
313  *         - blit per cliprect, subject to maximum immediate data size.
314  *    - XY_COLOR_BLT 
315  *         - per pixel or run of pixels
316  *    - XY_PIXEL_BLT
317  *         - good for sparse bitmaps
318  *
319  * 3D engine:
320  *    - Point per pixel
321  *    - Translate bitmap to an alpha texture and render as a quad
322  *    - Chop bitmap up into 32x32 squares and render w/polygon stipple.
323  */
324 void
325 intelBitmap(struct gl_context * ctx,
326             GLint x, GLint y,
327             GLsizei width, GLsizei height,
328             const struct gl_pixelstore_attrib *unpack,
329             const GLubyte * pixels)
330 {
331    struct intel_context *intel = intel_context(ctx);
332
333    if (!_mesa_check_conditional_render(ctx))
334       return;
335
336    if (do_blit_bitmap(ctx, x, y, width, height,
337                           unpack, pixels))
338       return;
339
340    /* FIXME */
341    if (intel->gen == 6)
342        return _swrast_Bitmap(ctx, x, y, width, height, unpack, pixels);
343
344    _mesa_meta_Bitmap(ctx, x, y, width, height, unpack, pixels);
345 }