Turn off debug
[mesa.git] / src / mesa / tnl / t_vb_program.c
1 /*
2 * Mesa 3-D graphics library
3 * Version: 6.1
4 *
5 * Copyright (C) 1999-2004 Brian Paul All Rights Reserved.
6 *
7 * 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:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * 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
25
26 /**
27 * \file tnl/t_vb_program.c
28 * \brief Pipeline stage for executing NVIDIA vertex programs.
29 * \author Brian Paul, Keith Whitwell
30 */
31
32
33 #include "glheader.h"
34 #include "api_noop.h"
35 #include "colormac.h"
36 #include "context.h"
37 #include "dlist.h"
38 #include "hash.h"
39 #include "light.h"
40 #include "macros.h"
41 #include "imports.h"
42 #include "simple_list.h"
43 #include "mtypes.h"
44 #include "nvvertprog.h"
45 #include "nvvertexec.h"
46 #include "nvprogram.h"
47
48 #include "math/m_translate.h"
49
50 #include "t_context.h"
51 #include "t_pipeline.h"
52
53
54
55 /*!
56 * Private storage for the vertex program pipeline stage.
57 */
58 struct vp_stage_data {
59 /** The results of running the vertex program go into these arrays. */
60 GLvector4f attribs[15];
61
62 GLvector4f ndcCoords; /**< normalized device coords */
63 GLubyte *clipmask; /**< clip flags */
64 GLubyte ormask, andmask; /**< for clipping */
65 };
66
67
68 #define VP_STAGE_DATA(stage) ((struct vp_stage_data *)(stage->privatePtr))
69
70
71 /**
72 * This function executes vertex programs
73 */
74 static GLboolean
75 run_vp( GLcontext *ctx, struct tnl_pipeline_stage *stage )
76 {
77 TNLcontext *tnl = TNL_CONTEXT(ctx);
78 struct vp_stage_data *store = VP_STAGE_DATA(stage);
79 struct vertex_buffer *VB = &tnl->vb;
80 struct vertex_program *program = ctx->VertexProgram.Current;
81 GLuint i;
82
83 if (!ctx->VertexProgram._Enabled)
84 return GL_TRUE;
85
86 /* load program parameter registers (they're read-only) */
87 _mesa_init_vp_per_primitive_registers(ctx);
88
89 for (i = 0; i < VB->Count; i++) {
90 GLuint attr;
91
92 _mesa_init_vp_per_vertex_registers(ctx);
93
94 #if 0
95 printf("Input %d: %f, %f, %f, %f\n", i,
96 VB->AttribPtr[0]->data[i][0],
97 VB->AttribPtr[0]->data[i][1],
98 VB->AttribPtr[0]->data[i][2],
99 VB->AttribPtr[0]->data[i][3]);
100 printf(" color: %f, %f, %f, %f\n",
101 VB->AttribPtr[3]->data[i][0],
102 VB->AttribPtr[3]->data[i][1],
103 VB->AttribPtr[3]->data[i][2],
104 VB->AttribPtr[3]->data[i][3]);
105 printf(" normal: %f, %f, %f, %f\n",
106 VB->AttribPtr[2]->data[i][0],
107 VB->AttribPtr[2]->data[i][1],
108 VB->AttribPtr[2]->data[i][2],
109 VB->AttribPtr[2]->data[i][3]);
110 #endif
111
112 /* the vertex array case */
113 for (attr = 0; attr < VERT_ATTRIB_MAX; attr++) {
114 if (program->InputsRead & (1 << attr)) {
115 const GLubyte *ptr = (const GLubyte*) VB->AttribPtr[attr]->data;
116 const GLuint size = VB->AttribPtr[attr]->size;
117 const GLuint stride = VB->AttribPtr[attr]->stride;
118 const GLfloat *data = (GLfloat *) (ptr + stride * i);
119 COPY_CLEAN_4V(ctx->VertexProgram.Inputs[attr], size, data);
120 }
121 }
122
123 /* execute the program */
124 ASSERT(program);
125 _mesa_exec_vertex_program(ctx, program);
126
127 /* Fixup fog an point size results if needed */
128 if (ctx->Fog.Enabled &&
129 (program->OutputsWritten & (1 << VERT_RESULT_FOGC)) == 0) {
130 ctx->VertexProgram.Outputs[VERT_RESULT_FOGC][0] = 1.0;
131 }
132
133 if (ctx->VertexProgram.PointSizeEnabled &&
134 (program->OutputsWritten & (1 << VERT_RESULT_PSIZ)) == 0) {
135 ctx->VertexProgram.Outputs[VERT_RESULT_PSIZ][0] = ctx->Point.Size;
136 }
137
138 /* copy the output registers into the VB->attribs arrays */
139 /* XXX (optimize) could use a conditional and smaller loop limit here */
140 for (attr = 0; attr < 15; attr++) {
141 COPY_4V(store->attribs[attr].data[i],
142 ctx->VertexProgram.Outputs[attr]);
143 }
144 }
145
146 /* Setup the VB pointers so that the next pipeline stages get
147 * their data from the right place (the program output arrays).
148 */
149 VB->ClipPtr = &store->attribs[VERT_RESULT_HPOS];
150 VB->ClipPtr->size = 4;
151 VB->ClipPtr->count = VB->Count;
152 VB->ColorPtr[0] = &store->attribs[VERT_RESULT_COL0];
153 VB->ColorPtr[1] = &store->attribs[VERT_RESULT_BFC0];
154 VB->SecondaryColorPtr[0] = &store->attribs[VERT_RESULT_COL1];
155 VB->SecondaryColorPtr[1] = &store->attribs[VERT_RESULT_BFC1];
156 VB->FogCoordPtr = &store->attribs[VERT_RESULT_FOGC];
157 VB->PointSizePtr = &store->attribs[VERT_RESULT_PSIZ];
158
159 VB->AttribPtr[VERT_ATTRIB_COLOR0] = VB->ColorPtr[0];
160 VB->AttribPtr[VERT_ATTRIB_COLOR1] = VB->SecondaryColorPtr[0];
161 VB->AttribPtr[VERT_ATTRIB_FOG] = VB->FogCoordPtr;
162 VB->AttribPtr[_TNL_ATTRIB_POINTSIZE] = &store->attribs[VERT_RESULT_PSIZ];
163
164 for (i = 0; i < ctx->Const.MaxTextureUnits; i++) {
165 VB->AttribPtr[VERT_ATTRIB_TEX0+i] = VB->TexCoordPtr[i] =
166 &store->attribs[VERT_RESULT_TEX0 + i];
167 }
168
169
170
171 /* Cliptest and perspective divide. Clip functions must clear
172 * the clipmask.
173 */
174 store->ormask = 0;
175 store->andmask = CLIP_ALL_BITS;
176
177 if (tnl->NeedNdcCoords) {
178 VB->NdcPtr =
179 _mesa_clip_tab[VB->ClipPtr->size]( VB->ClipPtr,
180 &store->ndcCoords,
181 store->clipmask,
182 &store->ormask,
183 &store->andmask );
184 }
185 else {
186 VB->NdcPtr = NULL;
187 _mesa_clip_np_tab[VB->ClipPtr->size]( VB->ClipPtr,
188 NULL,
189 store->clipmask,
190 &store->ormask,
191 &store->andmask );
192 }
193
194 if (store->andmask) /* All vertices are outside the frustum */
195 return GL_FALSE;
196
197
198 /* This is where we'd do clip testing against the user-defined
199 * clipping planes, but they're not supported by vertex programs.
200 */
201
202 VB->ClipOrMask = store->ormask;
203 VB->ClipMask = store->clipmask;
204
205 return GL_TRUE;
206 }
207
208
209
210
211 /**
212 * Called the first time stage->run is called. In effect, don't
213 * allocate data until the first time the stage is run.
214 */
215 static GLboolean init_vp( GLcontext *ctx,
216 struct tnl_pipeline_stage *stage )
217 {
218 TNLcontext *tnl = TNL_CONTEXT(ctx);
219 struct vertex_buffer *VB = &(tnl->vb);
220 struct vp_stage_data *store;
221 const GLuint size = VB->Size;
222 GLuint i;
223
224 stage->privatePtr = MALLOC(sizeof(*store));
225 store = VP_STAGE_DATA(stage);
226 if (!store)
227 return GL_FALSE;
228
229 /* Allocate arrays of vertex output values */
230 for (i = 0; i < 15; i++) {
231 _mesa_vector4f_alloc( &store->attribs[i], 0, size, 32 );
232 store->attribs[i].size = 4;
233 }
234
235 /* a few other misc allocations */
236 _mesa_vector4f_alloc( &store->ndcCoords, 0, size, 32 );
237 store->clipmask = (GLubyte *) ALIGN_MALLOC(sizeof(GLubyte)*size, 32 );
238
239 return GL_TRUE;
240 }
241
242
243
244
245
246 /**
247 * Destructor for this pipeline stage.
248 */
249 static void dtr( struct tnl_pipeline_stage *stage )
250 {
251 struct vp_stage_data *store = VP_STAGE_DATA(stage);
252
253 if (store) {
254 GLuint i;
255
256 /* free the vertex program result arrays */
257 for (i = 0; i < VERT_RESULT_MAX; i++)
258 _mesa_vector4f_free( &store->attribs[i] );
259
260 /* free misc arrays */
261 _mesa_vector4f_free( &store->ndcCoords );
262 ALIGN_FREE( store->clipmask );
263
264 FREE( store );
265 stage->privatePtr = NULL;
266 }
267 }
268
269 /**
270 * Public description of this pipeline stage.
271 */
272 const struct tnl_pipeline_stage _tnl_vertex_program_stage =
273 {
274 "vertex-program",
275 NULL, /* private_data */
276 init_vp, /* create */
277 dtr, /* destroy */
278 NULL, /* validate */
279 run_vp /* run -- initially set to ctr */
280 };