blob: 8484aab5a93fd7f86f7438e54c0e685aad59fa07 [file] [log] [blame]
Keith Whitwell7c206422000-11-05 18:20:18 +00001/*
2 * Mesa 3-D graphics library
Briana7008322007-05-23 15:33:46 -06003 * Version: 7.1
Gareth Hughes22144ab2001-03-12 00:48:37 +00004 *
Briana7008322007-05-23 15:33:46 -06005 * Copyright (C) 1999-2007 Brian Paul All Rights Reserved.
Gareth Hughes22144ab2001-03-12 00:48:37 +00006 *
Keith Whitwell7c206422000-11-05 18:20:18 +00007 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
Gareth Hughes22144ab2001-03-12 00:48:37 +000013 *
Keith Whitwell7c206422000-11-05 18:20:18 +000014 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
Gareth Hughes22144ab2001-03-12 00:48:37 +000016 *
Keith Whitwell7c206422000-11-05 18:20:18 +000017 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 *
24 * Authors:
Brian Paul05a4b372002-10-29 20:28:36 +000025 * Keith Whitwell <keith@tungstengraphics.com>
Keith Whitwell7c206422000-11-05 18:20:18 +000026 */
27
28
Briana7008322007-05-23 15:33:46 -060029/**
30 * This is where we handle assigning vertex colors based on front/back
31 * facing, compute polygon offset and handle glPolygonMode().
32 */
Keith Whitwell58e99172001-01-05 02:26:48 +000033static void TAG(triangle)(GLcontext *ctx, GLuint e0, GLuint e1, GLuint e2 )
Keith Whitwell7c206422000-11-05 18:20:18 +000034{
Keith Whitwellcab974c2000-12-26 05:09:27 +000035 struct vertex_buffer *VB = &TNL_CONTEXT(ctx)->vb;
Briana7008322007-05-23 15:33:46 -060036 SScontext *swsetup = SWSETUP_CONTEXT(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +000037 SWvertex *verts = SWSETUP_CONTEXT(ctx)->verts;
Keith Whitwell7c206422000-11-05 18:20:18 +000038 SWvertex *v[3];
Keith Whitwell7c206422000-11-05 18:20:18 +000039 GLfloat z[3];
Brianb755a2d2007-07-11 16:19:51 -060040 GLfloat offset, oz0, oz1, oz2;
Keith Whitwell7c206422000-11-05 18:20:18 +000041 GLenum mode = GL_FILL;
Brian Paul21709b32002-11-13 15:04:29 +000042 GLuint facing = 0;
Keith Whitwell326bc712003-11-28 09:43:18 +000043 GLchan saved_color[3][4];
Vinson Lee0aef54b2009-12-12 22:00:19 -080044 GLfloat saved_col0[3][4] = { { 0 } };
45 GLfloat saved_spec[3][4] = { { 0 } };
46 GLfloat saved_index[3] = { 0 };
Keith Whitwell7c206422000-11-05 18:20:18 +000047
48 v[0] = &verts[e0];
49 v[1] = &verts[e1];
50 v[2] = &verts[e2];
51
Keith Whitwell7c206422000-11-05 18:20:18 +000052 if (IND & (SS_TWOSIDE_BIT | SS_OFFSET_BIT | SS_UNFILLED_BIT))
53 {
Brian9e8a9612007-05-20 12:27:39 -060054 GLfloat ex = v[0]->attrib[FRAG_ATTRIB_WPOS][0] - v[2]->attrib[FRAG_ATTRIB_WPOS][0];
55 GLfloat ey = v[0]->attrib[FRAG_ATTRIB_WPOS][1] - v[2]->attrib[FRAG_ATTRIB_WPOS][1];
56 GLfloat fx = v[1]->attrib[FRAG_ATTRIB_WPOS][0] - v[2]->attrib[FRAG_ATTRIB_WPOS][0];
57 GLfloat fy = v[1]->attrib[FRAG_ATTRIB_WPOS][1] - v[2]->attrib[FRAG_ATTRIB_WPOS][1];
Keith Whitwell7c206422000-11-05 18:20:18 +000058 GLfloat cc = ex*fy - ey*fx;
59
60 if (IND & (SS_TWOSIDE_BIT | SS_UNFILLED_BIT))
61 {
Keith Whitwell58e99172001-01-05 02:26:48 +000062 facing = (cc < 0.0) ^ ctx->Polygon._FrontBit;
Gareth Hughes22144ab2001-03-12 00:48:37 +000063
Keith Whitwell7c206422000-11-05 18:20:18 +000064 if (IND & SS_UNFILLED_BIT)
65 mode = facing ? ctx->Polygon.BackMode : ctx->Polygon.FrontMode;
Gareth Hughes22144ab2001-03-12 00:48:37 +000066
Keith Whitwell58e99172001-01-05 02:26:48 +000067 if (facing == 1) {
68 if (IND & SS_TWOSIDE_BIT) {
Keith Whitwellcab974c2000-12-26 05:09:27 +000069 if (IND & SS_RGBA_BIT) {
Eric Anholt0a918782009-11-18 01:38:55 -080070 if (VB->BackfaceColorPtr) {
71 GLfloat (*vbcolor)[4] = VB->BackfaceColorPtr->data;
Keith Whitwell326bc712003-11-28 09:43:18 +000072
Briana7008322007-05-23 15:33:46 -060073 if (swsetup->intColors) {
74 COPY_CHAN4(saved_color[0], v[0]->color);
75 COPY_CHAN4(saved_color[1], v[1]->color);
76 COPY_CHAN4(saved_color[2], v[2]->color);
Xiang, Haihao565cd492007-04-18 12:37:09 +080077 }
78 else {
Briana7008322007-05-23 15:33:46 -060079 COPY_4V(saved_col0[0], v[0]->attrib[FRAG_ATTRIB_COL0]);
80 COPY_4V(saved_col0[1], v[1]->attrib[FRAG_ATTRIB_COL0]);
81 COPY_4V(saved_col0[2], v[2]->attrib[FRAG_ATTRIB_COL0]);
82 }
83
Eric Anholt0a918782009-11-18 01:38:55 -080084 if (VB->BackfaceColorPtr->stride) {
Briana7008322007-05-23 15:33:46 -060085 if (swsetup->intColors) {
86 SS_COLOR(v[0]->color, vbcolor[e0]);
87 SS_COLOR(v[1]->color, vbcolor[e1]);
88 SS_COLOR(v[2]->color, vbcolor[e2]);
89 }
90 else {
91 COPY_4V(v[0]->attrib[FRAG_ATTRIB_COL0], vbcolor[e0]);
92 COPY_4V(v[1]->attrib[FRAG_ATTRIB_COL0], vbcolor[e1]);
93 COPY_4V(v[2]->attrib[FRAG_ATTRIB_COL0], vbcolor[e2]);
94 }
95 }
96 else {
97 /* flat shade */
98 if (swsetup->intColors) {
99 SS_COLOR(v[0]->color, vbcolor[0]);
100 SS_COLOR(v[1]->color, vbcolor[0]);
101 SS_COLOR(v[2]->color, vbcolor[0]);
102 }
103 else {
104 COPY_4V(v[0]->attrib[FRAG_ATTRIB_COL0], vbcolor[0]);
105 COPY_4V(v[1]->attrib[FRAG_ATTRIB_COL0], vbcolor[0]);
106 COPY_4V(v[2]->attrib[FRAG_ATTRIB_COL0], vbcolor[0]);
107 }
Xiang, Haihao565cd492007-04-18 12:37:09 +0800108 }
109 }
Keith Whitwell326bc712003-11-28 09:43:18 +0000110
Eric Anholt0a918782009-11-18 01:38:55 -0800111 if (VB->BackfaceSecondaryColorPtr) {
112 GLfloat (*vbspec)[4] = VB->BackfaceSecondaryColorPtr->data;
Keith Whitwell326bc712003-11-28 09:43:18 +0000113
Brian9e8a9612007-05-20 12:27:39 -0600114 COPY_4V(saved_spec[0], v[0]->attrib[FRAG_ATTRIB_COL1]);
115 COPY_4V(saved_spec[1], v[1]->attrib[FRAG_ATTRIB_COL1]);
116 COPY_4V(saved_spec[2], v[2]->attrib[FRAG_ATTRIB_COL1]);
Keith Whitwell326bc712003-11-28 09:43:18 +0000117
Eric Anholt0a918782009-11-18 01:38:55 -0800118 if (VB->BackfaceSecondaryColorPtr->stride) {
Brian9e8a9612007-05-20 12:27:39 -0600119 SS_SPEC(v[0]->attrib[FRAG_ATTRIB_COL1], vbspec[e0]);
120 SS_SPEC(v[1]->attrib[FRAG_ATTRIB_COL1], vbspec[e1]);
121 SS_SPEC(v[2]->attrib[FRAG_ATTRIB_COL1], vbspec[e2]);
Keith Whitwella5820152005-05-11 10:30:13 +0000122 }
123 else {
Brian9e8a9612007-05-20 12:27:39 -0600124 SS_SPEC(v[0]->attrib[FRAG_ATTRIB_COL1], vbspec[0]);
125 SS_SPEC(v[1]->attrib[FRAG_ATTRIB_COL1], vbspec[0]);
126 SS_SPEC(v[2]->attrib[FRAG_ATTRIB_COL1], vbspec[0]);
Keith Whitwella5820152005-05-11 10:30:13 +0000127 }
Keith Whitwell1182ffe2001-07-12 22:09:21 +0000128 }
Keith Whitwellcab974c2000-12-26 05:09:27 +0000129 } else {
Eric Anholtfc9a2972009-11-17 23:38:35 -0800130 GLfloat *vbindex = (GLfloat *)VB->BackfaceIndexPtr->data;
Brian9e8a9612007-05-20 12:27:39 -0600131 saved_index[0] = v[0]->attrib[FRAG_ATTRIB_CI][0];
132 saved_index[1] = v[1]->attrib[FRAG_ATTRIB_CI][0];
133 saved_index[2] = v[2]->attrib[FRAG_ATTRIB_CI][0];
Keith Whitwell326bc712003-11-28 09:43:18 +0000134
Brian9e8a9612007-05-20 12:27:39 -0600135 SS_IND(v[0]->attrib[FRAG_ATTRIB_CI][0], (GLuint) vbindex[e0]);
136 SS_IND(v[1]->attrib[FRAG_ATTRIB_CI][0], (GLuint) vbindex[e1]);
137 SS_IND(v[2]->attrib[FRAG_ATTRIB_CI][0], (GLuint) vbindex[e2]);
Keith Whitwell1e1aac02000-11-13 20:02:56 +0000138 }
Keith Whitwell7c206422000-11-05 18:20:18 +0000139 }
Gareth Hughes22144ab2001-03-12 00:48:37 +0000140 }
Keith Whitwell7c206422000-11-05 18:20:18 +0000141 }
142
Brianb755a2d2007-07-11 16:19:51 -0600143 if (IND & SS_OFFSET_BIT) {
144 const GLfloat max = ctx->DrawBuffer->_DepthMaxF;
145 /* save original Z values (restored later) */
Brian9e8a9612007-05-20 12:27:39 -0600146 z[0] = v[0]->attrib[FRAG_ATTRIB_WPOS][2];
147 z[1] = v[1]->attrib[FRAG_ATTRIB_WPOS][2];
148 z[2] = v[2]->attrib[FRAG_ATTRIB_WPOS][2];
Brianb755a2d2007-07-11 16:19:51 -0600149 /* Note that Z values are already scaled to [0,65535] (for example)
150 * so no MRD value is used here.
151 */
152 offset = ctx->Polygon.OffsetUnits;
Keith Whitwell7c206422000-11-05 18:20:18 +0000153 if (cc * cc > 1e-16) {
Brian Paul7c6a04f2004-03-03 15:50:28 +0000154 const GLfloat ez = z[0] - z[2];
155 const GLfloat fz = z[1] - z[2];
156 const GLfloat oneOverArea = 1.0F / cc;
157 const GLfloat dzdx = FABSF((ey * fz - ez * fy) * oneOverArea);
158 const GLfloat dzdy = FABSF((ez * fx - ex * fz) * oneOverArea);
159 offset += MAX2(dzdx, dzdy) * ctx->Polygon.OffsetFactor;
Keith Whitwell7c206422000-11-05 18:20:18 +0000160 }
Brianb755a2d2007-07-11 16:19:51 -0600161 /* new Z values */
162 oz0 = CLAMP(v[0]->attrib[FRAG_ATTRIB_WPOS][2] + offset, 0.0, max);
163 oz1 = CLAMP(v[1]->attrib[FRAG_ATTRIB_WPOS][2] + offset, 0.0, max);
164 oz2 = CLAMP(v[2]->attrib[FRAG_ATTRIB_WPOS][2] + offset, 0.0, max);
Keith Whitwell7c206422000-11-05 18:20:18 +0000165 }
166 }
Keith Whitwell7c206422000-11-05 18:20:18 +0000167
168 if (mode == GL_POINT) {
Keith Whitwell7c206422000-11-05 18:20:18 +0000169 if ((IND & SS_OFFSET_BIT) && ctx->Polygon.OffsetPoint) {
Brianb755a2d2007-07-11 16:19:51 -0600170 v[0]->attrib[FRAG_ATTRIB_WPOS][2] = oz0;
171 v[1]->attrib[FRAG_ATTRIB_WPOS][2] = oz1;
172 v[2]->attrib[FRAG_ATTRIB_WPOS][2] = oz2;
Keith Whitwell7c206422000-11-05 18:20:18 +0000173 }
Michal Krol355e9bb2009-03-19 10:39:57 +0100174 _swsetup_render_tri(ctx, e0, e1, e2, facing, _swsetup_edge_render_point_tri);
Keith Whitwell7c206422000-11-05 18:20:18 +0000175 } else if (mode == GL_LINE) {
Keith Whitwell7c206422000-11-05 18:20:18 +0000176 if ((IND & SS_OFFSET_BIT) && ctx->Polygon.OffsetLine) {
Brianb755a2d2007-07-11 16:19:51 -0600177 v[0]->attrib[FRAG_ATTRIB_WPOS][2] = oz0;
178 v[1]->attrib[FRAG_ATTRIB_WPOS][2] = oz1;
179 v[2]->attrib[FRAG_ATTRIB_WPOS][2] = oz2;
Keith Whitwell7c206422000-11-05 18:20:18 +0000180 }
Michal Krol355e9bb2009-03-19 10:39:57 +0100181 _swsetup_render_tri(ctx, e0, e1, e2, facing, _swsetup_edge_render_line_tri);
Keith Whitwell7c206422000-11-05 18:20:18 +0000182 } else {
183 if ((IND & SS_OFFSET_BIT) && ctx->Polygon.OffsetFill) {
Brianb755a2d2007-07-11 16:19:51 -0600184 v[0]->attrib[FRAG_ATTRIB_WPOS][2] = oz0;
185 v[1]->attrib[FRAG_ATTRIB_WPOS][2] = oz1;
186 v[2]->attrib[FRAG_ATTRIB_WPOS][2] = oz2;
Keith Whitwell7c206422000-11-05 18:20:18 +0000187 }
Gareth Hughes22144ab2001-03-12 00:48:37 +0000188 _swrast_Triangle( ctx, v[0], v[1], v[2] );
Keith Whitwell7c206422000-11-05 18:20:18 +0000189 }
190
Briana7008322007-05-23 15:33:46 -0600191 /*
192 * Restore original vertex colors, etc.
193 */
Keith Whitwell7c206422000-11-05 18:20:18 +0000194 if (IND & SS_OFFSET_BIT) {
Brian9e8a9612007-05-20 12:27:39 -0600195 v[0]->attrib[FRAG_ATTRIB_WPOS][2] = z[0];
196 v[1]->attrib[FRAG_ATTRIB_WPOS][2] = z[1];
197 v[2]->attrib[FRAG_ATTRIB_WPOS][2] = z[2];
Keith Whitwell7c206422000-11-05 18:20:18 +0000198 }
199
Gareth Hughes22144ab2001-03-12 00:48:37 +0000200 if (IND & SS_TWOSIDE_BIT) {
Keith Whitwell58e99172001-01-05 02:26:48 +0000201 if (facing == 1) {
202 if (IND & SS_RGBA_BIT) {
Eric Anholt0a918782009-11-18 01:38:55 -0800203 if (VB->BackfaceColorPtr) {
Briana7008322007-05-23 15:33:46 -0600204 if (swsetup->intColors) {
205 COPY_CHAN4(v[0]->color, saved_color[0]);
206 COPY_CHAN4(v[1]->color, saved_color[1]);
207 COPY_CHAN4(v[2]->color, saved_color[2]);
208 }
209 else {
210 COPY_4V(v[0]->attrib[FRAG_ATTRIB_COL0], saved_col0[0]);
211 COPY_4V(v[1]->attrib[FRAG_ATTRIB_COL0], saved_col0[1]);
212 COPY_4V(v[2]->attrib[FRAG_ATTRIB_COL0], saved_col0[2]);
213 }
Xiang, Haihao565cd492007-04-18 12:37:09 +0800214 }
215
Eric Anholt0a918782009-11-18 01:38:55 -0800216 if (VB->BackfaceSecondaryColorPtr) {
Brian9e8a9612007-05-20 12:27:39 -0600217 COPY_4V(v[0]->attrib[FRAG_ATTRIB_COL1], saved_spec[0]);
218 COPY_4V(v[1]->attrib[FRAG_ATTRIB_COL1], saved_spec[1]);
219 COPY_4V(v[2]->attrib[FRAG_ATTRIB_COL1], saved_spec[2]);
Keith Whitwell1182ffe2001-07-12 22:09:21 +0000220 }
Keith Whitwell58e99172001-01-05 02:26:48 +0000221 } else {
Brian9e8a9612007-05-20 12:27:39 -0600222 v[0]->attrib[FRAG_ATTRIB_CI][0] = saved_index[0];
223 v[1]->attrib[FRAG_ATTRIB_CI][0] = saved_index[1];
224 v[2]->attrib[FRAG_ATTRIB_CI][0] = saved_index[2];
Keith Whitwellcab974c2000-12-26 05:09:27 +0000225 }
226 }
Gareth Hughes22144ab2001-03-12 00:48:37 +0000227 }
Keith Whitwell7c206422000-11-05 18:20:18 +0000228}
229
230
231
Keith Whitwell70989242001-03-19 02:25:35 +0000232/* Need to fixup edgeflags when decomposing to triangles:
Keith Whitwell7c206422000-11-05 18:20:18 +0000233 */
pesco6f3178a2001-03-21 17:11:32 +0000234static void TAG(quadfunc)( GLcontext *ctx, GLuint v0,
Keith Whitwell58e99172001-01-05 02:26:48 +0000235 GLuint v1, GLuint v2, GLuint v3 )
Keith Whitwell7c206422000-11-05 18:20:18 +0000236{
Keith Whitwellcab974c2000-12-26 05:09:27 +0000237 if (IND & SS_UNFILLED_BIT) {
238 struct vertex_buffer *VB = &TNL_CONTEXT(ctx)->vb;
Brianc9ce3e82007-11-05 14:41:18 -0700239 if (VB->EdgeFlag) { /* XXX this test shouldn't be needed (bug 12614) */
240 GLubyte ef1 = VB->EdgeFlag[v1];
241 GLubyte ef3 = VB->EdgeFlag[v3];
242 VB->EdgeFlag[v1] = 0;
243 TAG(triangle)( ctx, v0, v1, v3 );
244 VB->EdgeFlag[v1] = ef1;
245 VB->EdgeFlag[v3] = 0;
246 TAG(triangle)( ctx, v1, v2, v3 );
247 VB->EdgeFlag[v3] = ef3;
248 }
Keith Whitwellcab974c2000-12-26 05:09:27 +0000249 } else {
Keith Whitwell58e99172001-01-05 02:26:48 +0000250 TAG(triangle)( ctx, v0, v1, v3 );
251 TAG(triangle)( ctx, v1, v2, v3 );
Keith Whitwellcab974c2000-12-26 05:09:27 +0000252 }
Keith Whitwell7c206422000-11-05 18:20:18 +0000253}
254
255
Keith Whitwell7c206422000-11-05 18:20:18 +0000256
Keith Whitwell7c206422000-11-05 18:20:18 +0000257
258static void TAG(init)( void )
259{
260 tri_tab[IND] = TAG(triangle);
pesco6f3178a2001-03-21 17:11:32 +0000261 quad_tab[IND] = TAG(quadfunc);
Keith Whitwell7c206422000-11-05 18:20:18 +0000262}
263
264
265#undef IND
266#undef TAG