mesa: replace _mesa_bzero() with memset()
[mesa.git] / src / mesa / swrast / s_span.c
1 /*
2 * Mesa 3-D graphics library
3 * Version: 7.5
4 *
5 * Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
6 * Copyright (C) 2009 VMware, Inc. All Rights Reserved.
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included
16 * in all copies or substantial portions 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 MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
22 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
23 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26
27 /**
28 * \file swrast/s_span.c
29 * \brief Span processing functions used by all rasterization functions.
30 * This is where all the per-fragment tests are performed
31 * \author Brian Paul
32 */
33
34 #include "main/glheader.h"
35 #include "main/colormac.h"
36 #include "main/context.h"
37 #include "main/macros.h"
38 #include "main/imports.h"
39 #include "main/image.h"
40
41 #include "s_atifragshader.h"
42 #include "s_alpha.h"
43 #include "s_blend.h"
44 #include "s_context.h"
45 #include "s_depth.h"
46 #include "s_fog.h"
47 #include "s_logic.h"
48 #include "s_masking.h"
49 #include "s_fragprog.h"
50 #include "s_span.h"
51 #include "s_stencil.h"
52 #include "s_texcombine.h"
53
54
55 /**
56 * Set default fragment attributes for the span using the
57 * current raster values. Used prior to glDraw/CopyPixels
58 * and glBitmap.
59 */
60 void
61 _swrast_span_default_attribs(GLcontext *ctx, SWspan *span)
62 {
63 /* Z*/
64 {
65 const GLfloat depthMax = ctx->DrawBuffer->_DepthMaxF;
66 if (ctx->DrawBuffer->Visual.depthBits <= 16)
67 span->z = FloatToFixed(ctx->Current.RasterPos[2] * depthMax + 0.5F);
68 else {
69 GLfloat tmpf = ctx->Current.RasterPos[2] * depthMax;
70 tmpf = MIN2(tmpf, depthMax);
71 span->z = (GLint)tmpf;
72 }
73 span->zStep = 0;
74 span->interpMask |= SPAN_Z;
75 }
76
77 /* W (for perspective correction) */
78 span->attrStart[FRAG_ATTRIB_WPOS][3] = 1.0;
79 span->attrStepX[FRAG_ATTRIB_WPOS][3] = 0.0;
80 span->attrStepY[FRAG_ATTRIB_WPOS][3] = 0.0;
81
82 /* primary color, or color index */
83 if (ctx->Visual.rgbMode) {
84 GLchan r, g, b, a;
85 UNCLAMPED_FLOAT_TO_CHAN(r, ctx->Current.RasterColor[0]);
86 UNCLAMPED_FLOAT_TO_CHAN(g, ctx->Current.RasterColor[1]);
87 UNCLAMPED_FLOAT_TO_CHAN(b, ctx->Current.RasterColor[2]);
88 UNCLAMPED_FLOAT_TO_CHAN(a, ctx->Current.RasterColor[3]);
89 #if CHAN_TYPE == GL_FLOAT
90 span->red = r;
91 span->green = g;
92 span->blue = b;
93 span->alpha = a;
94 #else
95 span->red = IntToFixed(r);
96 span->green = IntToFixed(g);
97 span->blue = IntToFixed(b);
98 span->alpha = IntToFixed(a);
99 #endif
100 span->redStep = 0;
101 span->greenStep = 0;
102 span->blueStep = 0;
103 span->alphaStep = 0;
104 span->interpMask |= SPAN_RGBA;
105
106 COPY_4V(span->attrStart[FRAG_ATTRIB_COL0], ctx->Current.RasterColor);
107 ASSIGN_4V(span->attrStepX[FRAG_ATTRIB_COL0], 0.0, 0.0, 0.0, 0.0);
108 ASSIGN_4V(span->attrStepY[FRAG_ATTRIB_COL0], 0.0, 0.0, 0.0, 0.0);
109 }
110 else {
111 span->index = FloatToFixed(ctx->Current.RasterIndex);
112 span->indexStep = 0;
113 span->interpMask |= SPAN_INDEX;
114 }
115
116 /* Secondary color */
117 if (ctx->Visual.rgbMode && (ctx->Light.Enabled || ctx->Fog.ColorSumEnabled))
118 {
119 COPY_4V(span->attrStart[FRAG_ATTRIB_COL1], ctx->Current.RasterSecondaryColor);
120 ASSIGN_4V(span->attrStepX[FRAG_ATTRIB_COL1], 0.0, 0.0, 0.0, 0.0);
121 ASSIGN_4V(span->attrStepY[FRAG_ATTRIB_COL1], 0.0, 0.0, 0.0, 0.0);
122 }
123
124 /* fog */
125 {
126 const SWcontext *swrast = SWRAST_CONTEXT(ctx);
127 GLfloat fogVal; /* a coord or a blend factor */
128 if (swrast->_PreferPixelFog) {
129 /* fog blend factors will be computed from fog coordinates per pixel */
130 fogVal = ctx->Current.RasterDistance;
131 }
132 else {
133 /* fog blend factor should be computed from fogcoord now */
134 fogVal = _swrast_z_to_fogfactor(ctx, ctx->Current.RasterDistance);
135 }
136 span->attrStart[FRAG_ATTRIB_FOGC][0] = fogVal;
137 span->attrStepX[FRAG_ATTRIB_FOGC][0] = 0.0;
138 span->attrStepY[FRAG_ATTRIB_FOGC][0] = 0.0;
139 }
140
141 /* texcoords */
142 {
143 GLuint i;
144 for (i = 0; i < ctx->Const.MaxTextureCoordUnits; i++) {
145 const GLuint attr = FRAG_ATTRIB_TEX0 + i;
146 const GLfloat *tc = ctx->Current.RasterTexCoords[i];
147 if (ctx->FragmentProgram._Current || ctx->ATIFragmentShader._Enabled) {
148 COPY_4V(span->attrStart[attr], tc);
149 }
150 else if (tc[3] > 0.0F) {
151 /* use (s/q, t/q, r/q, 1) */
152 span->attrStart[attr][0] = tc[0] / tc[3];
153 span->attrStart[attr][1] = tc[1] / tc[3];
154 span->attrStart[attr][2] = tc[2] / tc[3];
155 span->attrStart[attr][3] = 1.0;
156 }
157 else {
158 ASSIGN_4V(span->attrStart[attr], 0.0F, 0.0F, 0.0F, 1.0F);
159 }
160 ASSIGN_4V(span->attrStepX[attr], 0.0F, 0.0F, 0.0F, 0.0F);
161 ASSIGN_4V(span->attrStepY[attr], 0.0F, 0.0F, 0.0F, 0.0F);
162 }
163 }
164 }
165
166
167 /**
168 * Interpolate the active attributes (and'd with attrMask) to
169 * fill in span->array->attribs[].
170 * Perspective correction will be done. The point/line/triangle function
171 * should have computed attrStart/Step values for FRAG_ATTRIB_WPOS[3]!
172 */
173 static INLINE void
174 interpolate_active_attribs(GLcontext *ctx, SWspan *span, GLbitfield attrMask)
175 {
176 const SWcontext *swrast = SWRAST_CONTEXT(ctx);
177
178 /*
179 * Don't overwrite existing array values, such as colors that may have
180 * been produced by glDraw/CopyPixels.
181 */
182 attrMask &= ~span->arrayAttribs;
183
184 ATTRIB_LOOP_BEGIN
185 if (attrMask & (1 << attr)) {
186 const GLfloat dwdx = span->attrStepX[FRAG_ATTRIB_WPOS][3];
187 GLfloat w = span->attrStart[FRAG_ATTRIB_WPOS][3];
188 const GLfloat dv0dx = span->attrStepX[attr][0];
189 const GLfloat dv1dx = span->attrStepX[attr][1];
190 const GLfloat dv2dx = span->attrStepX[attr][2];
191 const GLfloat dv3dx = span->attrStepX[attr][3];
192 GLfloat v0 = span->attrStart[attr][0] + span->leftClip * dv0dx;
193 GLfloat v1 = span->attrStart[attr][1] + span->leftClip * dv1dx;
194 GLfloat v2 = span->attrStart[attr][2] + span->leftClip * dv2dx;
195 GLfloat v3 = span->attrStart[attr][3] + span->leftClip * dv3dx;
196 GLuint k;
197 for (k = 0; k < span->end; k++) {
198 const GLfloat invW = 1.0f / w;
199 span->array->attribs[attr][k][0] = v0 * invW;
200 span->array->attribs[attr][k][1] = v1 * invW;
201 span->array->attribs[attr][k][2] = v2 * invW;
202 span->array->attribs[attr][k][3] = v3 * invW;
203 v0 += dv0dx;
204 v1 += dv1dx;
205 v2 += dv2dx;
206 v3 += dv3dx;
207 w += dwdx;
208 }
209 ASSERT((span->arrayAttribs & (1 << attr)) == 0);
210 span->arrayAttribs |= (1 << attr);
211 }
212 ATTRIB_LOOP_END
213 }
214
215
216 /**
217 * Interpolate primary colors to fill in the span->array->rgba8 (or rgb16)
218 * color array.
219 */
220 static INLINE void
221 interpolate_int_colors(GLcontext *ctx, SWspan *span)
222 {
223 const GLuint n = span->end;
224 GLuint i;
225
226 #if CHAN_BITS != 32
227 ASSERT(!(span->arrayMask & SPAN_RGBA));
228 #endif
229
230 switch (span->array->ChanType) {
231 #if CHAN_BITS != 32
232 case GL_UNSIGNED_BYTE:
233 {
234 GLubyte (*rgba)[4] = span->array->rgba8;
235 if (span->interpMask & SPAN_FLAT) {
236 GLubyte color[4];
237 color[RCOMP] = FixedToInt(span->red);
238 color[GCOMP] = FixedToInt(span->green);
239 color[BCOMP] = FixedToInt(span->blue);
240 color[ACOMP] = FixedToInt(span->alpha);
241 for (i = 0; i < n; i++) {
242 COPY_4UBV(rgba[i], color);
243 }
244 }
245 else {
246 GLfixed r = span->red;
247 GLfixed g = span->green;
248 GLfixed b = span->blue;
249 GLfixed a = span->alpha;
250 GLint dr = span->redStep;
251 GLint dg = span->greenStep;
252 GLint db = span->blueStep;
253 GLint da = span->alphaStep;
254 for (i = 0; i < n; i++) {
255 rgba[i][RCOMP] = FixedToChan(r);
256 rgba[i][GCOMP] = FixedToChan(g);
257 rgba[i][BCOMP] = FixedToChan(b);
258 rgba[i][ACOMP] = FixedToChan(a);
259 r += dr;
260 g += dg;
261 b += db;
262 a += da;
263 }
264 }
265 }
266 break;
267 case GL_UNSIGNED_SHORT:
268 {
269 GLushort (*rgba)[4] = span->array->rgba16;
270 if (span->interpMask & SPAN_FLAT) {
271 GLushort color[4];
272 color[RCOMP] = FixedToInt(span->red);
273 color[GCOMP] = FixedToInt(span->green);
274 color[BCOMP] = FixedToInt(span->blue);
275 color[ACOMP] = FixedToInt(span->alpha);
276 for (i = 0; i < n; i++) {
277 COPY_4V(rgba[i], color);
278 }
279 }
280 else {
281 GLushort (*rgba)[4] = span->array->rgba16;
282 GLfixed r, g, b, a;
283 GLint dr, dg, db, da;
284 r = span->red;
285 g = span->green;
286 b = span->blue;
287 a = span->alpha;
288 dr = span->redStep;
289 dg = span->greenStep;
290 db = span->blueStep;
291 da = span->alphaStep;
292 for (i = 0; i < n; i++) {
293 rgba[i][RCOMP] = FixedToChan(r);
294 rgba[i][GCOMP] = FixedToChan(g);
295 rgba[i][BCOMP] = FixedToChan(b);
296 rgba[i][ACOMP] = FixedToChan(a);
297 r += dr;
298 g += dg;
299 b += db;
300 a += da;
301 }
302 }
303 }
304 break;
305 #endif
306 case GL_FLOAT:
307 interpolate_active_attribs(ctx, span, FRAG_BIT_COL0);
308 break;
309 default:
310 _mesa_problem(NULL, "bad datatype in interpolate_int_colors");
311 }
312 span->arrayMask |= SPAN_RGBA;
313 }
314
315
316 /**
317 * Populate the FRAG_ATTRIB_COL0 array.
318 */
319 static INLINE void
320 interpolate_float_colors(SWspan *span)
321 {
322 GLfloat (*col0)[4] = span->array->attribs[FRAG_ATTRIB_COL0];
323 const GLuint n = span->end;
324 GLuint i;
325
326 assert(!(span->arrayAttribs & FRAG_BIT_COL0));
327
328 if (span->arrayMask & SPAN_RGBA) {
329 /* convert array of int colors */
330 for (i = 0; i < n; i++) {
331 col0[i][0] = UBYTE_TO_FLOAT(span->array->rgba8[i][0]);
332 col0[i][1] = UBYTE_TO_FLOAT(span->array->rgba8[i][1]);
333 col0[i][2] = UBYTE_TO_FLOAT(span->array->rgba8[i][2]);
334 col0[i][3] = UBYTE_TO_FLOAT(span->array->rgba8[i][3]);
335 }
336 }
337 else {
338 /* interpolate red/green/blue/alpha to get float colors */
339 ASSERT(span->interpMask & SPAN_RGBA);
340 if (span->interpMask & SPAN_FLAT) {
341 GLfloat r = FixedToFloat(span->red);
342 GLfloat g = FixedToFloat(span->green);
343 GLfloat b = FixedToFloat(span->blue);
344 GLfloat a = FixedToFloat(span->alpha);
345 for (i = 0; i < n; i++) {
346 ASSIGN_4V(col0[i], r, g, b, a);
347 }
348 }
349 else {
350 GLfloat r = FixedToFloat(span->red);
351 GLfloat g = FixedToFloat(span->green);
352 GLfloat b = FixedToFloat(span->blue);
353 GLfloat a = FixedToFloat(span->alpha);
354 GLfloat dr = FixedToFloat(span->redStep);
355 GLfloat dg = FixedToFloat(span->greenStep);
356 GLfloat db = FixedToFloat(span->blueStep);
357 GLfloat da = FixedToFloat(span->alphaStep);
358 for (i = 0; i < n; i++) {
359 col0[i][0] = r;
360 col0[i][1] = g;
361 col0[i][2] = b;
362 col0[i][3] = a;
363 r += dr;
364 g += dg;
365 b += db;
366 a += da;
367 }
368 }
369 }
370
371 span->arrayAttribs |= FRAG_BIT_COL0;
372 span->array->ChanType = GL_FLOAT;
373 }
374
375
376
377 /* Fill in the span.color.index array from the interpolation values */
378 static INLINE void
379 interpolate_indexes(GLcontext *ctx, SWspan *span)
380 {
381 GLfixed index = span->index;
382 const GLint indexStep = span->indexStep;
383 const GLuint n = span->end;
384 GLuint *indexes = span->array->index;
385 GLuint i;
386 (void) ctx;
387
388 ASSERT(!(span->arrayMask & SPAN_INDEX));
389
390 if ((span->interpMask & SPAN_FLAT) || (indexStep == 0)) {
391 /* constant color */
392 index = FixedToInt(index);
393 for (i = 0; i < n; i++) {
394 indexes[i] = index;
395 }
396 }
397 else {
398 /* interpolate */
399 for (i = 0; i < n; i++) {
400 indexes[i] = FixedToInt(index);
401 index += indexStep;
402 }
403 }
404 span->arrayMask |= SPAN_INDEX;
405 span->interpMask &= ~SPAN_INDEX;
406 }
407
408
409 /**
410 * Fill in the span.zArray array from the span->z, zStep values.
411 */
412 void
413 _swrast_span_interpolate_z( const GLcontext *ctx, SWspan *span )
414 {
415 const GLuint n = span->end;
416 GLuint i;
417
418 ASSERT(!(span->arrayMask & SPAN_Z));
419
420 if (ctx->DrawBuffer->Visual.depthBits <= 16) {
421 GLfixed zval = span->z;
422 GLuint *z = span->array->z;
423 for (i = 0; i < n; i++) {
424 z[i] = FixedToInt(zval);
425 zval += span->zStep;
426 }
427 }
428 else {
429 /* Deep Z buffer, no fixed->int shift */
430 GLuint zval = span->z;
431 GLuint *z = span->array->z;
432 for (i = 0; i < n; i++) {
433 z[i] = zval;
434 zval += span->zStep;
435 }
436 }
437 span->interpMask &= ~SPAN_Z;
438 span->arrayMask |= SPAN_Z;
439 }
440
441
442 /**
443 * Compute mipmap LOD from partial derivatives.
444 * This the ideal solution, as given in the OpenGL spec.
445 */
446 GLfloat
447 _swrast_compute_lambda(GLfloat dsdx, GLfloat dsdy, GLfloat dtdx, GLfloat dtdy,
448 GLfloat dqdx, GLfloat dqdy, GLfloat texW, GLfloat texH,
449 GLfloat s, GLfloat t, GLfloat q, GLfloat invQ)
450 {
451 GLfloat dudx = texW * ((s + dsdx) / (q + dqdx) - s * invQ);
452 GLfloat dvdx = texH * ((t + dtdx) / (q + dqdx) - t * invQ);
453 GLfloat dudy = texW * ((s + dsdy) / (q + dqdy) - s * invQ);
454 GLfloat dvdy = texH * ((t + dtdy) / (q + dqdy) - t * invQ);
455 GLfloat x = SQRTF(dudx * dudx + dvdx * dvdx);
456 GLfloat y = SQRTF(dudy * dudy + dvdy * dvdy);
457 GLfloat rho = MAX2(x, y);
458 GLfloat lambda = LOG2(rho);
459 return lambda;
460 }
461
462
463 /**
464 * Compute mipmap LOD from partial derivatives.
465 * This is a faster approximation than above function.
466 */
467 #if 0
468 GLfloat
469 _swrast_compute_lambda(GLfloat dsdx, GLfloat dsdy, GLfloat dtdx, GLfloat dtdy,
470 GLfloat dqdx, GLfloat dqdy, GLfloat texW, GLfloat texH,
471 GLfloat s, GLfloat t, GLfloat q, GLfloat invQ)
472 {
473 GLfloat dsdx2 = (s + dsdx) / (q + dqdx) - s * invQ;
474 GLfloat dtdx2 = (t + dtdx) / (q + dqdx) - t * invQ;
475 GLfloat dsdy2 = (s + dsdy) / (q + dqdy) - s * invQ;
476 GLfloat dtdy2 = (t + dtdy) / (q + dqdy) - t * invQ;
477 GLfloat maxU, maxV, rho, lambda;
478 dsdx2 = FABSF(dsdx2);
479 dsdy2 = FABSF(dsdy2);
480 dtdx2 = FABSF(dtdx2);
481 dtdy2 = FABSF(dtdy2);
482 maxU = MAX2(dsdx2, dsdy2) * texW;
483 maxV = MAX2(dtdx2, dtdy2) * texH;
484 rho = MAX2(maxU, maxV);
485 lambda = LOG2(rho);
486 return lambda;
487 }
488 #endif
489
490
491 /**
492 * Fill in the span.array->attrib[FRAG_ATTRIB_TEXn] arrays from the
493 * using the attrStart/Step values.
494 *
495 * This function only used during fixed-function fragment processing.
496 *
497 * Note: in the places where we divide by Q (or mult by invQ) we're
498 * really doing two things: perspective correction and texcoord
499 * projection. Remember, for texcoord (s,t,r,q) we need to index
500 * texels with (s/q, t/q, r/q).
501 */
502 static void
503 interpolate_texcoords(GLcontext *ctx, SWspan *span)
504 {
505 const GLuint maxUnit
506 = (ctx->Texture._EnabledCoordUnits > 1) ? ctx->Const.MaxTextureUnits : 1;
507 GLuint u;
508
509 /* XXX CoordUnits vs. ImageUnits */
510 for (u = 0; u < maxUnit; u++) {
511 if (ctx->Texture._EnabledCoordUnits & (1 << u)) {
512 const GLuint attr = FRAG_ATTRIB_TEX0 + u;
513 const struct gl_texture_object *obj = ctx->Texture.Unit[u]._Current;
514 GLfloat texW, texH;
515 GLboolean needLambda;
516 GLfloat (*texcoord)[4] = span->array->attribs[attr];
517 GLfloat *lambda = span->array->lambda[u];
518 const GLfloat dsdx = span->attrStepX[attr][0];
519 const GLfloat dsdy = span->attrStepY[attr][0];
520 const GLfloat dtdx = span->attrStepX[attr][1];
521 const GLfloat dtdy = span->attrStepY[attr][1];
522 const GLfloat drdx = span->attrStepX[attr][2];
523 const GLfloat dqdx = span->attrStepX[attr][3];
524 const GLfloat dqdy = span->attrStepY[attr][3];
525 GLfloat s = span->attrStart[attr][0] + span->leftClip * dsdx;
526 GLfloat t = span->attrStart[attr][1] + span->leftClip * dtdx;
527 GLfloat r = span->attrStart[attr][2] + span->leftClip * drdx;
528 GLfloat q = span->attrStart[attr][3] + span->leftClip * dqdx;
529
530 if (obj) {
531 const struct gl_texture_image *img = obj->Image[0][obj->BaseLevel];
532 needLambda = (obj->MinFilter != obj->MagFilter)
533 || ctx->FragmentProgram._Current;
534 texW = img->WidthScale;
535 texH = img->HeightScale;
536 }
537 else {
538 /* using a fragment program */
539 texW = 1.0;
540 texH = 1.0;
541 needLambda = GL_FALSE;
542 }
543
544 if (needLambda) {
545 GLuint i;
546 if (ctx->FragmentProgram._Current
547 || ctx->ATIFragmentShader._Enabled) {
548 /* do perspective correction but don't divide s, t, r by q */
549 const GLfloat dwdx = span->attrStepX[FRAG_ATTRIB_WPOS][3];
550 GLfloat w = span->attrStart[FRAG_ATTRIB_WPOS][3] + span->leftClip * dwdx;
551 for (i = 0; i < span->end; i++) {
552 const GLfloat invW = 1.0F / w;
553 texcoord[i][0] = s * invW;
554 texcoord[i][1] = t * invW;
555 texcoord[i][2] = r * invW;
556 texcoord[i][3] = q * invW;
557 lambda[i] = _swrast_compute_lambda(dsdx, dsdy, dtdx, dtdy,
558 dqdx, dqdy, texW, texH,
559 s, t, q, invW);
560 s += dsdx;
561 t += dtdx;
562 r += drdx;
563 q += dqdx;
564 w += dwdx;
565 }
566 }
567 else {
568 for (i = 0; i < span->end; i++) {
569 const GLfloat invQ = (q == 0.0F) ? 1.0F : (1.0F / q);
570 texcoord[i][0] = s * invQ;
571 texcoord[i][1] = t * invQ;
572 texcoord[i][2] = r * invQ;
573 texcoord[i][3] = q;
574 lambda[i] = _swrast_compute_lambda(dsdx, dsdy, dtdx, dtdy,
575 dqdx, dqdy, texW, texH,
576 s, t, q, invQ);
577 s += dsdx;
578 t += dtdx;
579 r += drdx;
580 q += dqdx;
581 }
582 }
583 span->arrayMask |= SPAN_LAMBDA;
584 }
585 else {
586 GLuint i;
587 if (ctx->FragmentProgram._Current ||
588 ctx->ATIFragmentShader._Enabled) {
589 /* do perspective correction but don't divide s, t, r by q */
590 const GLfloat dwdx = span->attrStepX[FRAG_ATTRIB_WPOS][3];
591 GLfloat w = span->attrStart[FRAG_ATTRIB_WPOS][3] + span->leftClip * dwdx;
592 for (i = 0; i < span->end; i++) {
593 const GLfloat invW = 1.0F / w;
594 texcoord[i][0] = s * invW;
595 texcoord[i][1] = t * invW;
596 texcoord[i][2] = r * invW;
597 texcoord[i][3] = q * invW;
598 lambda[i] = 0.0;
599 s += dsdx;
600 t += dtdx;
601 r += drdx;
602 q += dqdx;
603 w += dwdx;
604 }
605 }
606 else if (dqdx == 0.0F) {
607 /* Ortho projection or polygon's parallel to window X axis */
608 const GLfloat invQ = (q == 0.0F) ? 1.0F : (1.0F / q);
609 for (i = 0; i < span->end; i++) {
610 texcoord[i][0] = s * invQ;
611 texcoord[i][1] = t * invQ;
612 texcoord[i][2] = r * invQ;
613 texcoord[i][3] = q;
614 lambda[i] = 0.0;
615 s += dsdx;
616 t += dtdx;
617 r += drdx;
618 }
619 }
620 else {
621 for (i = 0; i < span->end; i++) {
622 const GLfloat invQ = (q == 0.0F) ? 1.0F : (1.0F / q);
623 texcoord[i][0] = s * invQ;
624 texcoord[i][1] = t * invQ;
625 texcoord[i][2] = r * invQ;
626 texcoord[i][3] = q;
627 lambda[i] = 0.0;
628 s += dsdx;
629 t += dtdx;
630 r += drdx;
631 q += dqdx;
632 }
633 }
634 } /* lambda */
635 } /* if */
636 } /* for */
637 }
638
639
640 /**
641 * Fill in the arrays->attribs[FRAG_ATTRIB_WPOS] array.
642 */
643 static INLINE void
644 interpolate_wpos(GLcontext *ctx, SWspan *span)
645 {
646 GLfloat (*wpos)[4] = span->array->attribs[FRAG_ATTRIB_WPOS];
647 GLuint i;
648 const GLfloat zScale = 1.0F / ctx->DrawBuffer->_DepthMaxF;
649 GLfloat w, dw;
650
651 if (span->arrayMask & SPAN_XY) {
652 for (i = 0; i < span->end; i++) {
653 wpos[i][0] = (GLfloat) span->array->x[i];
654 wpos[i][1] = (GLfloat) span->array->y[i];
655 }
656 }
657 else {
658 for (i = 0; i < span->end; i++) {
659 wpos[i][0] = (GLfloat) span->x + i;
660 wpos[i][1] = (GLfloat) span->y;
661 }
662 }
663
664 dw = span->attrStepX[FRAG_ATTRIB_WPOS][3];
665 w = span->attrStart[FRAG_ATTRIB_WPOS][3] + span->leftClip * dw;
666 for (i = 0; i < span->end; i++) {
667 wpos[i][2] = (GLfloat) span->array->z[i] * zScale;
668 wpos[i][3] = w;
669 w += dw;
670 }
671 }
672
673
674 /**
675 * Apply the current polygon stipple pattern to a span of pixels.
676 */
677 static INLINE void
678 stipple_polygon_span(GLcontext *ctx, SWspan *span)
679 {
680 GLubyte *mask = span->array->mask;
681
682 ASSERT(ctx->Polygon.StippleFlag);
683
684 if (span->arrayMask & SPAN_XY) {
685 /* arrays of x/y pixel coords */
686 GLuint i;
687 for (i = 0; i < span->end; i++) {
688 const GLint col = span->array->x[i] % 32;
689 const GLint row = span->array->y[i] % 32;
690 const GLuint stipple = ctx->PolygonStipple[row];
691 if (((1 << col) & stipple) == 0) {
692 mask[i] = 0;
693 }
694 }
695 }
696 else {
697 /* horizontal span of pixels */
698 const GLuint highBit = 1 << 31;
699 const GLuint stipple = ctx->PolygonStipple[span->y % 32];
700 GLuint i, m = highBit >> (GLuint) (span->x % 32);
701 for (i = 0; i < span->end; i++) {
702 if ((m & stipple) == 0) {
703 mask[i] = 0;
704 }
705 m = m >> 1;
706 if (m == 0) {
707 m = highBit;
708 }
709 }
710 }
711 span->writeAll = GL_FALSE;
712 }
713
714
715 /**
716 * Clip a pixel span to the current buffer/window boundaries:
717 * DrawBuffer->_Xmin, _Xmax, _Ymin, _Ymax. This will accomplish
718 * window clipping and scissoring.
719 * Return: GL_TRUE some pixels still visible
720 * GL_FALSE nothing visible
721 */
722 static INLINE GLuint
723 clip_span( GLcontext *ctx, SWspan *span )
724 {
725 const GLint xmin = ctx->DrawBuffer->_Xmin;
726 const GLint xmax = ctx->DrawBuffer->_Xmax;
727 const GLint ymin = ctx->DrawBuffer->_Ymin;
728 const GLint ymax = ctx->DrawBuffer->_Ymax;
729
730 span->leftClip = 0;
731
732 if (span->arrayMask & SPAN_XY) {
733 /* arrays of x/y pixel coords */
734 const GLint *x = span->array->x;
735 const GLint *y = span->array->y;
736 const GLint n = span->end;
737 GLubyte *mask = span->array->mask;
738 GLint i;
739 if (span->arrayMask & SPAN_MASK) {
740 /* note: using & intead of && to reduce branches */
741 for (i = 0; i < n; i++) {
742 mask[i] &= (x[i] >= xmin) & (x[i] < xmax)
743 & (y[i] >= ymin) & (y[i] < ymax);
744 }
745 }
746 else {
747 /* note: using & intead of && to reduce branches */
748 for (i = 0; i < n; i++) {
749 mask[i] = (x[i] >= xmin) & (x[i] < xmax)
750 & (y[i] >= ymin) & (y[i] < ymax);
751 }
752 }
753 return GL_TRUE; /* some pixels visible */
754 }
755 else {
756 /* horizontal span of pixels */
757 const GLint x = span->x;
758 const GLint y = span->y;
759 GLint n = span->end;
760
761 /* Trivial rejection tests */
762 if (y < ymin || y >= ymax || x + n <= xmin || x >= xmax) {
763 span->end = 0;
764 return GL_FALSE; /* all pixels clipped */
765 }
766
767 /* Clip to right */
768 if (x + n > xmax) {
769 ASSERT(x < xmax);
770 n = span->end = xmax - x;
771 }
772
773 /* Clip to the left */
774 if (x < xmin) {
775 const GLint leftClip = xmin - x;
776 GLuint i;
777
778 ASSERT(leftClip > 0);
779 ASSERT(x + n > xmin);
780
781 /* Clip 'leftClip' pixels from the left side.
782 * The span->leftClip field will be applied when we interpolate
783 * fragment attributes.
784 * For arrays of values, shift them left.
785 */
786 for (i = 0; i < FRAG_ATTRIB_MAX; i++) {
787 if (span->interpMask & (1 << i)) {
788 GLuint j;
789 for (j = 0; j < 4; j++) {
790 span->attrStart[i][j] += leftClip * span->attrStepX[i][j];
791 }
792 }
793 }
794
795 span->red += leftClip * span->redStep;
796 span->green += leftClip * span->greenStep;
797 span->blue += leftClip * span->blueStep;
798 span->alpha += leftClip * span->alphaStep;
799 span->index += leftClip * span->indexStep;
800 span->z += leftClip * span->zStep;
801 span->intTex[0] += leftClip * span->intTexStep[0];
802 span->intTex[1] += leftClip * span->intTexStep[1];
803
804 #define SHIFT_ARRAY(ARRAY, SHIFT, LEN) \
805 memcpy(ARRAY, ARRAY + (SHIFT), (LEN) * sizeof(ARRAY[0]))
806
807 for (i = 0; i < FRAG_ATTRIB_MAX; i++) {
808 if (span->arrayAttribs & (1 << i)) {
809 /* shift array elements left by 'leftClip' */
810 SHIFT_ARRAY(span->array->attribs[i], leftClip, n - leftClip);
811 }
812 }
813
814 SHIFT_ARRAY(span->array->mask, leftClip, n - leftClip);
815 SHIFT_ARRAY(span->array->rgba8, leftClip, n - leftClip);
816 SHIFT_ARRAY(span->array->rgba16, leftClip, n - leftClip);
817 SHIFT_ARRAY(span->array->x, leftClip, n - leftClip);
818 SHIFT_ARRAY(span->array->y, leftClip, n - leftClip);
819 SHIFT_ARRAY(span->array->z, leftClip, n - leftClip);
820 SHIFT_ARRAY(span->array->index, leftClip, n - leftClip);
821 for (i = 0; i < MAX_TEXTURE_COORD_UNITS; i++) {
822 SHIFT_ARRAY(span->array->lambda[i], leftClip, n - leftClip);
823 }
824 SHIFT_ARRAY(span->array->coverage, leftClip, n - leftClip);
825
826 #undef SHIFT_ARRAY
827
828 span->leftClip = leftClip;
829 span->x = xmin;
830 span->end -= leftClip;
831 span->writeAll = GL_FALSE;
832 }
833
834 ASSERT(span->x >= xmin);
835 ASSERT(span->x + span->end <= xmax);
836 ASSERT(span->y >= ymin);
837 ASSERT(span->y < ymax);
838
839 return GL_TRUE; /* some pixels visible */
840 }
841 }
842
843
844 /**
845 * Apply all the per-fragment opertions to a span of color index fragments
846 * and write them to the enabled color drawbuffers.
847 * The 'span' parameter can be considered to be const. Note that
848 * span->interpMask and span->arrayMask may be changed but will be restored
849 * to their original values before returning.
850 */
851 void
852 _swrast_write_index_span( GLcontext *ctx, SWspan *span)
853 {
854 const SWcontext *swrast = SWRAST_CONTEXT(ctx);
855 const GLbitfield origInterpMask = span->interpMask;
856 const GLbitfield origArrayMask = span->arrayMask;
857 struct gl_framebuffer *fb = ctx->DrawBuffer;
858
859 ASSERT(span->end <= MAX_WIDTH);
860 ASSERT(span->primitive == GL_POINT || span->primitive == GL_LINE ||
861 span->primitive == GL_POLYGON || span->primitive == GL_BITMAP);
862 ASSERT((span->interpMask | span->arrayMask) & SPAN_INDEX);
863 /*
864 ASSERT((span->interpMask & span->arrayMask) == 0);
865 */
866
867 if (span->arrayMask & SPAN_MASK) {
868 /* mask was initialized by caller, probably glBitmap */
869 span->writeAll = GL_FALSE;
870 }
871 else {
872 memset(span->array->mask, 1, span->end);
873 span->writeAll = GL_TRUE;
874 }
875
876 /* Clipping */
877 if ((swrast->_RasterMask & CLIP_BIT) || (span->primitive != GL_POLYGON)) {
878 if (!clip_span(ctx, span)) {
879 return;
880 }
881 }
882
883 if (!(span->arrayMask & SPAN_MASK)) {
884 /* post-clip sanity check */
885 assert(span->x >= 0);
886 assert(span->y >= 0);
887 }
888
889 /* Depth bounds test */
890 if (ctx->Depth.BoundsTest && fb->Visual.depthBits > 0) {
891 if (!_swrast_depth_bounds_test(ctx, span)) {
892 return;
893 }
894 }
895
896 #ifdef DEBUG
897 /* Make sure all fragments are within window bounds */
898 if (span->arrayMask & SPAN_XY) {
899 GLuint i;
900 for (i = 0; i < span->end; i++) {
901 if (span->array->mask[i]) {
902 assert(span->array->x[i] >= fb->_Xmin);
903 assert(span->array->x[i] < fb->_Xmax);
904 assert(span->array->y[i] >= fb->_Ymin);
905 assert(span->array->y[i] < fb->_Ymax);
906 }
907 }
908 }
909 #endif
910
911 /* Polygon Stippling */
912 if (ctx->Polygon.StippleFlag && span->primitive == GL_POLYGON) {
913 stipple_polygon_span(ctx, span);
914 }
915
916 /* Stencil and Z testing */
917 if (ctx->Stencil._Enabled || ctx->Depth.Test) {
918 if (!(span->arrayMask & SPAN_Z))
919 _swrast_span_interpolate_z(ctx, span);
920
921 if (ctx->Transform.DepthClamp)
922 _swrast_depth_clamp_span(ctx, span);
923
924 if (ctx->Stencil._Enabled) {
925 if (!_swrast_stencil_and_ztest_span(ctx, span)) {
926 span->arrayMask = origArrayMask;
927 return;
928 }
929 }
930 else {
931 ASSERT(ctx->Depth.Test);
932 if (!_swrast_depth_test_span(ctx, span)) {
933 span->interpMask = origInterpMask;
934 span->arrayMask = origArrayMask;
935 return;
936 }
937 }
938 }
939
940 if (ctx->Query.CurrentOcclusionObject) {
941 /* update count of 'passed' fragments */
942 struct gl_query_object *q = ctx->Query.CurrentOcclusionObject;
943 GLuint i;
944 for (i = 0; i < span->end; i++)
945 q->Result += span->array->mask[i];
946 }
947
948 /* we have to wait until after occlusion to do this test */
949 if (ctx->Color.IndexMask == 0) {
950 /* write no pixels */
951 span->arrayMask = origArrayMask;
952 return;
953 }
954
955 /* Interpolate the color indexes if needed */
956 if (swrast->_FogEnabled ||
957 ctx->Color.IndexLogicOpEnabled ||
958 ctx->Color.IndexMask != 0xffffffff ||
959 (span->arrayMask & SPAN_COVERAGE)) {
960 if (!(span->arrayMask & SPAN_INDEX) /*span->interpMask & SPAN_INDEX*/) {
961 interpolate_indexes(ctx, span);
962 }
963 }
964
965 /* Fog */
966 if (swrast->_FogEnabled) {
967 _swrast_fog_ci_span(ctx, span);
968 }
969
970 /* Antialias coverage application */
971 if (span->arrayMask & SPAN_COVERAGE) {
972 const GLfloat *coverage = span->array->coverage;
973 GLuint *index = span->array->index;
974 GLuint i;
975 for (i = 0; i < span->end; i++) {
976 ASSERT(coverage[i] < 16);
977 index[i] = (index[i] & ~0xf) | ((GLuint) coverage[i]);
978 }
979 }
980
981 /*
982 * Write to renderbuffers
983 */
984 {
985 const GLuint numBuffers = fb->_NumColorDrawBuffers;
986 GLuint buf;
987
988 for (buf = 0; buf < numBuffers; buf++) {
989 struct gl_renderbuffer *rb = fb->_ColorDrawBuffers[buf];
990 GLuint indexSave[MAX_WIDTH];
991
992 ASSERT(rb->_BaseFormat == GL_COLOR_INDEX);
993
994 if (numBuffers > 1) {
995 /* save indexes for second, third renderbuffer writes */
996 memcpy(indexSave, span->array->index,
997 span->end * sizeof(indexSave[0]));
998 }
999
1000 if (ctx->Color.IndexLogicOpEnabled) {
1001 _swrast_logicop_ci_span(ctx, rb, span);
1002 }
1003
1004 if (ctx->Color.IndexMask != 0xffffffff) {
1005 _swrast_mask_ci_span(ctx, rb, span);
1006 }
1007
1008 if (!(span->arrayMask & SPAN_INDEX) && span->indexStep == 0) {
1009 /* all fragments have same color index */
1010 GLubyte index8;
1011 GLushort index16;
1012 GLuint index32;
1013 void *value;
1014
1015 if (rb->DataType == GL_UNSIGNED_BYTE) {
1016 index8 = FixedToInt(span->index);
1017 value = &index8;
1018 }
1019 else if (rb->DataType == GL_UNSIGNED_SHORT) {
1020 index16 = FixedToInt(span->index);
1021 value = &index16;
1022 }
1023 else {
1024 ASSERT(rb->DataType == GL_UNSIGNED_INT);
1025 index32 = FixedToInt(span->index);
1026 value = &index32;
1027 }
1028
1029 if (span->arrayMask & SPAN_XY) {
1030 rb->PutMonoValues(ctx, rb, span->end, span->array->x,
1031 span->array->y, value, span->array->mask);
1032 }
1033 else {
1034 rb->PutMonoRow(ctx, rb, span->end, span->x, span->y,
1035 value, span->array->mask);
1036 }
1037 }
1038 else {
1039 /* each fragment is a different color */
1040 GLubyte index8[MAX_WIDTH];
1041 GLushort index16[MAX_WIDTH];
1042 void *values;
1043
1044 if (rb->DataType == GL_UNSIGNED_BYTE) {
1045 GLuint k;
1046 for (k = 0; k < span->end; k++) {
1047 index8[k] = (GLubyte) span->array->index[k];
1048 }
1049 values = index8;
1050 }
1051 else if (rb->DataType == GL_UNSIGNED_SHORT) {
1052 GLuint k;
1053 for (k = 0; k < span->end; k++) {
1054 index16[k] = (GLushort) span->array->index[k];
1055 }
1056 values = index16;
1057 }
1058 else {
1059 ASSERT(rb->DataType == GL_UNSIGNED_INT);
1060 values = span->array->index;
1061 }
1062
1063 if (span->arrayMask & SPAN_XY) {
1064 rb->PutValues(ctx, rb, span->end,
1065 span->array->x, span->array->y,
1066 values, span->array->mask);
1067 }
1068 else {
1069 rb->PutRow(ctx, rb, span->end, span->x, span->y,
1070 values, span->array->mask);
1071 }
1072 }
1073
1074 if (buf + 1 < numBuffers) {
1075 /* restore original span values */
1076 memcpy(span->array->index, indexSave,
1077 span->end * sizeof(indexSave[0]));
1078 }
1079 } /* for buf */
1080 }
1081
1082 span->interpMask = origInterpMask;
1083 span->arrayMask = origArrayMask;
1084 }
1085
1086
1087 /**
1088 * Add specular colors to primary colors.
1089 * Only called during fixed-function operation.
1090 * Result is float color array (FRAG_ATTRIB_COL0).
1091 */
1092 static INLINE void
1093 add_specular(GLcontext *ctx, SWspan *span)
1094 {
1095 const SWcontext *swrast = SWRAST_CONTEXT(ctx);
1096 const GLubyte *mask = span->array->mask;
1097 GLfloat (*col0)[4] = span->array->attribs[FRAG_ATTRIB_COL0];
1098 GLfloat (*col1)[4] = span->array->attribs[FRAG_ATTRIB_COL1];
1099 GLuint i;
1100
1101 ASSERT(!ctx->FragmentProgram._Current);
1102 ASSERT(span->arrayMask & SPAN_RGBA);
1103 ASSERT(swrast->_ActiveAttribMask & FRAG_BIT_COL1);
1104 (void) swrast; /* silence warning */
1105
1106 if (span->array->ChanType == GL_FLOAT) {
1107 if ((span->arrayAttribs & FRAG_BIT_COL0) == 0) {
1108 interpolate_active_attribs(ctx, span, FRAG_BIT_COL0);
1109 }
1110 }
1111 else {
1112 /* need float colors */
1113 if ((span->arrayAttribs & FRAG_BIT_COL0) == 0) {
1114 interpolate_float_colors(span);
1115 }
1116 }
1117
1118 if ((span->arrayAttribs & FRAG_BIT_COL1) == 0) {
1119 /* XXX could avoid this and interpolate COL1 in the loop below */
1120 interpolate_active_attribs(ctx, span, FRAG_BIT_COL1);
1121 }
1122
1123 ASSERT(span->arrayAttribs & FRAG_BIT_COL0);
1124 ASSERT(span->arrayAttribs & FRAG_BIT_COL1);
1125
1126 for (i = 0; i < span->end; i++) {
1127 if (mask[i]) {
1128 col0[i][0] += col1[i][0];
1129 col0[i][1] += col1[i][1];
1130 col0[i][2] += col1[i][2];
1131 }
1132 }
1133
1134 span->array->ChanType = GL_FLOAT;
1135 }
1136
1137
1138 /**
1139 * Apply antialiasing coverage value to alpha values.
1140 */
1141 static INLINE void
1142 apply_aa_coverage(SWspan *span)
1143 {
1144 const GLfloat *coverage = span->array->coverage;
1145 GLuint i;
1146 if (span->array->ChanType == GL_UNSIGNED_BYTE) {
1147 GLubyte (*rgba)[4] = span->array->rgba8;
1148 for (i = 0; i < span->end; i++) {
1149 const GLfloat a = rgba[i][ACOMP] * coverage[i];
1150 rgba[i][ACOMP] = (GLubyte) CLAMP(a, 0.0, 255.0);
1151 ASSERT(coverage[i] >= 0.0);
1152 ASSERT(coverage[i] <= 1.0);
1153 }
1154 }
1155 else if (span->array->ChanType == GL_UNSIGNED_SHORT) {
1156 GLushort (*rgba)[4] = span->array->rgba16;
1157 for (i = 0; i < span->end; i++) {
1158 const GLfloat a = rgba[i][ACOMP] * coverage[i];
1159 rgba[i][ACOMP] = (GLushort) CLAMP(a, 0.0, 65535.0);
1160 }
1161 }
1162 else {
1163 GLfloat (*rgba)[4] = span->array->attribs[FRAG_ATTRIB_COL0];
1164 for (i = 0; i < span->end; i++) {
1165 rgba[i][ACOMP] = rgba[i][ACOMP] * coverage[i];
1166 /* clamp later */
1167 }
1168 }
1169 }
1170
1171
1172 /**
1173 * Clamp span's float colors to [0,1]
1174 */
1175 static INLINE void
1176 clamp_colors(SWspan *span)
1177 {
1178 GLfloat (*rgba)[4] = span->array->attribs[FRAG_ATTRIB_COL0];
1179 GLuint i;
1180 ASSERT(span->array->ChanType == GL_FLOAT);
1181 for (i = 0; i < span->end; i++) {
1182 rgba[i][RCOMP] = CLAMP(rgba[i][RCOMP], 0.0F, 1.0F);
1183 rgba[i][GCOMP] = CLAMP(rgba[i][GCOMP], 0.0F, 1.0F);
1184 rgba[i][BCOMP] = CLAMP(rgba[i][BCOMP], 0.0F, 1.0F);
1185 rgba[i][ACOMP] = CLAMP(rgba[i][ACOMP], 0.0F, 1.0F);
1186 }
1187 }
1188
1189
1190 /**
1191 * Convert the span's color arrays to the given type.
1192 * The only way 'output' can be greater than zero is when we have a fragment
1193 * program that writes to gl_FragData[1] or higher.
1194 * \param output which fragment program color output is being processed
1195 */
1196 static INLINE void
1197 convert_color_type(SWspan *span, GLenum newType, GLuint output)
1198 {
1199 GLvoid *src, *dst;
1200
1201 if (output > 0 || span->array->ChanType == GL_FLOAT) {
1202 src = span->array->attribs[FRAG_ATTRIB_COL0 + output];
1203 span->array->ChanType = GL_FLOAT;
1204 }
1205 else if (span->array->ChanType == GL_UNSIGNED_BYTE) {
1206 src = span->array->rgba8;
1207 }
1208 else {
1209 ASSERT(span->array->ChanType == GL_UNSIGNED_SHORT);
1210 src = span->array->rgba16;
1211 }
1212
1213 if (newType == GL_UNSIGNED_BYTE) {
1214 dst = span->array->rgba8;
1215 }
1216 else if (newType == GL_UNSIGNED_SHORT) {
1217 dst = span->array->rgba16;
1218 }
1219 else {
1220 dst = span->array->attribs[FRAG_ATTRIB_COL0];
1221 }
1222
1223 _mesa_convert_colors(span->array->ChanType, src,
1224 newType, dst,
1225 span->end, span->array->mask);
1226
1227 span->array->ChanType = newType;
1228 span->array->rgba = dst;
1229 }
1230
1231
1232
1233 /**
1234 * Apply fragment shader, fragment program or normal texturing to span.
1235 */
1236 static INLINE void
1237 shade_texture_span(GLcontext *ctx, SWspan *span)
1238 {
1239 GLbitfield inputsRead;
1240
1241 /* Determine which fragment attributes are actually needed */
1242 if (ctx->FragmentProgram._Current) {
1243 inputsRead = ctx->FragmentProgram._Current->Base.InputsRead;
1244 }
1245 else {
1246 /* XXX we could be a bit smarter about this */
1247 inputsRead = ~0;
1248 }
1249
1250 if (ctx->FragmentProgram._Current ||
1251 ctx->ATIFragmentShader._Enabled) {
1252 /* programmable shading */
1253 if (span->primitive == GL_BITMAP && span->array->ChanType != GL_FLOAT) {
1254 convert_color_type(span, GL_FLOAT, 0);
1255 }
1256 if (span->primitive != GL_POINT ||
1257 (span->interpMask & SPAN_RGBA) ||
1258 ctx->Point.PointSprite) {
1259 /* for single-pixel points, we populated the arrays already */
1260 interpolate_active_attribs(ctx, span, ~0);
1261 }
1262 span->array->ChanType = GL_FLOAT;
1263
1264 if (!(span->arrayMask & SPAN_Z))
1265 _swrast_span_interpolate_z (ctx, span);
1266
1267 #if 0
1268 if (inputsRead & FRAG_BIT_WPOS)
1269 #else
1270 /* XXX always interpolate wpos so that DDX/DDY work */
1271 #endif
1272 interpolate_wpos(ctx, span);
1273
1274 /* Run fragment program/shader now */
1275 if (ctx->FragmentProgram._Current) {
1276 _swrast_exec_fragment_program(ctx, span);
1277 }
1278 else {
1279 ASSERT(ctx->ATIFragmentShader._Enabled);
1280 _swrast_exec_fragment_shader(ctx, span);
1281 }
1282 }
1283 else if (ctx->Texture._EnabledCoordUnits) {
1284 /* conventional texturing */
1285
1286 #if CHAN_BITS == 32
1287 if ((span->arrayAttribs & FRAG_BIT_COL0) == 0) {
1288 interpolate_int_colors(ctx, span);
1289 }
1290 #else
1291 if (!(span->arrayMask & SPAN_RGBA))
1292 interpolate_int_colors(ctx, span);
1293 #endif
1294 if ((span->arrayAttribs & FRAG_BITS_TEX_ANY) == 0x0)
1295 interpolate_texcoords(ctx, span);
1296
1297 _swrast_texture_span(ctx, span);
1298 }
1299 }
1300
1301
1302
1303 /**
1304 * Apply all the per-fragment operations to a span.
1305 * This now includes texturing (_swrast_write_texture_span() is history).
1306 * This function may modify any of the array values in the span.
1307 * span->interpMask and span->arrayMask may be changed but will be restored
1308 * to their original values before returning.
1309 */
1310 void
1311 _swrast_write_rgba_span( GLcontext *ctx, SWspan *span)
1312 {
1313 const SWcontext *swrast = SWRAST_CONTEXT(ctx);
1314 const GLuint *colorMask = (GLuint *) ctx->Color.ColorMask;
1315 const GLbitfield origInterpMask = span->interpMask;
1316 const GLbitfield origArrayMask = span->arrayMask;
1317 const GLbitfield origArrayAttribs = span->arrayAttribs;
1318 const GLenum origChanType = span->array->ChanType;
1319 void * const origRgba = span->array->rgba;
1320 const GLboolean shader = (ctx->FragmentProgram._Current
1321 || ctx->ATIFragmentShader._Enabled);
1322 const GLboolean shaderOrTexture = shader || ctx->Texture._EnabledCoordUnits;
1323 struct gl_framebuffer *fb = ctx->DrawBuffer;
1324
1325 /*
1326 printf("%s() interp 0x%x array 0x%x\n", __FUNCTION__,
1327 span->interpMask, span->arrayMask);
1328 */
1329
1330 ASSERT(span->primitive == GL_POINT ||
1331 span->primitive == GL_LINE ||
1332 span->primitive == GL_POLYGON ||
1333 span->primitive == GL_BITMAP);
1334
1335 /* Fragment write masks */
1336 if (span->arrayMask & SPAN_MASK) {
1337 /* mask was initialized by caller, probably glBitmap */
1338 span->writeAll = GL_FALSE;
1339 }
1340 else {
1341 memset(span->array->mask, 1, span->end);
1342 span->writeAll = GL_TRUE;
1343 }
1344
1345 /* Clip to window/scissor box */
1346 if (!clip_span(ctx, span)) {
1347 return;
1348 }
1349
1350 ASSERT(span->end <= MAX_WIDTH);
1351
1352 /* Depth bounds test */
1353 if (ctx->Depth.BoundsTest && fb->Visual.depthBits > 0) {
1354 if (!_swrast_depth_bounds_test(ctx, span)) {
1355 return;
1356 }
1357 }
1358
1359 #ifdef DEBUG
1360 /* Make sure all fragments are within window bounds */
1361 if (span->arrayMask & SPAN_XY) {
1362 /* array of pixel locations */
1363 GLuint i;
1364 for (i = 0; i < span->end; i++) {
1365 if (span->array->mask[i]) {
1366 assert(span->array->x[i] >= fb->_Xmin);
1367 assert(span->array->x[i] < fb->_Xmax);
1368 assert(span->array->y[i] >= fb->_Ymin);
1369 assert(span->array->y[i] < fb->_Ymax);
1370 }
1371 }
1372 }
1373 #endif
1374
1375 /* Polygon Stippling */
1376 if (ctx->Polygon.StippleFlag && span->primitive == GL_POLYGON) {
1377 stipple_polygon_span(ctx, span);
1378 }
1379
1380 /* This is the normal place to compute the fragment color/Z
1381 * from texturing or shading.
1382 */
1383 if (shaderOrTexture && !swrast->_DeferredTexture) {
1384 shade_texture_span(ctx, span);
1385 }
1386
1387 /* Do the alpha test */
1388 if (ctx->Color.AlphaEnabled) {
1389 if (!_swrast_alpha_test(ctx, span)) {
1390 /* all fragments failed test */
1391 goto end;
1392 }
1393 }
1394
1395 /* Stencil and Z testing */
1396 if (ctx->Stencil._Enabled || ctx->Depth.Test) {
1397 if (!(span->arrayMask & SPAN_Z))
1398 _swrast_span_interpolate_z(ctx, span);
1399
1400 if (ctx->Transform.DepthClamp)
1401 _swrast_depth_clamp_span(ctx, span);
1402
1403 if (ctx->Stencil._Enabled) {
1404 /* Combined Z/stencil tests */
1405 if (!_swrast_stencil_and_ztest_span(ctx, span)) {
1406 /* all fragments failed test */
1407 goto end;
1408 }
1409 }
1410 else if (fb->Visual.depthBits > 0) {
1411 /* Just regular depth testing */
1412 ASSERT(ctx->Depth.Test);
1413 ASSERT(span->arrayMask & SPAN_Z);
1414 if (!_swrast_depth_test_span(ctx, span)) {
1415 /* all fragments failed test */
1416 goto end;
1417 }
1418 }
1419 }
1420
1421 if (ctx->Query.CurrentOcclusionObject) {
1422 /* update count of 'passed' fragments */
1423 struct gl_query_object *q = ctx->Query.CurrentOcclusionObject;
1424 GLuint i;
1425 for (i = 0; i < span->end; i++)
1426 q->Result += span->array->mask[i];
1427 }
1428
1429 /* We had to wait until now to check for glColorMask(0,0,0,0) because of
1430 * the occlusion test.
1431 */
1432 if (fb->_NumColorDrawBuffers == 1 && colorMask[0] == 0x0) {
1433 /* no colors to write */
1434 goto end;
1435 }
1436
1437 /* If we were able to defer fragment color computation to now, there's
1438 * a good chance that many fragments will have already been killed by
1439 * Z/stencil testing.
1440 */
1441 if (shaderOrTexture && swrast->_DeferredTexture) {
1442 shade_texture_span(ctx, span);
1443 }
1444
1445 #if CHAN_BITS == 32
1446 if ((span->arrayAttribs & FRAG_BIT_COL0) == 0) {
1447 interpolate_active_attribs(ctx, span, FRAG_BIT_COL0);
1448 }
1449 #else
1450 if ((span->arrayMask & SPAN_RGBA) == 0) {
1451 interpolate_int_colors(ctx, span);
1452 }
1453 #endif
1454
1455 ASSERT(span->arrayMask & SPAN_RGBA);
1456
1457 if (span->primitive == GL_BITMAP || !swrast->SpecularVertexAdd) {
1458 /* Add primary and specular (diffuse + specular) colors */
1459 if (!shader) {
1460 if (ctx->Fog.ColorSumEnabled ||
1461 (ctx->Light.Enabled &&
1462 ctx->Light.Model.ColorControl == GL_SEPARATE_SPECULAR_COLOR)) {
1463 add_specular(ctx, span);
1464 }
1465 }
1466 }
1467
1468 /* Fog */
1469 if (swrast->_FogEnabled) {
1470 _swrast_fog_rgba_span(ctx, span);
1471 }
1472
1473 /* Antialias coverage application */
1474 if (span->arrayMask & SPAN_COVERAGE) {
1475 apply_aa_coverage(span);
1476 }
1477
1478 /* Clamp color/alpha values over the range [0.0, 1.0] before storage */
1479 if (ctx->Color.ClampFragmentColor == GL_TRUE &&
1480 span->array->ChanType == GL_FLOAT) {
1481 clamp_colors(span);
1482 }
1483
1484 /*
1485 * Write to renderbuffers.
1486 * Depending on glDrawBuffer() state and the which color outputs are
1487 * written by the fragment shader, we may either replicate one color to
1488 * all renderbuffers or write a different color to each renderbuffer.
1489 * multiFragOutputs=TRUE for the later case.
1490 */
1491 {
1492 const GLuint numBuffers = fb->_NumColorDrawBuffers;
1493 const struct gl_fragment_program *fp = ctx->FragmentProgram._Current;
1494 const GLboolean multiFragOutputs =
1495 (fp && fp->Base.OutputsWritten >= (1 << FRAG_RESULT_DATA0));
1496 GLuint buf;
1497
1498 for (buf = 0; buf < numBuffers; buf++) {
1499 struct gl_renderbuffer *rb = fb->_ColorDrawBuffers[buf];
1500
1501 /* color[fragOutput] will be written to buffer[buf] */
1502
1503 if (rb) {
1504 GLchan rgbaSave[MAX_WIDTH][4];
1505 const GLuint fragOutput = multiFragOutputs ? buf : 0;
1506
1507 if (rb->DataType != span->array->ChanType || fragOutput > 0) {
1508 convert_color_type(span, rb->DataType, fragOutput);
1509 }
1510
1511 if (!multiFragOutputs && numBuffers > 1) {
1512 /* save colors for second, third renderbuffer writes */
1513 memcpy(rgbaSave, span->array->rgba,
1514 4 * span->end * sizeof(GLchan));
1515 }
1516
1517 ASSERT(rb->_BaseFormat == GL_RGBA || rb->_BaseFormat == GL_RGB);
1518
1519 if (ctx->Color._LogicOpEnabled) {
1520 _swrast_logicop_rgba_span(ctx, rb, span);
1521 }
1522 else if ((ctx->Color.BlendEnabled >> buf) & 1) {
1523 _swrast_blend_span(ctx, rb, span);
1524 }
1525
1526 if (colorMask[buf] != 0xffffffff) {
1527 _swrast_mask_rgba_span(ctx, rb, span, buf);
1528 }
1529
1530 if (span->arrayMask & SPAN_XY) {
1531 /* array of pixel coords */
1532 ASSERT(rb->PutValues);
1533 rb->PutValues(ctx, rb, span->end,
1534 span->array->x, span->array->y,
1535 span->array->rgba, span->array->mask);
1536 }
1537 else {
1538 /* horizontal run of pixels */
1539 ASSERT(rb->PutRow);
1540 rb->PutRow(ctx, rb, span->end, span->x, span->y,
1541 span->array->rgba,
1542 span->writeAll ? NULL: span->array->mask);
1543 }
1544
1545 if (!multiFragOutputs && numBuffers > 1) {
1546 /* restore original span values */
1547 memcpy(span->array->rgba, rgbaSave,
1548 4 * span->end * sizeof(GLchan));
1549 }
1550
1551 } /* if rb */
1552 } /* for buf */
1553 }
1554
1555 end:
1556 /* restore these values before returning */
1557 span->interpMask = origInterpMask;
1558 span->arrayMask = origArrayMask;
1559 span->arrayAttribs = origArrayAttribs;
1560 span->array->ChanType = origChanType;
1561 span->array->rgba = origRgba;
1562 }
1563
1564
1565 /**
1566 * Read RGBA pixels from a renderbuffer. Clipping will be done to prevent
1567 * reading ouside the buffer's boundaries.
1568 * \param dstType datatype for returned colors
1569 * \param rgba the returned colors
1570 */
1571 void
1572 _swrast_read_rgba_span( GLcontext *ctx, struct gl_renderbuffer *rb,
1573 GLuint n, GLint x, GLint y, GLenum dstType,
1574 GLvoid *rgba)
1575 {
1576 const GLint bufWidth = (GLint) rb->Width;
1577 const GLint bufHeight = (GLint) rb->Height;
1578
1579 if (y < 0 || y >= bufHeight || x + (GLint) n < 0 || x >= bufWidth) {
1580 /* completely above, below, or right */
1581 /* XXX maybe leave rgba values undefined? */
1582 memset(rgba, 0, 4 * n * sizeof(GLchan));
1583 }
1584 else {
1585 GLint skip, length;
1586 if (x < 0) {
1587 /* left edge clipping */
1588 skip = -x;
1589 length = (GLint) n - skip;
1590 if (length < 0) {
1591 /* completely left of window */
1592 return;
1593 }
1594 if (length > bufWidth) {
1595 length = bufWidth;
1596 }
1597 }
1598 else if ((GLint) (x + n) > bufWidth) {
1599 /* right edge clipping */
1600 skip = 0;
1601 length = bufWidth - x;
1602 if (length < 0) {
1603 /* completely to right of window */
1604 return;
1605 }
1606 }
1607 else {
1608 /* no clipping */
1609 skip = 0;
1610 length = (GLint) n;
1611 }
1612
1613 ASSERT(rb);
1614 ASSERT(rb->GetRow);
1615 ASSERT(rb->_BaseFormat == GL_RGB || rb->_BaseFormat == GL_RGBA);
1616
1617 if (rb->DataType == dstType) {
1618 rb->GetRow(ctx, rb, length, x + skip, y,
1619 (GLubyte *) rgba + skip * RGBA_PIXEL_SIZE(rb->DataType));
1620 }
1621 else {
1622 GLuint temp[MAX_WIDTH * 4];
1623 rb->GetRow(ctx, rb, length, x + skip, y, temp);
1624 _mesa_convert_colors(rb->DataType, temp,
1625 dstType, (GLubyte *) rgba + skip * RGBA_PIXEL_SIZE(dstType),
1626 length, NULL);
1627 }
1628 }
1629 }
1630
1631
1632 /**
1633 * Read CI pixels from a renderbuffer. Clipping will be done to prevent
1634 * reading ouside the buffer's boundaries.
1635 */
1636 void
1637 _swrast_read_index_span( GLcontext *ctx, struct gl_renderbuffer *rb,
1638 GLuint n, GLint x, GLint y, GLuint index[] )
1639 {
1640 const GLint bufWidth = (GLint) rb->Width;
1641 const GLint bufHeight = (GLint) rb->Height;
1642
1643 if (y < 0 || y >= bufHeight || x + (GLint) n < 0 || x >= bufWidth) {
1644 /* completely above, below, or right */
1645 memset(index, 0, n * sizeof(GLuint));
1646 }
1647 else {
1648 GLint skip, length;
1649 if (x < 0) {
1650 /* left edge clipping */
1651 skip = -x;
1652 length = (GLint) n - skip;
1653 if (length < 0) {
1654 /* completely left of window */
1655 return;
1656 }
1657 if (length > bufWidth) {
1658 length = bufWidth;
1659 }
1660 }
1661 else if ((GLint) (x + n) > bufWidth) {
1662 /* right edge clipping */
1663 skip = 0;
1664 length = bufWidth - x;
1665 if (length < 0) {
1666 /* completely to right of window */
1667 return;
1668 }
1669 }
1670 else {
1671 /* no clipping */
1672 skip = 0;
1673 length = (GLint) n;
1674 }
1675
1676 ASSERT(rb->GetRow);
1677 ASSERT(rb->_BaseFormat == GL_COLOR_INDEX);
1678
1679 if (rb->DataType == GL_UNSIGNED_BYTE) {
1680 GLubyte index8[MAX_WIDTH];
1681 GLint i;
1682 rb->GetRow(ctx, rb, length, x + skip, y, index8);
1683 for (i = 0; i < length; i++)
1684 index[skip + i] = index8[i];
1685 }
1686 else if (rb->DataType == GL_UNSIGNED_SHORT) {
1687 GLushort index16[MAX_WIDTH];
1688 GLint i;
1689 rb->GetRow(ctx, rb, length, x + skip, y, index16);
1690 for (i = 0; i < length; i++)
1691 index[skip + i] = index16[i];
1692 }
1693 else if (rb->DataType == GL_UNSIGNED_INT) {
1694 rb->GetRow(ctx, rb, length, x + skip, y, index + skip);
1695 }
1696 }
1697 }
1698
1699
1700 /**
1701 * Wrapper for gl_renderbuffer::GetValues() which does clipping to avoid
1702 * reading values outside the buffer bounds.
1703 * We can use this for reading any format/type of renderbuffer.
1704 * \param valueSize is the size in bytes of each value (pixel) put into the
1705 * values array.
1706 */
1707 void
1708 _swrast_get_values(GLcontext *ctx, struct gl_renderbuffer *rb,
1709 GLuint count, const GLint x[], const GLint y[],
1710 void *values, GLuint valueSize)
1711 {
1712 GLuint i, inCount = 0, inStart = 0;
1713
1714 for (i = 0; i < count; i++) {
1715 if (x[i] >= 0 && y[i] >= 0 &&
1716 x[i] < (GLint) rb->Width && y[i] < (GLint) rb->Height) {
1717 /* inside */
1718 if (inCount == 0)
1719 inStart = i;
1720 inCount++;
1721 }
1722 else {
1723 if (inCount > 0) {
1724 /* read [inStart, inStart + inCount) */
1725 rb->GetValues(ctx, rb, inCount, x + inStart, y + inStart,
1726 (GLubyte *) values + inStart * valueSize);
1727 inCount = 0;
1728 }
1729 }
1730 }
1731 if (inCount > 0) {
1732 /* read last values */
1733 rb->GetValues(ctx, rb, inCount, x + inStart, y + inStart,
1734 (GLubyte *) values + inStart * valueSize);
1735 }
1736 }
1737
1738
1739 /**
1740 * Wrapper for gl_renderbuffer::PutRow() which does clipping.
1741 * \param valueSize size of each value (pixel) in bytes
1742 */
1743 void
1744 _swrast_put_row(GLcontext *ctx, struct gl_renderbuffer *rb,
1745 GLuint count, GLint x, GLint y,
1746 const GLvoid *values, GLuint valueSize)
1747 {
1748 GLint skip = 0;
1749
1750 if (y < 0 || y >= (GLint) rb->Height)
1751 return; /* above or below */
1752
1753 if (x + (GLint) count <= 0 || x >= (GLint) rb->Width)
1754 return; /* entirely left or right */
1755
1756 if ((GLint) (x + count) > (GLint) rb->Width) {
1757 /* right clip */
1758 GLint clip = x + count - rb->Width;
1759 count -= clip;
1760 }
1761
1762 if (x < 0) {
1763 /* left clip */
1764 skip = -x;
1765 x = 0;
1766 count -= skip;
1767 }
1768
1769 rb->PutRow(ctx, rb, count, x, y,
1770 (const GLubyte *) values + skip * valueSize, NULL);
1771 }
1772
1773
1774 /**
1775 * Wrapper for gl_renderbuffer::GetRow() which does clipping.
1776 * \param valueSize size of each value (pixel) in bytes
1777 */
1778 void
1779 _swrast_get_row(GLcontext *ctx, struct gl_renderbuffer *rb,
1780 GLuint count, GLint x, GLint y,
1781 GLvoid *values, GLuint valueSize)
1782 {
1783 GLint skip = 0;
1784
1785 if (y < 0 || y >= (GLint) rb->Height)
1786 return; /* above or below */
1787
1788 if (x + (GLint) count <= 0 || x >= (GLint) rb->Width)
1789 return; /* entirely left or right */
1790
1791 if (x + count > rb->Width) {
1792 /* right clip */
1793 GLint clip = x + count - rb->Width;
1794 count -= clip;
1795 }
1796
1797 if (x < 0) {
1798 /* left clip */
1799 skip = -x;
1800 x = 0;
1801 count -= skip;
1802 }
1803
1804 rb->GetRow(ctx, rb, count, x, y, (GLubyte *) values + skip * valueSize);
1805 }
1806
1807
1808 /**
1809 * Get RGBA pixels from the given renderbuffer.
1810 * Used by blending, logicop and masking functions.
1811 * \return pointer to the colors we read.
1812 */
1813 void *
1814 _swrast_get_dest_rgba(GLcontext *ctx, struct gl_renderbuffer *rb,
1815 SWspan *span)
1816 {
1817 const GLuint pixelSize = RGBA_PIXEL_SIZE(span->array->ChanType);
1818 void *rbPixels;
1819
1820 /* Point rbPixels to a temporary space */
1821 rbPixels = span->array->attribs[FRAG_ATTRIB_MAX - 1];
1822
1823 /* Get destination values from renderbuffer */
1824 if (span->arrayMask & SPAN_XY) {
1825 _swrast_get_values(ctx, rb, span->end, span->array->x, span->array->y,
1826 rbPixels, pixelSize);
1827 }
1828 else {
1829 _swrast_get_row(ctx, rb, span->end, span->x, span->y,
1830 rbPixels, pixelSize);
1831 }
1832
1833 return rbPixels;
1834 }