24e127a93fceb5481126448726c73cddc2ad1de4
[mesa.git] / src / mesa / main / state.c
1 /* $Id: state.c,v 1.92 2002/09/27 02:45:38 brianp Exp $ */
2
3 /*
4 * Mesa 3-D graphics library
5 * Version: 4.1
6 *
7 * Copyright (C) 1999-2002 Brian Paul All Rights Reserved.
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the "Software"),
11 * to deal in the Software without restriction, including without limitation
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 * and/or sell copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included
17 * in all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
23 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 */
26
27
28 /*
29 * This file manages recalculation of derived values in the
30 * __GLcontext.
31 */
32
33
34 #ifdef PC_HEADER
35 #include "all.h"
36 #else
37 #include "glheader.h"
38 #include "accum.h"
39 #include "api_loopback.h"
40 #include "attrib.h"
41 #include "blend.h"
42 #include "buffers.h"
43 #include "clip.h"
44 #include "colortab.h"
45 #include "context.h"
46 #include "convolve.h"
47 #include "depth.h"
48 #include "dlist.h"
49 #include "drawpix.h"
50 #include "enable.h"
51 #include "eval.h"
52 #include "get.h"
53 #include "feedback.h"
54 #include "fog.h"
55 #include "hint.h"
56 #include "histogram.h"
57 #include "light.h"
58 #include "lines.h"
59 #include "matrix.h"
60 #include "mmath.h"
61 #include "pixel.h"
62 #include "points.h"
63 #include "polygon.h"
64 #include "rastpos.h"
65 #include "state.h"
66 #include "stencil.h"
67 #include "teximage.h"
68 #include "texobj.h"
69 #include "texstate.h"
70 #include "mtypes.h"
71 #include "varray.h"
72 #include "vpstate.h"
73
74 #include "math/m_matrix.h"
75 #include "math/m_xform.h"
76 #endif
77
78
79 static int
80 generic_noop(void)
81 {
82 #ifdef DEBUG
83 _mesa_problem(NULL, "undefined function dispatch");
84 #endif
85 return 0;
86 }
87
88
89 /*
90 * Set all pointers in the given dispatch table to point to a
91 * generic no-op function.
92 */
93 void
94 _mesa_init_no_op_table(struct _glapi_table *table, GLuint tableSize)
95 {
96 GLuint i;
97 void **dispatch = (void **) table;
98 for (i = 0; i < tableSize; i++) {
99 dispatch[i] = (void *) generic_noop;
100 }
101 }
102
103
104
105 /*
106 * Initialize the given dispatch table with pointers to Mesa's
107 * immediate-mode commands.
108 *
109 * Pointers to begin/end object commands and a few others
110 * are provided via the vtxfmt interface elsewhere.
111 */
112 void
113 _mesa_init_exec_table(struct _glapi_table *exec, GLuint tableSize)
114 {
115 /* first initialize all dispatch slots to no-op */
116 _mesa_init_no_op_table(exec, tableSize);
117
118 _mesa_loopback_init_api_table( exec, GL_TRUE );
119
120 /* load the dispatch slots we understand */
121 exec->Accum = _mesa_Accum;
122 exec->AlphaFunc = _mesa_AlphaFunc;
123 exec->Bitmap = _mesa_Bitmap;
124 exec->BlendFunc = _mesa_BlendFunc;
125 exec->CallList = _mesa_CallList;
126 exec->CallLists = _mesa_CallLists;
127 exec->Clear = _mesa_Clear;
128 exec->ClearAccum = _mesa_ClearAccum;
129 exec->ClearColor = _mesa_ClearColor;
130 exec->ClearDepth = _mesa_ClearDepth;
131 exec->ClearIndex = _mesa_ClearIndex;
132 exec->ClearStencil = _mesa_ClearStencil;
133 exec->ClipPlane = _mesa_ClipPlane;
134 exec->ColorMask = _mesa_ColorMask;
135 exec->ColorMaterial = _mesa_ColorMaterial;
136 exec->CopyPixels = _mesa_CopyPixels;
137 exec->CullFace = _mesa_CullFace;
138 exec->DeleteLists = _mesa_DeleteLists;
139 exec->DepthFunc = _mesa_DepthFunc;
140 exec->DepthMask = _mesa_DepthMask;
141 exec->DepthRange = _mesa_DepthRange;
142 exec->Disable = _mesa_Disable;
143 exec->DrawBuffer = _mesa_DrawBuffer;
144 exec->DrawPixels = _mesa_DrawPixels;
145 exec->Enable = _mesa_Enable;
146 exec->EndList = _mesa_EndList;
147 exec->FeedbackBuffer = _mesa_FeedbackBuffer;
148 exec->Finish = _mesa_Finish;
149 exec->Flush = _mesa_Flush;
150 exec->FogCoordPointerEXT = _mesa_FogCoordPointerEXT;
151 exec->Fogf = _mesa_Fogf;
152 exec->Fogfv = _mesa_Fogfv;
153 exec->Fogi = _mesa_Fogi;
154 exec->Fogiv = _mesa_Fogiv;
155 exec->FrontFace = _mesa_FrontFace;
156 exec->Frustum = _mesa_Frustum;
157 exec->GenLists = _mesa_GenLists;
158 exec->GetBooleanv = _mesa_GetBooleanv;
159 exec->GetClipPlane = _mesa_GetClipPlane;
160 exec->GetDoublev = _mesa_GetDoublev;
161 exec->GetError = _mesa_GetError;
162 exec->GetFloatv = _mesa_GetFloatv;
163 exec->GetIntegerv = _mesa_GetIntegerv;
164 exec->GetLightfv = _mesa_GetLightfv;
165 exec->GetLightiv = _mesa_GetLightiv;
166 exec->GetMapdv = _mesa_GetMapdv;
167 exec->GetMapfv = _mesa_GetMapfv;
168 exec->GetMapiv = _mesa_GetMapiv;
169 exec->GetMaterialfv = _mesa_GetMaterialfv;
170 exec->GetMaterialiv = _mesa_GetMaterialiv;
171 exec->GetPixelMapfv = _mesa_GetPixelMapfv;
172 exec->GetPixelMapuiv = _mesa_GetPixelMapuiv;
173 exec->GetPixelMapusv = _mesa_GetPixelMapusv;
174 exec->GetPolygonStipple = _mesa_GetPolygonStipple;
175 exec->GetString = _mesa_GetString;
176 exec->GetTexEnvfv = _mesa_GetTexEnvfv;
177 exec->GetTexEnviv = _mesa_GetTexEnviv;
178 exec->GetTexGendv = _mesa_GetTexGendv;
179 exec->GetTexGenfv = _mesa_GetTexGenfv;
180 exec->GetTexGeniv = _mesa_GetTexGeniv;
181 exec->GetTexImage = _mesa_GetTexImage;
182 exec->GetTexLevelParameterfv = _mesa_GetTexLevelParameterfv;
183 exec->GetTexLevelParameteriv = _mesa_GetTexLevelParameteriv;
184 exec->GetTexParameterfv = _mesa_GetTexParameterfv;
185 exec->GetTexParameteriv = _mesa_GetTexParameteriv;
186 exec->Hint = _mesa_Hint;
187 exec->IndexMask = _mesa_IndexMask;
188 exec->InitNames = _mesa_InitNames;
189 exec->IsEnabled = _mesa_IsEnabled;
190 exec->IsList = _mesa_IsList;
191 exec->LightModelf = _mesa_LightModelf;
192 exec->LightModelfv = _mesa_LightModelfv;
193 exec->LightModeli = _mesa_LightModeli;
194 exec->LightModeliv = _mesa_LightModeliv;
195 exec->Lightf = _mesa_Lightf;
196 exec->Lightfv = _mesa_Lightfv;
197 exec->Lighti = _mesa_Lighti;
198 exec->Lightiv = _mesa_Lightiv;
199 exec->LineStipple = _mesa_LineStipple;
200 exec->LineWidth = _mesa_LineWidth;
201 exec->ListBase = _mesa_ListBase;
202 exec->LoadIdentity = _mesa_LoadIdentity;
203 exec->LoadMatrixd = _mesa_LoadMatrixd;
204 exec->LoadMatrixf = _mesa_LoadMatrixf;
205 exec->LoadName = _mesa_LoadName;
206 exec->LogicOp = _mesa_LogicOp;
207 exec->Map1d = _mesa_Map1d;
208 exec->Map1f = _mesa_Map1f;
209 exec->Map2d = _mesa_Map2d;
210 exec->Map2f = _mesa_Map2f;
211 exec->MapGrid1d = _mesa_MapGrid1d;
212 exec->MapGrid1f = _mesa_MapGrid1f;
213 exec->MapGrid2d = _mesa_MapGrid2d;
214 exec->MapGrid2f = _mesa_MapGrid2f;
215 exec->MatrixMode = _mesa_MatrixMode;
216 exec->MultMatrixd = _mesa_MultMatrixd;
217 exec->MultMatrixf = _mesa_MultMatrixf;
218 exec->NewList = _mesa_NewList;
219 exec->Ortho = _mesa_Ortho;
220 exec->PassThrough = _mesa_PassThrough;
221 exec->PixelMapfv = _mesa_PixelMapfv;
222 exec->PixelMapuiv = _mesa_PixelMapuiv;
223 exec->PixelMapusv = _mesa_PixelMapusv;
224 exec->PixelStoref = _mesa_PixelStoref;
225 exec->PixelStorei = _mesa_PixelStorei;
226 exec->PixelTransferf = _mesa_PixelTransferf;
227 exec->PixelTransferi = _mesa_PixelTransferi;
228 exec->PixelZoom = _mesa_PixelZoom;
229 exec->PointSize = _mesa_PointSize;
230 exec->PolygonMode = _mesa_PolygonMode;
231 exec->PolygonOffset = _mesa_PolygonOffset;
232 exec->PolygonStipple = _mesa_PolygonStipple;
233 exec->PopAttrib = _mesa_PopAttrib;
234 exec->PopMatrix = _mesa_PopMatrix;
235 exec->PopName = _mesa_PopName;
236 exec->PushAttrib = _mesa_PushAttrib;
237 exec->PushMatrix = _mesa_PushMatrix;
238 exec->PushName = _mesa_PushName;
239 exec->RasterPos2d = _mesa_RasterPos2d;
240 exec->RasterPos2dv = _mesa_RasterPos2dv;
241 exec->RasterPos2f = _mesa_RasterPos2f;
242 exec->RasterPos2fv = _mesa_RasterPos2fv;
243 exec->RasterPos2i = _mesa_RasterPos2i;
244 exec->RasterPos2iv = _mesa_RasterPos2iv;
245 exec->RasterPos2s = _mesa_RasterPos2s;
246 exec->RasterPos2sv = _mesa_RasterPos2sv;
247 exec->RasterPos3d = _mesa_RasterPos3d;
248 exec->RasterPos3dv = _mesa_RasterPos3dv;
249 exec->RasterPos3f = _mesa_RasterPos3f;
250 exec->RasterPos3fv = _mesa_RasterPos3fv;
251 exec->RasterPos3i = _mesa_RasterPos3i;
252 exec->RasterPos3iv = _mesa_RasterPos3iv;
253 exec->RasterPos3s = _mesa_RasterPos3s;
254 exec->RasterPos3sv = _mesa_RasterPos3sv;
255 exec->RasterPos4d = _mesa_RasterPos4d;
256 exec->RasterPos4dv = _mesa_RasterPos4dv;
257 exec->RasterPos4f = _mesa_RasterPos4f;
258 exec->RasterPos4fv = _mesa_RasterPos4fv;
259 exec->RasterPos4i = _mesa_RasterPos4i;
260 exec->RasterPos4iv = _mesa_RasterPos4iv;
261 exec->RasterPos4s = _mesa_RasterPos4s;
262 exec->RasterPos4sv = _mesa_RasterPos4sv;
263 exec->ReadBuffer = _mesa_ReadBuffer;
264 exec->ReadPixels = _mesa_ReadPixels;
265 exec->RenderMode = _mesa_RenderMode;
266 exec->Rotated = _mesa_Rotated;
267 exec->Rotatef = _mesa_Rotatef;
268 exec->Scaled = _mesa_Scaled;
269 exec->Scalef = _mesa_Scalef;
270 exec->Scissor = _mesa_Scissor;
271 exec->SecondaryColorPointerEXT = _mesa_SecondaryColorPointerEXT;
272 exec->SelectBuffer = _mesa_SelectBuffer;
273 exec->ShadeModel = _mesa_ShadeModel;
274 exec->StencilFunc = _mesa_StencilFunc;
275 exec->StencilMask = _mesa_StencilMask;
276 exec->StencilOp = _mesa_StencilOp;
277 exec->TexEnvf = _mesa_TexEnvf;
278 exec->TexEnvfv = _mesa_TexEnvfv;
279 exec->TexEnvi = _mesa_TexEnvi;
280 exec->TexEnviv = _mesa_TexEnviv;
281 exec->TexGend = _mesa_TexGend;
282 exec->TexGendv = _mesa_TexGendv;
283 exec->TexGenf = _mesa_TexGenf;
284 exec->TexGenfv = _mesa_TexGenfv;
285 exec->TexGeni = _mesa_TexGeni;
286 exec->TexGeniv = _mesa_TexGeniv;
287 exec->TexImage1D = _mesa_TexImage1D;
288 exec->TexImage2D = _mesa_TexImage2D;
289 exec->TexParameterf = _mesa_TexParameterf;
290 exec->TexParameterfv = _mesa_TexParameterfv;
291 exec->TexParameteri = _mesa_TexParameteri;
292 exec->TexParameteriv = _mesa_TexParameteriv;
293 exec->Translated = _mesa_Translated;
294 exec->Translatef = _mesa_Translatef;
295 exec->Viewport = _mesa_Viewport;
296
297 /* 1.1 */
298 exec->AreTexturesResident = _mesa_AreTexturesResident;
299 exec->BindTexture = _mesa_BindTexture;
300 exec->ColorPointer = _mesa_ColorPointer;
301 exec->CopyTexImage1D = _mesa_CopyTexImage1D;
302 exec->CopyTexImage2D = _mesa_CopyTexImage2D;
303 exec->CopyTexSubImage1D = _mesa_CopyTexSubImage1D;
304 exec->CopyTexSubImage2D = _mesa_CopyTexSubImage2D;
305 exec->DeleteTextures = _mesa_DeleteTextures;
306 exec->DisableClientState = _mesa_DisableClientState;
307 exec->EdgeFlagPointer = _mesa_EdgeFlagPointer;
308 exec->EnableClientState = _mesa_EnableClientState;
309 exec->GenTextures = _mesa_GenTextures;
310 exec->GetPointerv = _mesa_GetPointerv;
311 exec->IndexPointer = _mesa_IndexPointer;
312 exec->InterleavedArrays = _mesa_InterleavedArrays;
313 exec->IsTexture = _mesa_IsTexture;
314 exec->NormalPointer = _mesa_NormalPointer;
315 exec->PopClientAttrib = _mesa_PopClientAttrib;
316 exec->PrioritizeTextures = _mesa_PrioritizeTextures;
317 exec->PushClientAttrib = _mesa_PushClientAttrib;
318 exec->TexCoordPointer = _mesa_TexCoordPointer;
319 exec->TexSubImage1D = _mesa_TexSubImage1D;
320 exec->TexSubImage2D = _mesa_TexSubImage2D;
321 exec->VertexPointer = _mesa_VertexPointer;
322
323 /* 1.2 */
324 exec->CopyTexSubImage3D = _mesa_CopyTexSubImage3D;
325 exec->TexImage3D = _mesa_TexImage3D;
326 exec->TexSubImage3D = _mesa_TexSubImage3D;
327
328 /* OpenGL 1.2 GL_ARB_imaging */
329 exec->BlendColor = _mesa_BlendColor;
330 exec->BlendEquation = _mesa_BlendEquation;
331 exec->ColorSubTable = _mesa_ColorSubTable;
332 exec->ColorTable = _mesa_ColorTable;
333 exec->ColorTableParameterfv = _mesa_ColorTableParameterfv;
334 exec->ColorTableParameteriv = _mesa_ColorTableParameteriv;
335 exec->ConvolutionFilter1D = _mesa_ConvolutionFilter1D;
336 exec->ConvolutionFilter2D = _mesa_ConvolutionFilter2D;
337 exec->ConvolutionParameterf = _mesa_ConvolutionParameterf;
338 exec->ConvolutionParameterfv = _mesa_ConvolutionParameterfv;
339 exec->ConvolutionParameteri = _mesa_ConvolutionParameteri;
340 exec->ConvolutionParameteriv = _mesa_ConvolutionParameteriv;
341 exec->CopyColorSubTable = _mesa_CopyColorSubTable;
342 exec->CopyColorTable = _mesa_CopyColorTable;
343 exec->CopyConvolutionFilter1D = _mesa_CopyConvolutionFilter1D;
344 exec->CopyConvolutionFilter2D = _mesa_CopyConvolutionFilter2D;
345 exec->GetColorTable = _mesa_GetColorTable;
346 exec->GetColorTableParameterfv = _mesa_GetColorTableParameterfv;
347 exec->GetColorTableParameteriv = _mesa_GetColorTableParameteriv;
348 exec->GetConvolutionFilter = _mesa_GetConvolutionFilter;
349 exec->GetConvolutionParameterfv = _mesa_GetConvolutionParameterfv;
350 exec->GetConvolutionParameteriv = _mesa_GetConvolutionParameteriv;
351 exec->GetHistogram = _mesa_GetHistogram;
352 exec->GetHistogramParameterfv = _mesa_GetHistogramParameterfv;
353 exec->GetHistogramParameteriv = _mesa_GetHistogramParameteriv;
354 exec->GetMinmax = _mesa_GetMinmax;
355 exec->GetMinmaxParameterfv = _mesa_GetMinmaxParameterfv;
356 exec->GetMinmaxParameteriv = _mesa_GetMinmaxParameteriv;
357 exec->GetSeparableFilter = _mesa_GetSeparableFilter;
358 exec->Histogram = _mesa_Histogram;
359 exec->Minmax = _mesa_Minmax;
360 exec->ResetHistogram = _mesa_ResetHistogram;
361 exec->ResetMinmax = _mesa_ResetMinmax;
362 exec->SeparableFilter2D = _mesa_SeparableFilter2D;
363
364 /* 2. GL_EXT_blend_color */
365 #if 0
366 exec->BlendColorEXT = _mesa_BlendColorEXT;
367 #endif
368
369 /* 3. GL_EXT_polygon_offset */
370 exec->PolygonOffsetEXT = _mesa_PolygonOffsetEXT;
371
372 /* 6. GL_EXT_texture3d */
373 #if 0
374 exec->CopyTexSubImage3DEXT = _mesa_CopyTexSubImage3D;
375 exec->TexImage3DEXT = _mesa_TexImage3DEXT;
376 exec->TexSubImage3DEXT = _mesa_TexSubImage3D;
377 #endif
378
379 /* 11. GL_EXT_histogram */
380 exec->GetHistogramEXT = _mesa_GetHistogram;
381 exec->GetHistogramParameterfvEXT = _mesa_GetHistogramParameterfv;
382 exec->GetHistogramParameterivEXT = _mesa_GetHistogramParameteriv;
383 exec->GetMinmaxEXT = _mesa_GetMinmax;
384 exec->GetMinmaxParameterfvEXT = _mesa_GetMinmaxParameterfv;
385 exec->GetMinmaxParameterivEXT = _mesa_GetMinmaxParameteriv;
386
387 /* ?. GL_SGIX_pixel_texture */
388 exec->PixelTexGenSGIX = _mesa_PixelTexGenSGIX;
389
390 /* 15. GL_SGIS_pixel_texture */
391 exec->PixelTexGenParameteriSGIS = _mesa_PixelTexGenParameteriSGIS;
392 exec->PixelTexGenParameterivSGIS = _mesa_PixelTexGenParameterivSGIS;
393 exec->PixelTexGenParameterfSGIS = _mesa_PixelTexGenParameterfSGIS;
394 exec->PixelTexGenParameterfvSGIS = _mesa_PixelTexGenParameterfvSGIS;
395 exec->GetPixelTexGenParameterivSGIS = _mesa_GetPixelTexGenParameterivSGIS;
396 exec->GetPixelTexGenParameterfvSGIS = _mesa_GetPixelTexGenParameterfvSGIS;
397
398 /* 30. GL_EXT_vertex_array */
399 exec->ColorPointerEXT = _mesa_ColorPointerEXT;
400 exec->EdgeFlagPointerEXT = _mesa_EdgeFlagPointerEXT;
401 exec->IndexPointerEXT = _mesa_IndexPointerEXT;
402 exec->NormalPointerEXT = _mesa_NormalPointerEXT;
403 exec->TexCoordPointerEXT = _mesa_TexCoordPointerEXT;
404 exec->VertexPointerEXT = _mesa_VertexPointerEXT;
405
406 /* 37. GL_EXT_blend_minmax */
407 #if 0
408 exec->BlendEquationEXT = _mesa_BlendEquationEXT;
409 #endif
410
411 /* 54. GL_EXT_point_parameters */
412 exec->PointParameterfEXT = _mesa_PointParameterfEXT;
413 exec->PointParameterfvEXT = _mesa_PointParameterfvEXT;
414
415 /* 78. GL_EXT_paletted_texture */
416 #if 0
417 exec->ColorTableEXT = _mesa_ColorTableEXT;
418 exec->ColorSubTableEXT = _mesa_ColorSubTableEXT;
419 #endif
420 exec->GetColorTableEXT = _mesa_GetColorTable;
421 exec->GetColorTableParameterfvEXT = _mesa_GetColorTableParameterfv;
422 exec->GetColorTableParameterivEXT = _mesa_GetColorTableParameteriv;
423
424 /* 97. GL_EXT_compiled_vertex_array */
425 exec->LockArraysEXT = _mesa_LockArraysEXT;
426 exec->UnlockArraysEXT = _mesa_UnlockArraysEXT;
427
428 /* 148. GL_EXT_multi_draw_arrays */
429 exec->MultiDrawArraysEXT = _mesa_MultiDrawArraysEXT;
430 exec->MultiDrawElementsEXT = _mesa_MultiDrawElementsEXT;
431
432 /* 173. GL_INGR_blend_func_separate */
433 exec->BlendFuncSeparateEXT = _mesa_BlendFuncSeparateEXT;
434
435 /* 196. GL_MESA_resize_buffers */
436 exec->ResizeBuffersMESA = _mesa_ResizeBuffersMESA;
437
438 /* 197. GL_MESA_window_pos */
439 exec->WindowPos2dMESA = _mesa_WindowPos2dMESA;
440 exec->WindowPos2dvMESA = _mesa_WindowPos2dvMESA;
441 exec->WindowPos2fMESA = _mesa_WindowPos2fMESA;
442 exec->WindowPos2fvMESA = _mesa_WindowPos2fvMESA;
443 exec->WindowPos2iMESA = _mesa_WindowPos2iMESA;
444 exec->WindowPos2ivMESA = _mesa_WindowPos2ivMESA;
445 exec->WindowPos2sMESA = _mesa_WindowPos2sMESA;
446 exec->WindowPos2svMESA = _mesa_WindowPos2svMESA;
447 exec->WindowPos3dMESA = _mesa_WindowPos3dMESA;
448 exec->WindowPos3dvMESA = _mesa_WindowPos3dvMESA;
449 exec->WindowPos3fMESA = _mesa_WindowPos3fMESA;
450 exec->WindowPos3fvMESA = _mesa_WindowPos3fvMESA;
451 exec->WindowPos3iMESA = _mesa_WindowPos3iMESA;
452 exec->WindowPos3ivMESA = _mesa_WindowPos3ivMESA;
453 exec->WindowPos3sMESA = _mesa_WindowPos3sMESA;
454 exec->WindowPos3svMESA = _mesa_WindowPos3svMESA;
455 exec->WindowPos4dMESA = _mesa_WindowPos4dMESA;
456 exec->WindowPos4dvMESA = _mesa_WindowPos4dvMESA;
457 exec->WindowPos4fMESA = _mesa_WindowPos4fMESA;
458 exec->WindowPos4fvMESA = _mesa_WindowPos4fvMESA;
459 exec->WindowPos4iMESA = _mesa_WindowPos4iMESA;
460 exec->WindowPos4ivMESA = _mesa_WindowPos4ivMESA;
461 exec->WindowPos4sMESA = _mesa_WindowPos4sMESA;
462 exec->WindowPos4svMESA = _mesa_WindowPos4svMESA;
463
464 /* 233. GL_NV_vertex_program */
465 exec->BindProgramNV = _mesa_BindProgramNV;
466 exec->DeleteProgramsNV = _mesa_DeleteProgramsNV;
467 exec->ExecuteProgramNV = _mesa_ExecuteProgramNV;
468 exec->GenProgramsNV = _mesa_GenProgramsNV;
469 exec->AreProgramsResidentNV = _mesa_AreProgramsResidentNV;
470 exec->RequestResidentProgramsNV = _mesa_RequestResidentProgramsNV;
471 exec->GetProgramParameterfvNV = _mesa_GetProgramParameterfvNV;
472 exec->GetProgramParameterdvNV = _mesa_GetProgramParameterdvNV;
473 exec->GetProgramivNV = _mesa_GetProgramivNV;
474 exec->GetProgramStringNV = _mesa_GetProgramStringNV;
475 exec->GetTrackMatrixivNV = _mesa_GetTrackMatrixivNV;
476 exec->GetVertexAttribdvNV = _mesa_GetVertexAttribdvNV;
477 exec->GetVertexAttribfvNV = _mesa_GetVertexAttribfvNV;
478 exec->GetVertexAttribivNV = _mesa_GetVertexAttribivNV;
479 exec->GetVertexAttribPointervNV = _mesa_GetVertexAttribPointervNV;
480 exec->IsProgramNV = _mesa_IsProgramNV;
481 exec->LoadProgramNV = _mesa_LoadProgramNV;
482 exec->ProgramParameter4dNV = _mesa_ProgramParameter4dNV;
483 exec->ProgramParameter4dvNV = _mesa_ProgramParameter4dvNV;
484 exec->ProgramParameter4fNV = _mesa_ProgramParameter4fNV;
485 exec->ProgramParameter4fvNV = _mesa_ProgramParameter4fvNV;
486 exec->ProgramParameters4dvNV = _mesa_ProgramParameters4dvNV;
487 exec->ProgramParameters4fvNV = _mesa_ProgramParameters4fvNV;
488 exec->TrackMatrixNV = _mesa_TrackMatrixNV;
489 exec->VertexAttribPointerNV = _mesa_VertexAttribPointerNV;
490
491 /* 262. GL_NV_point_sprite */
492 exec->PointParameteriNV = _mesa_PointParameteriNV;
493 exec->PointParameterivNV = _mesa_PointParameterivNV;
494
495 /* 268. GL_EXT_stencil_two_side */
496 exec->ActiveStencilFaceEXT = _mesa_ActiveStencilFaceEXT;
497
498 /* ARB 1. GL_ARB_multitexture */
499 exec->ActiveTextureARB = _mesa_ActiveTextureARB;
500 exec->ClientActiveTextureARB = _mesa_ClientActiveTextureARB;
501
502 /* ARB 3. GL_ARB_transpose_matrix */
503 exec->LoadTransposeMatrixdARB = _mesa_LoadTransposeMatrixdARB;
504 exec->LoadTransposeMatrixfARB = _mesa_LoadTransposeMatrixfARB;
505 exec->MultTransposeMatrixdARB = _mesa_MultTransposeMatrixdARB;
506 exec->MultTransposeMatrixfARB = _mesa_MultTransposeMatrixfARB;
507
508 /* ARB 5. GL_ARB_multisample */
509 exec->SampleCoverageARB = _mesa_SampleCoverageARB;
510
511 /* ARB 12. GL_ARB_texture_compression */
512 exec->CompressedTexImage3DARB = _mesa_CompressedTexImage3DARB;
513 exec->CompressedTexImage2DARB = _mesa_CompressedTexImage2DARB;
514 exec->CompressedTexImage1DARB = _mesa_CompressedTexImage1DARB;
515 exec->CompressedTexSubImage3DARB = _mesa_CompressedTexSubImage3DARB;
516 exec->CompressedTexSubImage2DARB = _mesa_CompressedTexSubImage2DARB;
517 exec->CompressedTexSubImage1DARB = _mesa_CompressedTexSubImage1DARB;
518 exec->GetCompressedTexImageARB = _mesa_GetCompressedTexImageARB;
519
520 /* ARB 14. GL_ARB_point_parameters */
521 /* reuse EXT_point_parameters functions */
522
523 }
524
525
526
527 /**********************************************************************/
528 /***** State update logic *****/
529 /**********************************************************************/
530
531
532 /*
533 * Check polygon state and set DD_TRI_CULL_FRONT_BACK and/or DD_TRI_OFFSET
534 * in ctx->_TriangleCaps if needed.
535 */
536 static void
537 update_polygon( GLcontext *ctx )
538 {
539 ctx->_TriangleCaps &= ~(DD_TRI_CULL_FRONT_BACK | DD_TRI_OFFSET);
540
541 if (ctx->Polygon.CullFlag && ctx->Polygon.CullFaceMode == GL_FRONT_AND_BACK)
542 ctx->_TriangleCaps |= DD_TRI_CULL_FRONT_BACK;
543
544 /* Any Polygon offsets enabled? */
545 ctx->Polygon._OffsetAny = GL_FALSE;
546 if (ctx->Polygon.OffsetPoint ||
547 ctx->Polygon.OffsetLine ||
548 ctx->Polygon.OffsetFill) {
549 ctx->_TriangleCaps |= DD_TRI_OFFSET;
550 ctx->Polygon._OffsetAny = GL_TRUE;
551 }
552 }
553
554 static void
555 calculate_model_project_matrix( GLcontext *ctx )
556 {
557 _math_matrix_mul_matrix( &ctx->_ModelProjectMatrix,
558 ctx->ProjectionMatrixStack.Top,
559 ctx->ModelviewMatrixStack.Top );
560
561 _math_matrix_analyse( &ctx->_ModelProjectMatrix );
562 }
563
564 static void
565 update_modelview_scale( GLcontext *ctx )
566 {
567 ctx->_ModelViewInvScale = 1.0F;
568 if (ctx->ModelviewMatrixStack.Top->flags & (MAT_FLAG_UNIFORM_SCALE |
569 MAT_FLAG_GENERAL_SCALE |
570 MAT_FLAG_GENERAL_3D |
571 MAT_FLAG_GENERAL) ) {
572 const GLfloat *m = ctx->ModelviewMatrixStack.Top->inv;
573 GLfloat f = m[2] * m[2] + m[6] * m[6] + m[10] * m[10];
574 if (f < 1e-12) f = 1.0;
575 if (ctx->_NeedEyeCoords)
576 ctx->_ModelViewInvScale = (GLfloat) (1.0/GL_SQRT(f));
577 else
578 ctx->_ModelViewInvScale = (GLfloat) GL_SQRT(f);
579 }
580 }
581
582
583 /* Bring uptodate any state that relies on _NeedEyeCoords.
584 */
585 static void
586 update_tnl_spaces( GLcontext *ctx, GLuint oldneedeyecoords )
587 {
588 /* Check if the truth-value interpretations of the bitfields have
589 * changed:
590 */
591 if ((oldneedeyecoords == 0) != (ctx->_NeedEyeCoords == 0)) {
592 /* Recalculate all state that depends on _NeedEyeCoords.
593 */
594 update_modelview_scale(ctx);
595 _mesa_compute_light_positions( ctx );
596
597 if (ctx->Driver.LightingSpaceChange)
598 ctx->Driver.LightingSpaceChange( ctx );
599 }
600 else {
601 GLuint new_state = ctx->NewState;
602
603 /* Recalculate that same state only if it has been invalidated
604 * by other statechanges.
605 */
606 if (new_state & _NEW_MODELVIEW)
607 update_modelview_scale(ctx);
608
609 if (new_state & (_NEW_LIGHT|_NEW_MODELVIEW))
610 _mesa_compute_light_positions( ctx );
611 }
612 }
613
614
615 static void
616 update_drawbuffer( GLcontext *ctx )
617 {
618 ctx->DrawBuffer->_Xmin = 0;
619 ctx->DrawBuffer->_Ymin = 0;
620 ctx->DrawBuffer->_Xmax = ctx->DrawBuffer->Width;
621 ctx->DrawBuffer->_Ymax = ctx->DrawBuffer->Height;
622 if (ctx->Scissor.Enabled) {
623 if (ctx->Scissor.X > ctx->DrawBuffer->_Xmin) {
624 ctx->DrawBuffer->_Xmin = ctx->Scissor.X;
625 }
626 if (ctx->Scissor.Y > ctx->DrawBuffer->_Ymin) {
627 ctx->DrawBuffer->_Ymin = ctx->Scissor.Y;
628 }
629 if (ctx->Scissor.X + ctx->Scissor.Width < ctx->DrawBuffer->_Xmax) {
630 ctx->DrawBuffer->_Xmax = ctx->Scissor.X + ctx->Scissor.Width;
631 }
632 if (ctx->Scissor.Y + ctx->Scissor.Height < ctx->DrawBuffer->_Ymax) {
633 ctx->DrawBuffer->_Ymax = ctx->Scissor.Y + ctx->Scissor.Height;
634 }
635 }
636 }
637
638
639 /* NOTE: This routine references Tranform attribute values to compute
640 * userclip positions in clip space, but is only called on
641 * _NEW_PROJECTION. The _mesa_ClipPlane() function keeps these values
642 * up to date across changes to the Transform attributes.
643 */
644 static void
645 update_projection( GLcontext *ctx )
646 {
647 _math_matrix_analyse( ctx->ProjectionMatrixStack.Top );
648
649 /* Recompute clip plane positions in clipspace. This is also done
650 * in _mesa_ClipPlane().
651 */
652 if (ctx->Transform.ClipPlanesEnabled) {
653 GLuint p;
654 for (p = 0; p < ctx->Const.MaxClipPlanes; p++) {
655 if (ctx->Transform.ClipPlanesEnabled & (1 << p)) {
656 _mesa_transform_vector( ctx->Transform._ClipUserPlane[p],
657 ctx->Transform.EyeUserPlane[p],
658 ctx->ProjectionMatrixStack.Top->inv );
659 }
660 }
661 }
662 }
663
664
665 /*
666 * Return a bitmask of IMAGE_*_BIT flags which to indicate which
667 * pixel transfer operations are enabled.
668 */
669 static void
670 update_image_transfer_state(GLcontext *ctx)
671 {
672 GLuint mask = 0;
673
674 if (ctx->Pixel.RedScale != 1.0F || ctx->Pixel.RedBias != 0.0F ||
675 ctx->Pixel.GreenScale != 1.0F || ctx->Pixel.GreenBias != 0.0F ||
676 ctx->Pixel.BlueScale != 1.0F || ctx->Pixel.BlueBias != 0.0F ||
677 ctx->Pixel.AlphaScale != 1.0F || ctx->Pixel.AlphaBias != 0.0F)
678 mask |= IMAGE_SCALE_BIAS_BIT;
679
680 if (ctx->Pixel.IndexShift || ctx->Pixel.IndexOffset)
681 mask |= IMAGE_SHIFT_OFFSET_BIT;
682
683 if (ctx->Pixel.MapColorFlag)
684 mask |= IMAGE_MAP_COLOR_BIT;
685
686 if (ctx->Pixel.ColorTableEnabled)
687 mask |= IMAGE_COLOR_TABLE_BIT;
688
689 if (ctx->Pixel.Convolution1DEnabled ||
690 ctx->Pixel.Convolution2DEnabled ||
691 ctx->Pixel.Separable2DEnabled) {
692 mask |= IMAGE_CONVOLUTION_BIT;
693 if (ctx->Pixel.PostConvolutionScale[0] != 1.0F ||
694 ctx->Pixel.PostConvolutionScale[1] != 1.0F ||
695 ctx->Pixel.PostConvolutionScale[2] != 1.0F ||
696 ctx->Pixel.PostConvolutionScale[3] != 1.0F ||
697 ctx->Pixel.PostConvolutionBias[0] != 0.0F ||
698 ctx->Pixel.PostConvolutionBias[1] != 0.0F ||
699 ctx->Pixel.PostConvolutionBias[2] != 0.0F ||
700 ctx->Pixel.PostConvolutionBias[3] != 0.0F) {
701 mask |= IMAGE_POST_CONVOLUTION_SCALE_BIAS;
702 }
703 }
704
705 if (ctx->Pixel.PostConvolutionColorTableEnabled)
706 mask |= IMAGE_POST_CONVOLUTION_COLOR_TABLE_BIT;
707
708 if (ctx->ColorMatrixStack.Top->type != MATRIX_IDENTITY ||
709 ctx->Pixel.PostColorMatrixScale[0] != 1.0F ||
710 ctx->Pixel.PostColorMatrixBias[0] != 0.0F ||
711 ctx->Pixel.PostColorMatrixScale[1] != 1.0F ||
712 ctx->Pixel.PostColorMatrixBias[1] != 0.0F ||
713 ctx->Pixel.PostColorMatrixScale[2] != 1.0F ||
714 ctx->Pixel.PostColorMatrixBias[2] != 0.0F ||
715 ctx->Pixel.PostColorMatrixScale[3] != 1.0F ||
716 ctx->Pixel.PostColorMatrixBias[3] != 0.0F)
717 mask |= IMAGE_COLOR_MATRIX_BIT;
718
719 if (ctx->Pixel.PostColorMatrixColorTableEnabled)
720 mask |= IMAGE_POST_COLOR_MATRIX_COLOR_TABLE_BIT;
721
722 if (ctx->Pixel.HistogramEnabled)
723 mask |= IMAGE_HISTOGRAM_BIT;
724
725 if (ctx->Pixel.MinMaxEnabled)
726 mask |= IMAGE_MIN_MAX_BIT;
727
728 ctx->_ImageTransferState = mask;
729 }
730
731
732
733
734 /* Note: This routine refers to derived texture attribute values to
735 * compute the ENABLE_TEXMAT flags, but is only called on
736 * _NEW_TEXTURE_MATRIX. On changes to _NEW_TEXTURE, the ENABLE_TEXMAT
737 * flags are updated by _mesa_update_textures(), below.
738 *
739 * If both TEXTURE and TEXTURE_MATRIX change at once, these values
740 * will be computed twice.
741 */
742 static void
743 update_texture_matrices( GLcontext *ctx )
744 {
745 GLuint i;
746
747 ctx->Texture._TexMatEnabled = 0;
748
749 for (i=0; i < ctx->Const.MaxTextureUnits; i++) {
750 if (ctx->TextureMatrixStack[i].Top->flags & MAT_DIRTY) {
751 _math_matrix_analyse( ctx->TextureMatrixStack[i].Top );
752
753 if (ctx->Texture.Unit[i]._ReallyEnabled &&
754 ctx->TextureMatrixStack[i].Top->type != MATRIX_IDENTITY)
755 ctx->Texture._TexMatEnabled |= ENABLE_TEXMAT(i);
756
757 if (ctx->Driver.TextureMatrix)
758 ctx->Driver.TextureMatrix( ctx, i, ctx->TextureMatrixStack[i].Top);
759 }
760 }
761 }
762
763
764 /* Note: This routine refers to derived texture matrix values to
765 * compute the ENABLE_TEXMAT flags, but is only called on
766 * _NEW_TEXTURE. On changes to _NEW_TEXTURE_MATRIX, the ENABLE_TEXMAT
767 * flags are updated by _mesa_update_texture_matrices, above.
768 *
769 * If both TEXTURE and TEXTURE_MATRIX change at once, these values
770 * will be computed twice.
771 */
772 static void
773 update_texture_state( GLcontext *ctx )
774 {
775 GLuint unit;
776
777 ctx->Texture._ReallyEnabled = 0; /* XXX obsolete */
778 ctx->Texture._EnabledUnits = 0;
779 ctx->Texture._GenFlags = 0;
780 ctx->_NeedNormals &= ~NEED_NORMALS_TEXGEN;
781 ctx->_NeedEyeCoords &= ~NEED_EYE_TEXGEN;
782 ctx->Texture._TexMatEnabled = 0;
783 ctx->Texture._TexGenEnabled = 0;
784
785 /* Update texture unit state.
786 */
787 for (unit = 0; unit < ctx->Const.MaxTextureUnits; unit++) {
788 struct gl_texture_unit *texUnit = &ctx->Texture.Unit[unit];
789
790 texUnit->_ReallyEnabled = 0;
791 texUnit->_GenFlags = 0;
792
793 if (!texUnit->Enabled)
794 continue;
795
796 /* Look for the highest-priority texture target that's enabled and
797 * complete. That's the one we'll use for texturing.
798 */
799 if (texUnit->Enabled & TEXTURE_CUBE_BIT) {
800 struct gl_texture_object *texObj = texUnit->CurrentCubeMap;
801 if (!texObj->Complete) {
802 _mesa_test_texobj_completeness(ctx, texObj);
803 }
804 if (texObj->Complete) {
805 texUnit->_ReallyEnabled = TEXTURE_CUBE_BIT;
806 texUnit->_Current = texObj;
807 }
808 }
809
810 if (!texUnit->_ReallyEnabled && (texUnit->Enabled & TEXTURE_3D_BIT)) {
811 struct gl_texture_object *texObj = texUnit->Current3D;
812 if (!texObj->Complete) {
813 _mesa_test_texobj_completeness(ctx, texObj);
814 }
815 if (texObj->Complete) {
816 texUnit->_ReallyEnabled = TEXTURE_3D_BIT;
817 texUnit->_Current = texObj;
818 }
819 }
820
821 if (!texUnit->_ReallyEnabled && (texUnit->Enabled & TEXTURE_RECT_BIT)) {
822 struct gl_texture_object *texObj = texUnit->CurrentRect;
823 if (!texObj->Complete) {
824 _mesa_test_texobj_completeness(ctx, texObj);
825 }
826 if (texObj->Complete) {
827 texUnit->_ReallyEnabled = TEXTURE_RECT_BIT;
828 texUnit->_Current = texObj;
829 }
830 }
831
832 if (!texUnit->_ReallyEnabled && (texUnit->Enabled & TEXTURE_2D_BIT)) {
833 struct gl_texture_object *texObj = texUnit->Current2D;
834 if (!texObj->Complete) {
835 _mesa_test_texobj_completeness(ctx, texObj);
836 }
837 if (texObj->Complete) {
838 texUnit->_ReallyEnabled = TEXTURE_2D_BIT;
839 texUnit->_Current = texObj;
840 }
841 }
842
843 if (!texUnit->_ReallyEnabled && (texUnit->Enabled & TEXTURE_1D_BIT)) {
844 struct gl_texture_object *texObj = texUnit->Current1D;
845 if (!texObj->Complete) {
846 _mesa_test_texobj_completeness(ctx, texObj);
847 }
848 if (texObj->Complete) {
849 texUnit->_ReallyEnabled = TEXTURE_1D_BIT;
850 texUnit->_Current = texObj;
851 }
852 }
853
854 if (!texUnit->_ReallyEnabled) {
855 texUnit->_Current = NULL;
856 continue;
857 }
858
859 /* Texture._ReallyEnabled records the enable state for all units in
860 * one word.
861 */
862 {
863 GLuint flag = texUnit->_ReallyEnabled << (unit * NUM_TEXTURE_TARGETS);
864 ctx->Texture._ReallyEnabled |= flag; /* XXX obsolete field! */
865 if (texUnit->_ReallyEnabled)
866 ctx->Texture._EnabledUnits |= (1 << unit);
867 }
868
869 if (texUnit->TexGenEnabled) {
870 if (texUnit->TexGenEnabled & S_BIT) {
871 texUnit->_GenFlags |= texUnit->_GenBitS;
872 }
873 if (texUnit->TexGenEnabled & T_BIT) {
874 texUnit->_GenFlags |= texUnit->_GenBitT;
875 }
876 if (texUnit->TexGenEnabled & Q_BIT) {
877 texUnit->_GenFlags |= texUnit->_GenBitQ;
878 }
879 if (texUnit->TexGenEnabled & R_BIT) {
880 texUnit->_GenFlags |= texUnit->_GenBitR;
881 }
882
883 ctx->Texture._TexGenEnabled |= ENABLE_TEXGEN(unit);
884 ctx->Texture._GenFlags |= texUnit->_GenFlags;
885 }
886
887 if (ctx->TextureMatrixStack[unit].Top->type != MATRIX_IDENTITY)
888 ctx->Texture._TexMatEnabled |= ENABLE_TEXMAT(unit);
889 }
890
891 if (ctx->Texture._GenFlags & TEXGEN_NEED_NORMALS) {
892 ctx->_NeedNormals |= NEED_NORMALS_TEXGEN;
893 ctx->_NeedEyeCoords |= NEED_EYE_TEXGEN;
894 }
895
896 if (ctx->Texture._GenFlags & TEXGEN_NEED_EYE_COORD) {
897 ctx->_NeedEyeCoords |= NEED_EYE_TEXGEN;
898 }
899 }
900
901
902
903 /*
904 * If ctx->NewState is non-zero then this function MUST be called before
905 * rendering any primitive. Basically, function pointers and miscellaneous
906 * flags are updated to reflect the current state of the state machine.
907 *
908 * The above constraint is now maintained largely by the two Exec
909 * dispatch tables, which trigger the appropriate flush on transition
910 * between State and Geometry modes.
911 *
912 * Special care is taken with the derived value _NeedEyeCoords. This
913 * is a bitflag which is updated with information from a number of
914 * attribute groups (MODELVIEW, LIGHT, TEXTURE). A lot of derived
915 * state references this value, and must be treated with care to
916 * ensure that updates are done correctly. All state dependent on
917 * _NeedEyeCoords is calculated from within _mesa_update_tnl_spaces(),
918 * and from nowhere else.
919 */
920 void _mesa_update_state( GLcontext *ctx )
921 {
922 const GLuint new_state = ctx->NewState;
923 const GLuint oldneedeyecoords = ctx->_NeedEyeCoords;
924
925 if (MESA_VERBOSE & VERBOSE_STATE)
926 _mesa_print_state("_mesa_update_state", new_state);
927
928 if (new_state & _NEW_MODELVIEW)
929 _math_matrix_analyse( ctx->ModelviewMatrixStack.Top );
930
931 if (new_state & _NEW_PROJECTION)
932 update_projection( ctx );
933
934 if (new_state & _NEW_TEXTURE_MATRIX)
935 update_texture_matrices( ctx );
936
937 if (new_state & _NEW_COLOR_MATRIX)
938 _math_matrix_analyse( ctx->ColorMatrixStack.Top );
939
940 /* References ColorMatrix.type (derived above).
941 */
942 if (new_state & _IMAGE_NEW_TRANSFER_STATE)
943 update_image_transfer_state(ctx);
944
945 /* Contributes to NeedEyeCoords, NeedNormals.
946 */
947 if (new_state & _NEW_TEXTURE)
948 update_texture_state( ctx );
949
950 if (new_state & (_NEW_BUFFERS|_NEW_SCISSOR))
951 update_drawbuffer( ctx );
952
953 if (new_state & _NEW_POLYGON)
954 update_polygon( ctx );
955
956 /* Contributes to NeedEyeCoords, NeedNormals.
957 */
958 if (new_state & _NEW_LIGHT)
959 _mesa_update_lighting( ctx );
960
961 /* We can light in object space if the modelview matrix preserves
962 * lengths and relative angles.
963 */
964 if (new_state & (_NEW_MODELVIEW|_NEW_LIGHT)) {
965 ctx->_NeedEyeCoords &= ~NEED_EYE_LIGHT_MODELVIEW;
966 if (ctx->Light.Enabled &&
967 !TEST_MAT_FLAGS( ctx->ModelviewMatrixStack.Top, MAT_FLAGS_LENGTH_PRESERVING))
968 ctx->_NeedEyeCoords |= NEED_EYE_LIGHT_MODELVIEW;
969 }
970
971
972 #if 0
973 /* XXX this is a bit of a hack. We should be checking elsewhere if
974 * vertex program mode is enabled. We set _NeedEyeCoords to zero to
975 * ensure that the combined modelview/projection matrix is computed
976 * in calculate_model_project_matrix().
977 */
978 if (ctx->VertexProgram.Enabled)
979 ctx->_NeedEyeCoords = 0;
980 /* KW: it's now always computed.
981 */
982 #endif
983
984 /* Keep ModelviewProject uptodate always to allow tnl
985 * implementations that go model->clip even when eye is required.
986 */
987 if (new_state & (_NEW_MODELVIEW|_NEW_PROJECTION))
988 calculate_model_project_matrix(ctx);
989
990 /* ctx->_NeedEyeCoords is now uptodate.
991 *
992 * If the truth value of this variable has changed, update for the
993 * new lighting space and recompute the positions of lights and the
994 * normal transform.
995 *
996 * If the lighting space hasn't changed, may still need to recompute
997 * light positions & normal transforms for other reasons.
998 */
999 if (new_state & (_NEW_MODELVIEW |
1000 _NEW_LIGHT |
1001 _MESA_NEW_NEED_EYE_COORDS))
1002 update_tnl_spaces( ctx, oldneedeyecoords );
1003
1004 /*
1005 * Here the driver sets up all the ctx->Driver function pointers
1006 * to it's specific, private functions, and performs any
1007 * internal state management necessary, including invalidating
1008 * state of active modules.
1009 *
1010 * Set ctx->NewState to zero to avoid recursion if
1011 * Driver.UpdateState() has to call FLUSH_VERTICES(). (fixed?)
1012 */
1013 ctx->NewState = 0;
1014 ctx->Driver.UpdateState(ctx, new_state);
1015 ctx->Array.NewState = 0;
1016
1017 /* At this point we can do some assertions to be sure the required
1018 * device driver function pointers are all initialized.
1019 */
1020 ASSERT(ctx->Driver.GetString);
1021 ASSERT(ctx->Driver.UpdateState);
1022 ASSERT(ctx->Driver.Clear);
1023 ASSERT(ctx->Driver.GetBufferSize);
1024 if (ctx->Visual.accumRedBits > 0) {
1025 ASSERT(ctx->Driver.Accum);
1026 }
1027 ASSERT(ctx->Driver.DrawPixels);
1028 ASSERT(ctx->Driver.ReadPixels);
1029 ASSERT(ctx->Driver.CopyPixels);
1030 ASSERT(ctx->Driver.Bitmap);
1031 ASSERT(ctx->Driver.ResizeBuffers);
1032 ASSERT(ctx->Driver.TexImage1D);
1033 ASSERT(ctx->Driver.TexImage2D);
1034 ASSERT(ctx->Driver.TexImage3D);
1035 ASSERT(ctx->Driver.TexSubImage1D);
1036 ASSERT(ctx->Driver.TexSubImage2D);
1037 ASSERT(ctx->Driver.TexSubImage3D);
1038 ASSERT(ctx->Driver.CopyTexImage1D);
1039 ASSERT(ctx->Driver.CopyTexImage2D);
1040 ASSERT(ctx->Driver.CopyTexSubImage1D);
1041 ASSERT(ctx->Driver.CopyTexSubImage2D);
1042 ASSERT(ctx->Driver.CopyTexSubImage3D);
1043 if (ctx->Extensions.ARB_texture_compression) {
1044 #if 0 /* HW drivers need these, but not SW rasterizers */
1045 ASSERT(ctx->Driver.CompressedTexImage1D);
1046 ASSERT(ctx->Driver.CompressedTexImage2D);
1047 ASSERT(ctx->Driver.CompressedTexImage3D);
1048 ASSERT(ctx->Driver.CompressedTexSubImage1D);
1049 ASSERT(ctx->Driver.CompressedTexSubImage2D);
1050 ASSERT(ctx->Driver.CompressedTexSubImage3D);
1051 #endif
1052 }
1053 }
1054
1055 /* Is this helpful?
1056 */
1057 void
1058 _mesa_allow_light_in_model( GLcontext *ctx, GLboolean flag )
1059 {
1060 if (flag)
1061 ctx->_NeedEyeCoords &= ~NEED_EYE_DRIVER;
1062 else
1063 ctx->_NeedEyeCoords |= NEED_EYE_DRIVER;
1064
1065 ctx->NewState |= _NEW_POINT; /* one of the bits from
1066 * _MESA_NEW_NEED_EYE_COORDS.
1067 */
1068 }