mesa: Fix multithreaded buffer object refcounting.
[mesa.git] / src / mesa / main / attrib.c
1 /*
2 * Mesa 3-D graphics library
3 * Version: 7.6
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 #include "glheader.h"
27 #include "imports.h"
28 #include "accum.h"
29 #include "arrayobj.h"
30 #include "attrib.h"
31 #include "blend.h"
32 #include "buffers.h"
33 #include "bufferobj.h"
34 #include "clear.h"
35 #include "colormac.h"
36 #include "context.h"
37 #include "depth.h"
38 #include "enable.h"
39 #include "enums.h"
40 #include "fog.h"
41 #include "hint.h"
42 #include "light.h"
43 #include "lines.h"
44 #include "macros.h"
45 #include "matrix.h"
46 #include "mfeatures.h"
47 #include "multisample.h"
48 #include "points.h"
49 #include "polygon.h"
50 #include "scissor.h"
51 #include "stencil.h"
52 #include "texenv.h"
53 #include "texgen.h"
54 #include "texobj.h"
55 #include "texparam.h"
56 #include "texstate.h"
57 #include "varray.h"
58 #include "viewport.h"
59 #include "mtypes.h"
60 #include "main/dispatch.h"
61
62
63 /**
64 * glEnable()/glDisable() attribute group (GL_ENABLE_BIT).
65 */
66 struct gl_enable_attrib
67 {
68 GLboolean AlphaTest;
69 GLboolean AutoNormal;
70 GLboolean Blend;
71 GLbitfield ClipPlanes;
72 GLboolean ColorMaterial;
73 GLboolean CullFace;
74 GLboolean DepthClamp;
75 GLboolean DepthTest;
76 GLboolean Dither;
77 GLboolean Fog;
78 GLboolean Light[MAX_LIGHTS];
79 GLboolean Lighting;
80 GLboolean LineSmooth;
81 GLboolean LineStipple;
82 GLboolean IndexLogicOp;
83 GLboolean ColorLogicOp;
84
85 GLboolean Map1Color4;
86 GLboolean Map1Index;
87 GLboolean Map1Normal;
88 GLboolean Map1TextureCoord1;
89 GLboolean Map1TextureCoord2;
90 GLboolean Map1TextureCoord3;
91 GLboolean Map1TextureCoord4;
92 GLboolean Map1Vertex3;
93 GLboolean Map1Vertex4;
94 GLboolean Map1Attrib[16]; /* GL_NV_vertex_program */
95 GLboolean Map2Color4;
96 GLboolean Map2Index;
97 GLboolean Map2Normal;
98 GLboolean Map2TextureCoord1;
99 GLboolean Map2TextureCoord2;
100 GLboolean Map2TextureCoord3;
101 GLboolean Map2TextureCoord4;
102 GLboolean Map2Vertex3;
103 GLboolean Map2Vertex4;
104 GLboolean Map2Attrib[16]; /* GL_NV_vertex_program */
105
106 GLboolean Normalize;
107 GLboolean PixelTexture;
108 GLboolean PointSmooth;
109 GLboolean PolygonOffsetPoint;
110 GLboolean PolygonOffsetLine;
111 GLboolean PolygonOffsetFill;
112 GLboolean PolygonSmooth;
113 GLboolean PolygonStipple;
114 GLboolean RescaleNormals;
115 GLboolean Scissor;
116 GLboolean Stencil;
117 GLboolean StencilTwoSide; /* GL_EXT_stencil_two_side */
118 GLboolean MultisampleEnabled; /* GL_ARB_multisample */
119 GLboolean SampleAlphaToCoverage; /* GL_ARB_multisample */
120 GLboolean SampleAlphaToOne; /* GL_ARB_multisample */
121 GLboolean SampleCoverage; /* GL_ARB_multisample */
122 GLboolean SampleCoverageInvert; /* GL_ARB_multisample */
123 GLboolean RasterPositionUnclipped; /* GL_IBM_rasterpos_clip */
124
125 GLbitfield Texture[MAX_TEXTURE_UNITS];
126 GLbitfield TexGen[MAX_TEXTURE_UNITS];
127
128 /* GL_ARB_vertex_program / GL_NV_vertex_program */
129 GLboolean VertexProgram;
130 GLboolean VertexProgramPointSize;
131 GLboolean VertexProgramTwoSide;
132
133 /* GL_ARB_point_sprite / GL_NV_point_sprite */
134 GLboolean PointSprite;
135 GLboolean FragmentShaderATI;
136 };
137
138
139 /**
140 * Node for the attribute stack.
141 */
142 struct gl_attrib_node
143 {
144 GLbitfield kind;
145 void *data;
146 struct gl_attrib_node *next;
147 };
148
149
150
151 /**
152 * Special struct for saving/restoring texture state (GL_TEXTURE_BIT)
153 */
154 struct texture_state
155 {
156 struct gl_texture_attrib Texture; /**< The usual context state */
157
158 /** to save per texture object state (wrap modes, filters, etc): */
159 struct gl_texture_object SavedObj[MAX_TEXTURE_UNITS][NUM_TEXTURE_TARGETS];
160
161 /**
162 * To save references to texture objects (so they don't get accidentally
163 * deleted while saved in the attribute stack).
164 */
165 struct gl_texture_object *SavedTexRef[MAX_TEXTURE_UNITS][NUM_TEXTURE_TARGETS];
166 };
167
168
169 #if FEATURE_attrib_stack
170
171
172 /**
173 * Allocate new attribute node of given type/kind. Attach payload data.
174 * Insert it into the linked list named by 'head'.
175 */
176 static void
177 save_attrib_data(struct gl_attrib_node **head,
178 GLbitfield kind, void *payload)
179 {
180 struct gl_attrib_node *n = MALLOC_STRUCT(gl_attrib_node);
181 if (n) {
182 n->kind = kind;
183 n->data = payload;
184 /* insert at head */
185 n->next = *head;
186 *head = n;
187 }
188 else {
189 /* out of memory! */
190 }
191 }
192
193
194 void GLAPIENTRY
195 _mesa_PushAttrib(GLbitfield mask)
196 {
197 struct gl_attrib_node *head;
198
199 GET_CURRENT_CONTEXT(ctx);
200 ASSERT_OUTSIDE_BEGIN_END(ctx);
201
202 if (MESA_VERBOSE & VERBOSE_API)
203 _mesa_debug(ctx, "glPushAttrib %x\n", (int) mask);
204
205 if (ctx->AttribStackDepth >= MAX_ATTRIB_STACK_DEPTH) {
206 _mesa_error( ctx, GL_STACK_OVERFLOW, "glPushAttrib" );
207 return;
208 }
209
210 /* Build linked list of attribute nodes which save all attribute */
211 /* groups specified by the mask. */
212 head = NULL;
213
214 if (mask & GL_ACCUM_BUFFER_BIT) {
215 struct gl_accum_attrib *attr;
216 attr = MALLOC_STRUCT( gl_accum_attrib );
217 memcpy( attr, &ctx->Accum, sizeof(struct gl_accum_attrib) );
218 save_attrib_data(&head, GL_ACCUM_BUFFER_BIT, attr);
219 }
220
221 if (mask & GL_COLOR_BUFFER_BIT) {
222 GLuint i;
223 struct gl_colorbuffer_attrib *attr;
224 attr = MALLOC_STRUCT( gl_colorbuffer_attrib );
225 memcpy( attr, &ctx->Color, sizeof(struct gl_colorbuffer_attrib) );
226 /* push the Draw FBO's DrawBuffer[] state, not ctx->Color.DrawBuffer[] */
227 for (i = 0; i < ctx->Const.MaxDrawBuffers; i ++)
228 attr->DrawBuffer[i] = ctx->DrawBuffer->ColorDrawBuffer[i];
229 save_attrib_data(&head, GL_COLOR_BUFFER_BIT, attr);
230 }
231
232 if (mask & GL_CURRENT_BIT) {
233 struct gl_current_attrib *attr;
234 FLUSH_CURRENT( ctx, 0 );
235 attr = MALLOC_STRUCT( gl_current_attrib );
236 memcpy( attr, &ctx->Current, sizeof(struct gl_current_attrib) );
237 save_attrib_data(&head, GL_CURRENT_BIT, attr);
238 }
239
240 if (mask & GL_DEPTH_BUFFER_BIT) {
241 struct gl_depthbuffer_attrib *attr;
242 attr = MALLOC_STRUCT( gl_depthbuffer_attrib );
243 memcpy( attr, &ctx->Depth, sizeof(struct gl_depthbuffer_attrib) );
244 save_attrib_data(&head, GL_DEPTH_BUFFER_BIT, attr);
245 }
246
247 if (mask & GL_ENABLE_BIT) {
248 struct gl_enable_attrib *attr;
249 GLuint i;
250 attr = MALLOC_STRUCT( gl_enable_attrib );
251 /* Copy enable flags from all other attributes into the enable struct. */
252 attr->AlphaTest = ctx->Color.AlphaEnabled;
253 attr->AutoNormal = ctx->Eval.AutoNormal;
254 attr->Blend = ctx->Color.BlendEnabled;
255 attr->ClipPlanes = ctx->Transform.ClipPlanesEnabled;
256 attr->ColorMaterial = ctx->Light.ColorMaterialEnabled;
257 attr->CullFace = ctx->Polygon.CullFlag;
258 attr->DepthClamp = ctx->Transform.DepthClamp;
259 attr->DepthTest = ctx->Depth.Test;
260 attr->Dither = ctx->Color.DitherFlag;
261 attr->Fog = ctx->Fog.Enabled;
262 for (i = 0; i < ctx->Const.MaxLights; i++) {
263 attr->Light[i] = ctx->Light.Light[i].Enabled;
264 }
265 attr->Lighting = ctx->Light.Enabled;
266 attr->LineSmooth = ctx->Line.SmoothFlag;
267 attr->LineStipple = ctx->Line.StippleFlag;
268 attr->IndexLogicOp = ctx->Color.IndexLogicOpEnabled;
269 attr->ColorLogicOp = ctx->Color.ColorLogicOpEnabled;
270 attr->Map1Color4 = ctx->Eval.Map1Color4;
271 attr->Map1Index = ctx->Eval.Map1Index;
272 attr->Map1Normal = ctx->Eval.Map1Normal;
273 attr->Map1TextureCoord1 = ctx->Eval.Map1TextureCoord1;
274 attr->Map1TextureCoord2 = ctx->Eval.Map1TextureCoord2;
275 attr->Map1TextureCoord3 = ctx->Eval.Map1TextureCoord3;
276 attr->Map1TextureCoord4 = ctx->Eval.Map1TextureCoord4;
277 attr->Map1Vertex3 = ctx->Eval.Map1Vertex3;
278 attr->Map1Vertex4 = ctx->Eval.Map1Vertex4;
279 memcpy(attr->Map1Attrib, ctx->Eval.Map1Attrib, sizeof(ctx->Eval.Map1Attrib));
280 attr->Map2Color4 = ctx->Eval.Map2Color4;
281 attr->Map2Index = ctx->Eval.Map2Index;
282 attr->Map2Normal = ctx->Eval.Map2Normal;
283 attr->Map2TextureCoord1 = ctx->Eval.Map2TextureCoord1;
284 attr->Map2TextureCoord2 = ctx->Eval.Map2TextureCoord2;
285 attr->Map2TextureCoord3 = ctx->Eval.Map2TextureCoord3;
286 attr->Map2TextureCoord4 = ctx->Eval.Map2TextureCoord4;
287 attr->Map2Vertex3 = ctx->Eval.Map2Vertex3;
288 attr->Map2Vertex4 = ctx->Eval.Map2Vertex4;
289 memcpy(attr->Map2Attrib, ctx->Eval.Map2Attrib, sizeof(ctx->Eval.Map2Attrib));
290 attr->Normalize = ctx->Transform.Normalize;
291 attr->RasterPositionUnclipped = ctx->Transform.RasterPositionUnclipped;
292 attr->PointSmooth = ctx->Point.SmoothFlag;
293 attr->PointSprite = ctx->Point.PointSprite;
294 attr->PolygonOffsetPoint = ctx->Polygon.OffsetPoint;
295 attr->PolygonOffsetLine = ctx->Polygon.OffsetLine;
296 attr->PolygonOffsetFill = ctx->Polygon.OffsetFill;
297 attr->PolygonSmooth = ctx->Polygon.SmoothFlag;
298 attr->PolygonStipple = ctx->Polygon.StippleFlag;
299 attr->RescaleNormals = ctx->Transform.RescaleNormals;
300 attr->Scissor = ctx->Scissor.Enabled;
301 attr->Stencil = ctx->Stencil.Enabled;
302 attr->StencilTwoSide = ctx->Stencil.TestTwoSide;
303 attr->MultisampleEnabled = ctx->Multisample.Enabled;
304 attr->SampleAlphaToCoverage = ctx->Multisample.SampleAlphaToCoverage;
305 attr->SampleAlphaToOne = ctx->Multisample.SampleAlphaToOne;
306 attr->SampleCoverage = ctx->Multisample.SampleCoverage;
307 attr->SampleCoverageInvert = ctx->Multisample.SampleCoverageInvert;
308 for (i = 0; i < ctx->Const.MaxTextureUnits; i++) {
309 attr->Texture[i] = ctx->Texture.Unit[i].Enabled;
310 attr->TexGen[i] = ctx->Texture.Unit[i].TexGenEnabled;
311 }
312 /* GL_NV_vertex_program */
313 attr->VertexProgram = ctx->VertexProgram.Enabled;
314 attr->VertexProgramPointSize = ctx->VertexProgram.PointSizeEnabled;
315 attr->VertexProgramTwoSide = ctx->VertexProgram.TwoSideEnabled;
316 save_attrib_data(&head, GL_ENABLE_BIT, attr);
317 }
318
319 if (mask & GL_EVAL_BIT) {
320 struct gl_eval_attrib *attr;
321 attr = MALLOC_STRUCT( gl_eval_attrib );
322 memcpy( attr, &ctx->Eval, sizeof(struct gl_eval_attrib) );
323 save_attrib_data(&head, GL_EVAL_BIT, attr);
324 }
325
326 if (mask & GL_FOG_BIT) {
327 struct gl_fog_attrib *attr;
328 attr = MALLOC_STRUCT( gl_fog_attrib );
329 memcpy( attr, &ctx->Fog, sizeof(struct gl_fog_attrib) );
330 save_attrib_data(&head, GL_FOG_BIT, attr);
331 }
332
333 if (mask & GL_HINT_BIT) {
334 struct gl_hint_attrib *attr;
335 attr = MALLOC_STRUCT( gl_hint_attrib );
336 memcpy( attr, &ctx->Hint, sizeof(struct gl_hint_attrib) );
337 save_attrib_data(&head, GL_HINT_BIT, attr);
338 }
339
340 if (mask & GL_LIGHTING_BIT) {
341 struct gl_light_attrib *attr;
342 FLUSH_CURRENT(ctx, 0); /* flush material changes */
343 attr = MALLOC_STRUCT( gl_light_attrib );
344 memcpy( attr, &ctx->Light, sizeof(struct gl_light_attrib) );
345 save_attrib_data(&head, GL_LIGHTING_BIT, attr);
346 }
347
348 if (mask & GL_LINE_BIT) {
349 struct gl_line_attrib *attr;
350 attr = MALLOC_STRUCT( gl_line_attrib );
351 memcpy( attr, &ctx->Line, sizeof(struct gl_line_attrib) );
352 save_attrib_data(&head, GL_LINE_BIT, attr);
353 }
354
355 if (mask & GL_LIST_BIT) {
356 struct gl_list_attrib *attr;
357 attr = MALLOC_STRUCT( gl_list_attrib );
358 memcpy( attr, &ctx->List, sizeof(struct gl_list_attrib) );
359 save_attrib_data(&head, GL_LIST_BIT, attr);
360 }
361
362 if (mask & GL_PIXEL_MODE_BIT) {
363 struct gl_pixel_attrib *attr;
364 attr = MALLOC_STRUCT( gl_pixel_attrib );
365 memcpy( attr, &ctx->Pixel, sizeof(struct gl_pixel_attrib) );
366 /* push the Read FBO's ReadBuffer state, not ctx->Pixel.ReadBuffer */
367 attr->ReadBuffer = ctx->ReadBuffer->ColorReadBuffer;
368 save_attrib_data(&head, GL_PIXEL_MODE_BIT, attr);
369 }
370
371 if (mask & GL_POINT_BIT) {
372 struct gl_point_attrib *attr;
373 attr = MALLOC_STRUCT( gl_point_attrib );
374 memcpy( attr, &ctx->Point, sizeof(struct gl_point_attrib) );
375 save_attrib_data(&head, GL_POINT_BIT, attr);
376 }
377
378 if (mask & GL_POLYGON_BIT) {
379 struct gl_polygon_attrib *attr;
380 attr = MALLOC_STRUCT( gl_polygon_attrib );
381 memcpy( attr, &ctx->Polygon, sizeof(struct gl_polygon_attrib) );
382 save_attrib_data(&head, GL_POLYGON_BIT, attr);
383 }
384
385 if (mask & GL_POLYGON_STIPPLE_BIT) {
386 GLuint *stipple;
387 stipple = (GLuint *) MALLOC( 32*sizeof(GLuint) );
388 memcpy( stipple, ctx->PolygonStipple, 32*sizeof(GLuint) );
389 save_attrib_data(&head, GL_POLYGON_STIPPLE_BIT, stipple);
390 }
391
392 if (mask & GL_SCISSOR_BIT) {
393 struct gl_scissor_attrib *attr;
394 attr = MALLOC_STRUCT( gl_scissor_attrib );
395 memcpy( attr, &ctx->Scissor, sizeof(struct gl_scissor_attrib) );
396 save_attrib_data(&head, GL_SCISSOR_BIT, attr);
397 }
398
399 if (mask & GL_STENCIL_BUFFER_BIT) {
400 struct gl_stencil_attrib *attr;
401 attr = MALLOC_STRUCT( gl_stencil_attrib );
402 memcpy( attr, &ctx->Stencil, sizeof(struct gl_stencil_attrib) );
403 save_attrib_data(&head, GL_STENCIL_BUFFER_BIT, attr);
404 }
405
406 if (mask & GL_TEXTURE_BIT) {
407 struct texture_state *texstate = CALLOC_STRUCT(texture_state);
408 GLuint u, tex;
409
410 if (!texstate) {
411 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glPushAttrib(GL_TEXTURE_BIT)");
412 goto end;
413 }
414
415 _mesa_lock_context_textures(ctx);
416
417 /* copy/save the bulk of texture state here */
418 memcpy(&texstate->Texture, &ctx->Texture, sizeof(ctx->Texture));
419
420 /* Save references to the currently bound texture objects so they don't
421 * accidentally get deleted while referenced in the attribute stack.
422 */
423 for (u = 0; u < ctx->Const.MaxTextureUnits; u++) {
424 for (tex = 0; tex < NUM_TEXTURE_TARGETS; tex++) {
425 _mesa_reference_texobj(&texstate->SavedTexRef[u][tex],
426 ctx->Texture.Unit[u].CurrentTex[tex]);
427 }
428 }
429
430 /* copy state/contents of the currently bound texture objects */
431 for (u = 0; u < ctx->Const.MaxTextureUnits; u++) {
432 for (tex = 0; tex < NUM_TEXTURE_TARGETS; tex++) {
433 _mesa_copy_texture_object(&texstate->SavedObj[u][tex],
434 ctx->Texture.Unit[u].CurrentTex[tex]);
435 }
436 }
437
438 _mesa_unlock_context_textures(ctx);
439
440 save_attrib_data(&head, GL_TEXTURE_BIT, texstate);
441 }
442
443 if (mask & GL_TRANSFORM_BIT) {
444 struct gl_transform_attrib *attr;
445 attr = MALLOC_STRUCT( gl_transform_attrib );
446 memcpy( attr, &ctx->Transform, sizeof(struct gl_transform_attrib) );
447 save_attrib_data(&head, GL_TRANSFORM_BIT, attr);
448 }
449
450 if (mask & GL_VIEWPORT_BIT) {
451 struct gl_viewport_attrib *attr;
452 attr = MALLOC_STRUCT( gl_viewport_attrib );
453 memcpy( attr, &ctx->Viewport, sizeof(struct gl_viewport_attrib) );
454 save_attrib_data(&head, GL_VIEWPORT_BIT, attr);
455 }
456
457 /* GL_ARB_multisample */
458 if (mask & GL_MULTISAMPLE_BIT_ARB) {
459 struct gl_multisample_attrib *attr;
460 attr = MALLOC_STRUCT( gl_multisample_attrib );
461 memcpy( attr, &ctx->Multisample, sizeof(struct gl_multisample_attrib) );
462 save_attrib_data(&head, GL_MULTISAMPLE_BIT_ARB, attr);
463 }
464
465 end:
466 ctx->AttribStack[ctx->AttribStackDepth] = head;
467 ctx->AttribStackDepth++;
468 }
469
470
471
472 static void
473 pop_enable_group(struct gl_context *ctx, const struct gl_enable_attrib *enable)
474 {
475 const GLuint curTexUnitSave = ctx->Texture.CurrentUnit;
476 GLuint i;
477
478 #define TEST_AND_UPDATE(VALUE, NEWVALUE, ENUM) \
479 if ((VALUE) != (NEWVALUE)) { \
480 _mesa_set_enable( ctx, ENUM, (NEWVALUE) ); \
481 }
482
483 TEST_AND_UPDATE(ctx->Color.AlphaEnabled, enable->AlphaTest, GL_ALPHA_TEST);
484 if (ctx->Color.BlendEnabled != enable->Blend) {
485 if (ctx->Extensions.EXT_draw_buffers2) {
486 GLuint i;
487 for (i = 0; i < ctx->Const.MaxDrawBuffers; i++) {
488 _mesa_set_enablei(ctx, GL_BLEND, i, (enable->Blend >> i) & 1);
489 }
490 }
491 else {
492 _mesa_set_enable(ctx, GL_BLEND, (enable->Blend & 1));
493 }
494 }
495
496 for (i=0;i<ctx->Const.MaxClipPlanes;i++) {
497 const GLuint mask = 1 << i;
498 if ((ctx->Transform.ClipPlanesEnabled & mask) != (enable->ClipPlanes & mask))
499 _mesa_set_enable(ctx, (GLenum) (GL_CLIP_PLANE0 + i),
500 !!(enable->ClipPlanes & mask));
501 }
502
503 TEST_AND_UPDATE(ctx->Light.ColorMaterialEnabled, enable->ColorMaterial,
504 GL_COLOR_MATERIAL);
505 TEST_AND_UPDATE(ctx->Polygon.CullFlag, enable->CullFace, GL_CULL_FACE);
506 TEST_AND_UPDATE(ctx->Transform.DepthClamp, enable->DepthClamp,
507 GL_DEPTH_CLAMP);
508 TEST_AND_UPDATE(ctx->Depth.Test, enable->DepthTest, GL_DEPTH_TEST);
509 TEST_AND_UPDATE(ctx->Color.DitherFlag, enable->Dither, GL_DITHER);
510 TEST_AND_UPDATE(ctx->Fog.Enabled, enable->Fog, GL_FOG);
511 TEST_AND_UPDATE(ctx->Light.Enabled, enable->Lighting, GL_LIGHTING);
512 TEST_AND_UPDATE(ctx->Line.SmoothFlag, enable->LineSmooth, GL_LINE_SMOOTH);
513 TEST_AND_UPDATE(ctx->Line.StippleFlag, enable->LineStipple,
514 GL_LINE_STIPPLE);
515 TEST_AND_UPDATE(ctx->Color.IndexLogicOpEnabled, enable->IndexLogicOp,
516 GL_INDEX_LOGIC_OP);
517 TEST_AND_UPDATE(ctx->Color.ColorLogicOpEnabled, enable->ColorLogicOp,
518 GL_COLOR_LOGIC_OP);
519
520 TEST_AND_UPDATE(ctx->Eval.Map1Color4, enable->Map1Color4, GL_MAP1_COLOR_4);
521 TEST_AND_UPDATE(ctx->Eval.Map1Index, enable->Map1Index, GL_MAP1_INDEX);
522 TEST_AND_UPDATE(ctx->Eval.Map1Normal, enable->Map1Normal, GL_MAP1_NORMAL);
523 TEST_AND_UPDATE(ctx->Eval.Map1TextureCoord1, enable->Map1TextureCoord1,
524 GL_MAP1_TEXTURE_COORD_1);
525 TEST_AND_UPDATE(ctx->Eval.Map1TextureCoord2, enable->Map1TextureCoord2,
526 GL_MAP1_TEXTURE_COORD_2);
527 TEST_AND_UPDATE(ctx->Eval.Map1TextureCoord3, enable->Map1TextureCoord3,
528 GL_MAP1_TEXTURE_COORD_3);
529 TEST_AND_UPDATE(ctx->Eval.Map1TextureCoord4, enable->Map1TextureCoord4,
530 GL_MAP1_TEXTURE_COORD_4);
531 TEST_AND_UPDATE(ctx->Eval.Map1Vertex3, enable->Map1Vertex3,
532 GL_MAP1_VERTEX_3);
533 TEST_AND_UPDATE(ctx->Eval.Map1Vertex4, enable->Map1Vertex4,
534 GL_MAP1_VERTEX_4);
535 for (i = 0; i < 16; i++) {
536 TEST_AND_UPDATE(ctx->Eval.Map1Attrib[i], enable->Map1Attrib[i],
537 GL_MAP1_VERTEX_ATTRIB0_4_NV + i);
538 }
539
540 TEST_AND_UPDATE(ctx->Eval.Map2Color4, enable->Map2Color4, GL_MAP2_COLOR_4);
541 TEST_AND_UPDATE(ctx->Eval.Map2Index, enable->Map2Index, GL_MAP2_INDEX);
542 TEST_AND_UPDATE(ctx->Eval.Map2Normal, enable->Map2Normal, GL_MAP2_NORMAL);
543 TEST_AND_UPDATE(ctx->Eval.Map2TextureCoord1, enable->Map2TextureCoord1,
544 GL_MAP2_TEXTURE_COORD_1);
545 TEST_AND_UPDATE(ctx->Eval.Map2TextureCoord2, enable->Map2TextureCoord2,
546 GL_MAP2_TEXTURE_COORD_2);
547 TEST_AND_UPDATE(ctx->Eval.Map2TextureCoord3, enable->Map2TextureCoord3,
548 GL_MAP2_TEXTURE_COORD_3);
549 TEST_AND_UPDATE(ctx->Eval.Map2TextureCoord4, enable->Map2TextureCoord4,
550 GL_MAP2_TEXTURE_COORD_4);
551 TEST_AND_UPDATE(ctx->Eval.Map2Vertex3, enable->Map2Vertex3,
552 GL_MAP2_VERTEX_3);
553 TEST_AND_UPDATE(ctx->Eval.Map2Vertex4, enable->Map2Vertex4,
554 GL_MAP2_VERTEX_4);
555 for (i = 0; i < 16; i++) {
556 TEST_AND_UPDATE(ctx->Eval.Map2Attrib[i], enable->Map2Attrib[i],
557 GL_MAP2_VERTEX_ATTRIB0_4_NV + i);
558 }
559
560 TEST_AND_UPDATE(ctx->Eval.AutoNormal, enable->AutoNormal, GL_AUTO_NORMAL);
561 TEST_AND_UPDATE(ctx->Transform.Normalize, enable->Normalize, GL_NORMALIZE);
562 TEST_AND_UPDATE(ctx->Transform.RescaleNormals, enable->RescaleNormals,
563 GL_RESCALE_NORMAL_EXT);
564 TEST_AND_UPDATE(ctx->Transform.RasterPositionUnclipped,
565 enable->RasterPositionUnclipped,
566 GL_RASTER_POSITION_UNCLIPPED_IBM);
567 TEST_AND_UPDATE(ctx->Point.SmoothFlag, enable->PointSmooth,
568 GL_POINT_SMOOTH);
569 if (ctx->Extensions.NV_point_sprite || ctx->Extensions.ARB_point_sprite) {
570 TEST_AND_UPDATE(ctx->Point.PointSprite, enable->PointSprite,
571 GL_POINT_SPRITE_NV);
572 }
573 TEST_AND_UPDATE(ctx->Polygon.OffsetPoint, enable->PolygonOffsetPoint,
574 GL_POLYGON_OFFSET_POINT);
575 TEST_AND_UPDATE(ctx->Polygon.OffsetLine, enable->PolygonOffsetLine,
576 GL_POLYGON_OFFSET_LINE);
577 TEST_AND_UPDATE(ctx->Polygon.OffsetFill, enable->PolygonOffsetFill,
578 GL_POLYGON_OFFSET_FILL);
579 TEST_AND_UPDATE(ctx->Polygon.SmoothFlag, enable->PolygonSmooth,
580 GL_POLYGON_SMOOTH);
581 TEST_AND_UPDATE(ctx->Polygon.StippleFlag, enable->PolygonStipple,
582 GL_POLYGON_STIPPLE);
583 TEST_AND_UPDATE(ctx->Scissor.Enabled, enable->Scissor, GL_SCISSOR_TEST);
584 TEST_AND_UPDATE(ctx->Stencil.Enabled, enable->Stencil, GL_STENCIL_TEST);
585 if (ctx->Extensions.EXT_stencil_two_side) {
586 TEST_AND_UPDATE(ctx->Stencil.TestTwoSide, enable->StencilTwoSide, GL_STENCIL_TEST_TWO_SIDE_EXT);
587 }
588 TEST_AND_UPDATE(ctx->Multisample.Enabled, enable->MultisampleEnabled,
589 GL_MULTISAMPLE_ARB);
590 TEST_AND_UPDATE(ctx->Multisample.SampleAlphaToCoverage,
591 enable->SampleAlphaToCoverage,
592 GL_SAMPLE_ALPHA_TO_COVERAGE_ARB);
593 TEST_AND_UPDATE(ctx->Multisample.SampleAlphaToOne,
594 enable->SampleAlphaToOne,
595 GL_SAMPLE_ALPHA_TO_ONE_ARB);
596 TEST_AND_UPDATE(ctx->Multisample.SampleCoverage,
597 enable->SampleCoverage,
598 GL_SAMPLE_COVERAGE_ARB);
599 TEST_AND_UPDATE(ctx->Multisample.SampleCoverageInvert,
600 enable->SampleCoverageInvert,
601 GL_SAMPLE_COVERAGE_INVERT_ARB);
602 /* GL_ARB_vertex_program, GL_NV_vertex_program */
603 TEST_AND_UPDATE(ctx->VertexProgram.Enabled,
604 enable->VertexProgram,
605 GL_VERTEX_PROGRAM_ARB);
606 TEST_AND_UPDATE(ctx->VertexProgram.PointSizeEnabled,
607 enable->VertexProgramPointSize,
608 GL_VERTEX_PROGRAM_POINT_SIZE_ARB);
609 TEST_AND_UPDATE(ctx->VertexProgram.TwoSideEnabled,
610 enable->VertexProgramTwoSide,
611 GL_VERTEX_PROGRAM_TWO_SIDE_ARB);
612
613 #undef TEST_AND_UPDATE
614
615 /* texture unit enables */
616 for (i = 0; i < ctx->Const.MaxTextureUnits; i++) {
617 const GLbitfield enabled = enable->Texture[i];
618 const GLbitfield genEnabled = enable->TexGen[i];
619
620 if (ctx->Texture.Unit[i].Enabled != enabled) {
621 _mesa_ActiveTextureARB(GL_TEXTURE0 + i);
622
623 _mesa_set_enable(ctx, GL_TEXTURE_1D, !!(enabled & TEXTURE_1D_BIT));
624 _mesa_set_enable(ctx, GL_TEXTURE_2D, !!(enabled & TEXTURE_2D_BIT));
625 _mesa_set_enable(ctx, GL_TEXTURE_3D, !!(enabled & TEXTURE_3D_BIT));
626 if (ctx->Extensions.NV_texture_rectangle) {
627 _mesa_set_enable(ctx, GL_TEXTURE_RECTANGLE_ARB,
628 !!(enabled & TEXTURE_RECT_BIT));
629 }
630 if (ctx->Extensions.ARB_texture_cube_map) {
631 _mesa_set_enable(ctx, GL_TEXTURE_CUBE_MAP,
632 !!(enabled & TEXTURE_CUBE_BIT));
633 }
634 if (ctx->Extensions.MESA_texture_array) {
635 _mesa_set_enable(ctx, GL_TEXTURE_1D_ARRAY_EXT,
636 !!(enabled & TEXTURE_1D_ARRAY_BIT));
637 _mesa_set_enable(ctx, GL_TEXTURE_2D_ARRAY_EXT,
638 !!(enabled & TEXTURE_2D_ARRAY_BIT));
639 }
640 }
641
642 if (ctx->Texture.Unit[i].TexGenEnabled != genEnabled) {
643 _mesa_ActiveTextureARB(GL_TEXTURE0 + i);
644 _mesa_set_enable(ctx, GL_TEXTURE_GEN_S, !!(genEnabled & S_BIT));
645 _mesa_set_enable(ctx, GL_TEXTURE_GEN_T, !!(genEnabled & T_BIT));
646 _mesa_set_enable(ctx, GL_TEXTURE_GEN_R, !!(genEnabled & R_BIT));
647 _mesa_set_enable(ctx, GL_TEXTURE_GEN_Q, !!(genEnabled & Q_BIT));
648 }
649 }
650
651 _mesa_ActiveTextureARB(GL_TEXTURE0 + curTexUnitSave);
652 }
653
654
655 /**
656 * Pop/restore texture attribute/group state.
657 */
658 static void
659 pop_texture_group(struct gl_context *ctx, struct texture_state *texstate)
660 {
661 GLuint u;
662
663 _mesa_lock_context_textures(ctx);
664
665 for (u = 0; u < ctx->Const.MaxTextureUnits; u++) {
666 const struct gl_texture_unit *unit = &texstate->Texture.Unit[u];
667 GLuint tgt;
668
669 _mesa_ActiveTextureARB(GL_TEXTURE0_ARB + u);
670 _mesa_set_enable(ctx, GL_TEXTURE_1D, !!(unit->Enabled & TEXTURE_1D_BIT));
671 _mesa_set_enable(ctx, GL_TEXTURE_2D, !!(unit->Enabled & TEXTURE_2D_BIT));
672 _mesa_set_enable(ctx, GL_TEXTURE_3D, !!(unit->Enabled & TEXTURE_3D_BIT));
673 if (ctx->Extensions.ARB_texture_cube_map) {
674 _mesa_set_enable(ctx, GL_TEXTURE_CUBE_MAP_ARB,
675 !!(unit->Enabled & TEXTURE_CUBE_BIT));
676 }
677 if (ctx->Extensions.NV_texture_rectangle) {
678 _mesa_set_enable(ctx, GL_TEXTURE_RECTANGLE_NV,
679 !!(unit->Enabled & TEXTURE_RECT_BIT));
680 }
681 if (ctx->Extensions.MESA_texture_array) {
682 _mesa_set_enable(ctx, GL_TEXTURE_1D_ARRAY_EXT,
683 !!(unit->Enabled & TEXTURE_1D_ARRAY_BIT));
684 _mesa_set_enable(ctx, GL_TEXTURE_2D_ARRAY_EXT,
685 !!(unit->Enabled & TEXTURE_2D_ARRAY_BIT));
686 }
687
688 _mesa_TexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, unit->EnvMode);
689 _mesa_TexEnvfv(GL_TEXTURE_ENV, GL_TEXTURE_ENV_COLOR, unit->EnvColor);
690 _mesa_TexGeni(GL_S, GL_TEXTURE_GEN_MODE, unit->GenS.Mode);
691 _mesa_TexGeni(GL_T, GL_TEXTURE_GEN_MODE, unit->GenT.Mode);
692 _mesa_TexGeni(GL_R, GL_TEXTURE_GEN_MODE, unit->GenR.Mode);
693 _mesa_TexGeni(GL_Q, GL_TEXTURE_GEN_MODE, unit->GenQ.Mode);
694 _mesa_TexGenfv(GL_S, GL_OBJECT_PLANE, unit->GenS.ObjectPlane);
695 _mesa_TexGenfv(GL_T, GL_OBJECT_PLANE, unit->GenT.ObjectPlane);
696 _mesa_TexGenfv(GL_R, GL_OBJECT_PLANE, unit->GenR.ObjectPlane);
697 _mesa_TexGenfv(GL_Q, GL_OBJECT_PLANE, unit->GenQ.ObjectPlane);
698 /* Eye plane done differently to avoid re-transformation */
699 {
700 struct gl_texture_unit *destUnit = &ctx->Texture.Unit[u];
701 COPY_4FV(destUnit->GenS.EyePlane, unit->GenS.EyePlane);
702 COPY_4FV(destUnit->GenT.EyePlane, unit->GenT.EyePlane);
703 COPY_4FV(destUnit->GenR.EyePlane, unit->GenR.EyePlane);
704 COPY_4FV(destUnit->GenQ.EyePlane, unit->GenQ.EyePlane);
705 if (ctx->Driver.TexGen) {
706 ctx->Driver.TexGen(ctx, GL_S, GL_EYE_PLANE, unit->GenS.EyePlane);
707 ctx->Driver.TexGen(ctx, GL_T, GL_EYE_PLANE, unit->GenT.EyePlane);
708 ctx->Driver.TexGen(ctx, GL_R, GL_EYE_PLANE, unit->GenR.EyePlane);
709 ctx->Driver.TexGen(ctx, GL_Q, GL_EYE_PLANE, unit->GenQ.EyePlane);
710 }
711 }
712 _mesa_set_enable(ctx, GL_TEXTURE_GEN_S, !!(unit->TexGenEnabled & S_BIT));
713 _mesa_set_enable(ctx, GL_TEXTURE_GEN_T, !!(unit->TexGenEnabled & T_BIT));
714 _mesa_set_enable(ctx, GL_TEXTURE_GEN_R, !!(unit->TexGenEnabled & R_BIT));
715 _mesa_set_enable(ctx, GL_TEXTURE_GEN_Q, !!(unit->TexGenEnabled & Q_BIT));
716 _mesa_TexEnvf(GL_TEXTURE_FILTER_CONTROL, GL_TEXTURE_LOD_BIAS,
717 unit->LodBias);
718 _mesa_TexEnvi(GL_TEXTURE_ENV, GL_COMBINE_RGB,
719 unit->Combine.ModeRGB);
720 _mesa_TexEnvi(GL_TEXTURE_ENV, GL_COMBINE_ALPHA,
721 unit->Combine.ModeA);
722 {
723 const GLuint n = ctx->Extensions.NV_texture_env_combine4 ? 4 : 3;
724 GLuint i;
725 for (i = 0; i < n; i++) {
726 _mesa_TexEnvi(GL_TEXTURE_ENV, GL_SOURCE0_RGB + i,
727 unit->Combine.SourceRGB[i]);
728 _mesa_TexEnvi(GL_TEXTURE_ENV, GL_SOURCE0_ALPHA + i,
729 unit->Combine.SourceA[i]);
730 _mesa_TexEnvi(GL_TEXTURE_ENV, GL_OPERAND0_RGB + i,
731 unit->Combine.OperandRGB[i]);
732 _mesa_TexEnvi(GL_TEXTURE_ENV, GL_OPERAND0_ALPHA + i,
733 unit->Combine.OperandA[i]);
734 }
735 }
736 _mesa_TexEnvi(GL_TEXTURE_ENV, GL_RGB_SCALE,
737 1 << unit->Combine.ScaleShiftRGB);
738 _mesa_TexEnvi(GL_TEXTURE_ENV, GL_ALPHA_SCALE,
739 1 << unit->Combine.ScaleShiftA);
740
741 /* Restore texture object state for each target */
742 for (tgt = 0; tgt < NUM_TEXTURE_TARGETS; tgt++) {
743 const struct gl_texture_object *obj = NULL;
744 const struct gl_sampler_object *samp;
745 GLenum target;
746
747 obj = &texstate->SavedObj[u][tgt];
748
749 /* don't restore state for unsupported targets to prevent
750 * raising GL errors.
751 */
752 if (obj->Target == GL_TEXTURE_CUBE_MAP_ARB &&
753 !ctx->Extensions.ARB_texture_cube_map) {
754 continue;
755 }
756 else if (obj->Target == GL_TEXTURE_RECTANGLE_NV &&
757 !ctx->Extensions.NV_texture_rectangle) {
758 continue;
759 }
760 else if ((obj->Target == GL_TEXTURE_1D_ARRAY_EXT ||
761 obj->Target == GL_TEXTURE_2D_ARRAY_EXT) &&
762 !ctx->Extensions.MESA_texture_array) {
763 continue;
764 }
765 else if (obj->Target == GL_TEXTURE_BUFFER)
766 continue;
767
768 target = obj->Target;
769
770 _mesa_BindTexture(target, obj->Name);
771
772 samp = &obj->Sampler;
773
774 _mesa_TexParameterfv(target, GL_TEXTURE_BORDER_COLOR, samp->BorderColor.f);
775 _mesa_TexParameteri(target, GL_TEXTURE_WRAP_S, samp->WrapS);
776 _mesa_TexParameteri(target, GL_TEXTURE_WRAP_T, samp->WrapT);
777 _mesa_TexParameteri(target, GL_TEXTURE_WRAP_R, samp->WrapR);
778 _mesa_TexParameteri(target, GL_TEXTURE_MIN_FILTER, samp->MinFilter);
779 _mesa_TexParameteri(target, GL_TEXTURE_MAG_FILTER, samp->MagFilter);
780 _mesa_TexParameterf(target, GL_TEXTURE_MIN_LOD, samp->MinLod);
781 _mesa_TexParameterf(target, GL_TEXTURE_MAX_LOD, samp->MaxLod);
782 _mesa_TexParameterf(target, GL_TEXTURE_LOD_BIAS, samp->LodBias);
783 _mesa_TexParameterf(target, GL_TEXTURE_PRIORITY, obj->Priority);
784 _mesa_TexParameteri(target, GL_TEXTURE_BASE_LEVEL, obj->BaseLevel);
785 if (target != GL_TEXTURE_RECTANGLE_ARB)
786 _mesa_TexParameteri(target, GL_TEXTURE_MAX_LEVEL, obj->MaxLevel);
787 if (ctx->Extensions.EXT_texture_filter_anisotropic) {
788 _mesa_TexParameterf(target, GL_TEXTURE_MAX_ANISOTROPY_EXT,
789 samp->MaxAnisotropy);
790 }
791 if (ctx->Extensions.ARB_shadow_ambient) {
792 _mesa_TexParameterf(target, GL_TEXTURE_COMPARE_FAIL_VALUE_ARB,
793 samp->CompareFailValue);
794 }
795 }
796
797 /* remove saved references to the texture objects */
798 for (tgt = 0; tgt < NUM_TEXTURE_TARGETS; tgt++) {
799 _mesa_reference_texobj(&texstate->SavedTexRef[u][tgt], NULL);
800 }
801 }
802
803 _mesa_ActiveTextureARB(GL_TEXTURE0_ARB + texstate->Texture.CurrentUnit);
804
805 _mesa_unlock_context_textures(ctx);
806 }
807
808
809 /*
810 * This function is kind of long just because we have to call a lot
811 * of device driver functions to update device driver state.
812 *
813 * XXX As it is now, most of the pop-code calls immediate-mode Mesa functions
814 * in order to restore GL state. This isn't terribly efficient but it
815 * ensures that dirty flags and any derived state gets updated correctly.
816 * We could at least check if the value to restore equals the current value
817 * and then skip the Mesa call.
818 */
819 void GLAPIENTRY
820 _mesa_PopAttrib(void)
821 {
822 struct gl_attrib_node *attr, *next;
823 GET_CURRENT_CONTEXT(ctx);
824 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
825
826 if (ctx->AttribStackDepth == 0) {
827 _mesa_error( ctx, GL_STACK_UNDERFLOW, "glPopAttrib" );
828 return;
829 }
830
831 ctx->AttribStackDepth--;
832 attr = ctx->AttribStack[ctx->AttribStackDepth];
833
834 while (attr) {
835
836 if (MESA_VERBOSE & VERBOSE_API) {
837 _mesa_debug(ctx, "glPopAttrib %s\n",
838 _mesa_lookup_enum_by_nr(attr->kind));
839 }
840
841 switch (attr->kind) {
842 case GL_ACCUM_BUFFER_BIT:
843 {
844 const struct gl_accum_attrib *accum;
845 accum = (const struct gl_accum_attrib *) attr->data;
846 _mesa_ClearAccum(accum->ClearColor[0],
847 accum->ClearColor[1],
848 accum->ClearColor[2],
849 accum->ClearColor[3]);
850 }
851 break;
852 case GL_COLOR_BUFFER_BIT:
853 {
854 const struct gl_colorbuffer_attrib *color;
855
856 color = (const struct gl_colorbuffer_attrib *) attr->data;
857 _mesa_ClearIndex((GLfloat) color->ClearIndex);
858 _mesa_ClearColor(color->ClearColor.f[0],
859 color->ClearColor.f[1],
860 color->ClearColor.f[2],
861 color->ClearColor.f[3]);
862 _mesa_IndexMask(color->IndexMask);
863 if (!ctx->Extensions.EXT_draw_buffers2) {
864 _mesa_ColorMask((GLboolean) (color->ColorMask[0][0] != 0),
865 (GLboolean) (color->ColorMask[0][1] != 0),
866 (GLboolean) (color->ColorMask[0][2] != 0),
867 (GLboolean) (color->ColorMask[0][3] != 0));
868 }
869 else {
870 GLuint i;
871 for (i = 0; i < ctx->Const.MaxDrawBuffers; i++) {
872 _mesa_ColorMaskIndexed(i,
873 (GLboolean) (color->ColorMask[i][0] != 0),
874 (GLboolean) (color->ColorMask[i][1] != 0),
875 (GLboolean) (color->ColorMask[i][2] != 0),
876 (GLboolean) (color->ColorMask[i][3] != 0));
877 }
878 }
879 {
880 /* Need to determine if more than one color output is
881 * specified. If so, call glDrawBuffersARB, else call
882 * glDrawBuffer(). This is a subtle, but essential point
883 * since GL_FRONT (for example) is illegal for the former
884 * function, but legal for the later.
885 */
886 GLboolean multipleBuffers = GL_FALSE;
887 GLuint i;
888
889 for (i = 1; i < ctx->Const.MaxDrawBuffers; i++) {
890 if (color->DrawBuffer[i] != GL_NONE) {
891 multipleBuffers = GL_TRUE;
892 break;
893 }
894 }
895 /* Call the API_level functions, not _mesa_drawbuffers()
896 * since we need to do error checking on the pop'd
897 * GL_DRAW_BUFFER.
898 * Ex: if GL_FRONT were pushed, but we're popping with a
899 * user FBO bound, GL_FRONT will be illegal and we'll need
900 * to record that error. Per OpenGL ARB decision.
901 */
902 if (multipleBuffers)
903 _mesa_DrawBuffersARB(ctx->Const.MaxDrawBuffers,
904 color->DrawBuffer);
905 else
906 _mesa_DrawBuffer(color->DrawBuffer[0]);
907 }
908 _mesa_set_enable(ctx, GL_ALPHA_TEST, color->AlphaEnabled);
909 _mesa_AlphaFunc(color->AlphaFunc, color->AlphaRefUnclamped);
910 if (ctx->Color.BlendEnabled != color->BlendEnabled) {
911 if (ctx->Extensions.EXT_draw_buffers2) {
912 GLuint i;
913 for (i = 0; i < ctx->Const.MaxDrawBuffers; i++) {
914 _mesa_set_enablei(ctx, GL_BLEND, i,
915 (color->BlendEnabled >> i) & 1);
916 }
917 }
918 else {
919 _mesa_set_enable(ctx, GL_BLEND, (color->BlendEnabled & 1));
920 }
921 }
922 if (ctx->Color._BlendFuncPerBuffer ||
923 ctx->Color._BlendEquationPerBuffer) {
924 /* set blend per buffer */
925 GLuint buf;
926 for (buf = 0; buf < ctx->Const.MaxDrawBuffers; buf++) {
927 _mesa_BlendFuncSeparatei(buf, color->Blend[buf].SrcRGB,
928 color->Blend[buf].DstRGB,
929 color->Blend[buf].SrcA,
930 color->Blend[buf].DstA);
931 _mesa_BlendEquationSeparatei(buf,
932 color->Blend[buf].EquationRGB,
933 color->Blend[buf].EquationA);
934 }
935 }
936 else {
937 /* set same blend modes for all buffers */
938 _mesa_BlendFuncSeparateEXT(color->Blend[0].SrcRGB,
939 color->Blend[0].DstRGB,
940 color->Blend[0].SrcA,
941 color->Blend[0].DstA);
942 /* This special case is because glBlendEquationSeparateEXT
943 * cannot take GL_LOGIC_OP as a parameter.
944 */
945 if (color->Blend[0].EquationRGB ==
946 color->Blend[0].EquationA) {
947 _mesa_BlendEquation(color->Blend[0].EquationRGB);
948 }
949 else {
950 _mesa_BlendEquationSeparateEXT(
951 color->Blend[0].EquationRGB,
952 color->Blend[0].EquationA);
953 }
954 }
955 _mesa_BlendColor(color->BlendColorUnclamped[0],
956 color->BlendColorUnclamped[1],
957 color->BlendColorUnclamped[2],
958 color->BlendColorUnclamped[3]);
959 _mesa_LogicOp(color->LogicOp);
960 _mesa_set_enable(ctx, GL_COLOR_LOGIC_OP,
961 color->ColorLogicOpEnabled);
962 _mesa_set_enable(ctx, GL_INDEX_LOGIC_OP,
963 color->IndexLogicOpEnabled);
964 _mesa_set_enable(ctx, GL_DITHER, color->DitherFlag);
965 _mesa_ClampColorARB(GL_CLAMP_FRAGMENT_COLOR_ARB, color->ClampFragmentColor);
966 _mesa_ClampColorARB(GL_CLAMP_READ_COLOR_ARB, color->ClampReadColor);
967 }
968 break;
969 case GL_CURRENT_BIT:
970 FLUSH_CURRENT( ctx, 0 );
971 memcpy( &ctx->Current, attr->data,
972 sizeof(struct gl_current_attrib) );
973 break;
974 case GL_DEPTH_BUFFER_BIT:
975 {
976 const struct gl_depthbuffer_attrib *depth;
977 depth = (const struct gl_depthbuffer_attrib *) attr->data;
978 _mesa_DepthFunc(depth->Func);
979 _mesa_ClearDepth(depth->Clear);
980 _mesa_set_enable(ctx, GL_DEPTH_TEST, depth->Test);
981 _mesa_DepthMask(depth->Mask);
982 }
983 break;
984 case GL_ENABLE_BIT:
985 {
986 const struct gl_enable_attrib *enable;
987 enable = (const struct gl_enable_attrib *) attr->data;
988 pop_enable_group(ctx, enable);
989 ctx->NewState |= _NEW_ALL;
990 }
991 break;
992 case GL_EVAL_BIT:
993 memcpy( &ctx->Eval, attr->data, sizeof(struct gl_eval_attrib) );
994 ctx->NewState |= _NEW_EVAL;
995 break;
996 case GL_FOG_BIT:
997 {
998 const struct gl_fog_attrib *fog;
999 fog = (const struct gl_fog_attrib *) attr->data;
1000 _mesa_set_enable(ctx, GL_FOG, fog->Enabled);
1001 _mesa_Fogfv(GL_FOG_COLOR, fog->Color);
1002 _mesa_Fogf(GL_FOG_DENSITY, fog->Density);
1003 _mesa_Fogf(GL_FOG_START, fog->Start);
1004 _mesa_Fogf(GL_FOG_END, fog->End);
1005 _mesa_Fogf(GL_FOG_INDEX, fog->Index);
1006 _mesa_Fogi(GL_FOG_MODE, fog->Mode);
1007 }
1008 break;
1009 case GL_HINT_BIT:
1010 {
1011 const struct gl_hint_attrib *hint;
1012 hint = (const struct gl_hint_attrib *) attr->data;
1013 _mesa_Hint(GL_PERSPECTIVE_CORRECTION_HINT,
1014 hint->PerspectiveCorrection );
1015 _mesa_Hint(GL_POINT_SMOOTH_HINT, hint->PointSmooth);
1016 _mesa_Hint(GL_LINE_SMOOTH_HINT, hint->LineSmooth);
1017 _mesa_Hint(GL_POLYGON_SMOOTH_HINT, hint->PolygonSmooth);
1018 _mesa_Hint(GL_FOG_HINT, hint->Fog);
1019 _mesa_Hint(GL_CLIP_VOLUME_CLIPPING_HINT_EXT,
1020 hint->ClipVolumeClipping);
1021 _mesa_Hint(GL_TEXTURE_COMPRESSION_HINT_ARB,
1022 hint->TextureCompression);
1023 }
1024 break;
1025 case GL_LIGHTING_BIT:
1026 {
1027 GLuint i;
1028 const struct gl_light_attrib *light;
1029 light = (const struct gl_light_attrib *) attr->data;
1030 /* lighting enable */
1031 _mesa_set_enable(ctx, GL_LIGHTING, light->Enabled);
1032 /* per-light state */
1033 if (_math_matrix_is_dirty(ctx->ModelviewMatrixStack.Top))
1034 _math_matrix_analyse( ctx->ModelviewMatrixStack.Top );
1035
1036 for (i = 0; i < ctx->Const.MaxLights; i++) {
1037 const struct gl_light *l = &light->Light[i];
1038 _mesa_set_enable(ctx, GL_LIGHT0 + i, l->Enabled);
1039 _mesa_light(ctx, i, GL_AMBIENT, l->Ambient);
1040 _mesa_light(ctx, i, GL_DIFFUSE, l->Diffuse);
1041 _mesa_light(ctx, i, GL_SPECULAR, l->Specular );
1042 _mesa_light(ctx, i, GL_POSITION, l->EyePosition);
1043 _mesa_light(ctx, i, GL_SPOT_DIRECTION, l->SpotDirection);
1044 {
1045 GLfloat p[4] = { 0 };
1046 p[0] = l->SpotExponent;
1047 _mesa_light(ctx, i, GL_SPOT_EXPONENT, p);
1048 }
1049 {
1050 GLfloat p[4] = { 0 };
1051 p[0] = l->SpotCutoff;
1052 _mesa_light(ctx, i, GL_SPOT_CUTOFF, p);
1053 }
1054 {
1055 GLfloat p[4] = { 0 };
1056 p[0] = l->ConstantAttenuation;
1057 _mesa_light(ctx, i, GL_CONSTANT_ATTENUATION, p);
1058 }
1059 {
1060 GLfloat p[4] = { 0 };
1061 p[0] = l->LinearAttenuation;
1062 _mesa_light(ctx, i, GL_LINEAR_ATTENUATION, p);
1063 }
1064 {
1065 GLfloat p[4] = { 0 };
1066 p[0] = l->QuadraticAttenuation;
1067 _mesa_light(ctx, i, GL_QUADRATIC_ATTENUATION, p);
1068 }
1069 }
1070 /* light model */
1071 _mesa_LightModelfv(GL_LIGHT_MODEL_AMBIENT,
1072 light->Model.Ambient);
1073 _mesa_LightModelf(GL_LIGHT_MODEL_LOCAL_VIEWER,
1074 (GLfloat) light->Model.LocalViewer);
1075 _mesa_LightModelf(GL_LIGHT_MODEL_TWO_SIDE,
1076 (GLfloat) light->Model.TwoSide);
1077 _mesa_LightModelf(GL_LIGHT_MODEL_COLOR_CONTROL,
1078 (GLfloat) light->Model.ColorControl);
1079 /* shade model */
1080 _mesa_ShadeModel(light->ShadeModel);
1081 /* color material */
1082 _mesa_ColorMaterial(light->ColorMaterialFace,
1083 light->ColorMaterialMode);
1084 _mesa_set_enable(ctx, GL_COLOR_MATERIAL,
1085 light->ColorMaterialEnabled);
1086 /* materials */
1087 memcpy(&ctx->Light.Material, &light->Material,
1088 sizeof(struct gl_material));
1089 _mesa_ClampColorARB(GL_CLAMP_VERTEX_COLOR_ARB, light->ClampVertexColor);
1090 }
1091 break;
1092 case GL_LINE_BIT:
1093 {
1094 const struct gl_line_attrib *line;
1095 line = (const struct gl_line_attrib *) attr->data;
1096 _mesa_set_enable(ctx, GL_LINE_SMOOTH, line->SmoothFlag);
1097 _mesa_set_enable(ctx, GL_LINE_STIPPLE, line->StippleFlag);
1098 _mesa_LineStipple(line->StippleFactor, line->StipplePattern);
1099 _mesa_LineWidth(line->Width);
1100 }
1101 break;
1102 case GL_LIST_BIT:
1103 memcpy( &ctx->List, attr->data, sizeof(struct gl_list_attrib) );
1104 break;
1105 case GL_PIXEL_MODE_BIT:
1106 memcpy( &ctx->Pixel, attr->data, sizeof(struct gl_pixel_attrib) );
1107 /* XXX what other pixel state needs to be set by function calls? */
1108 _mesa_ReadBuffer(ctx->Pixel.ReadBuffer);
1109 ctx->NewState |= _NEW_PIXEL;
1110 break;
1111 case GL_POINT_BIT:
1112 {
1113 const struct gl_point_attrib *point;
1114 point = (const struct gl_point_attrib *) attr->data;
1115 _mesa_PointSize(point->Size);
1116 _mesa_set_enable(ctx, GL_POINT_SMOOTH, point->SmoothFlag);
1117 if (ctx->Extensions.EXT_point_parameters) {
1118 _mesa_PointParameterfv(GL_DISTANCE_ATTENUATION_EXT,
1119 point->Params);
1120 _mesa_PointParameterf(GL_POINT_SIZE_MIN_EXT,
1121 point->MinSize);
1122 _mesa_PointParameterf(GL_POINT_SIZE_MAX_EXT,
1123 point->MaxSize);
1124 _mesa_PointParameterf(GL_POINT_FADE_THRESHOLD_SIZE_EXT,
1125 point->Threshold);
1126 }
1127 if (ctx->Extensions.NV_point_sprite
1128 || ctx->Extensions.ARB_point_sprite) {
1129 GLuint u;
1130 for (u = 0; u < ctx->Const.MaxTextureUnits; u++) {
1131 _mesa_TexEnvi(GL_POINT_SPRITE_NV, GL_COORD_REPLACE_NV,
1132 (GLint) point->CoordReplace[u]);
1133 }
1134 _mesa_set_enable(ctx, GL_POINT_SPRITE_NV,point->PointSprite);
1135 if (ctx->Extensions.NV_point_sprite)
1136 _mesa_PointParameteri(GL_POINT_SPRITE_R_MODE_NV,
1137 ctx->Point.SpriteRMode);
1138 _mesa_PointParameterf(GL_POINT_SPRITE_COORD_ORIGIN,
1139 (GLfloat)ctx->Point.SpriteOrigin);
1140 }
1141 }
1142 break;
1143 case GL_POLYGON_BIT:
1144 {
1145 const struct gl_polygon_attrib *polygon;
1146 polygon = (const struct gl_polygon_attrib *) attr->data;
1147 _mesa_CullFace(polygon->CullFaceMode);
1148 _mesa_FrontFace(polygon->FrontFace);
1149 _mesa_PolygonMode(GL_FRONT, polygon->FrontMode);
1150 _mesa_PolygonMode(GL_BACK, polygon->BackMode);
1151 _mesa_PolygonOffset(polygon->OffsetFactor,
1152 polygon->OffsetUnits);
1153 _mesa_set_enable(ctx, GL_POLYGON_SMOOTH, polygon->SmoothFlag);
1154 _mesa_set_enable(ctx, GL_POLYGON_STIPPLE, polygon->StippleFlag);
1155 _mesa_set_enable(ctx, GL_CULL_FACE, polygon->CullFlag);
1156 _mesa_set_enable(ctx, GL_POLYGON_OFFSET_POINT,
1157 polygon->OffsetPoint);
1158 _mesa_set_enable(ctx, GL_POLYGON_OFFSET_LINE,
1159 polygon->OffsetLine);
1160 _mesa_set_enable(ctx, GL_POLYGON_OFFSET_FILL,
1161 polygon->OffsetFill);
1162 }
1163 break;
1164 case GL_POLYGON_STIPPLE_BIT:
1165 memcpy( ctx->PolygonStipple, attr->data, 32*sizeof(GLuint) );
1166 ctx->NewState |= _NEW_POLYGONSTIPPLE;
1167 if (ctx->Driver.PolygonStipple)
1168 ctx->Driver.PolygonStipple( ctx, (const GLubyte *) attr->data );
1169 break;
1170 case GL_SCISSOR_BIT:
1171 {
1172 const struct gl_scissor_attrib *scissor;
1173 scissor = (const struct gl_scissor_attrib *) attr->data;
1174 _mesa_Scissor(scissor->X, scissor->Y,
1175 scissor->Width, scissor->Height);
1176 _mesa_set_enable(ctx, GL_SCISSOR_TEST, scissor->Enabled);
1177 }
1178 break;
1179 case GL_STENCIL_BUFFER_BIT:
1180 {
1181 const struct gl_stencil_attrib *stencil;
1182 stencil = (const struct gl_stencil_attrib *) attr->data;
1183 _mesa_set_enable(ctx, GL_STENCIL_TEST, stencil->Enabled);
1184 _mesa_ClearStencil(stencil->Clear);
1185 if (ctx->Extensions.EXT_stencil_two_side) {
1186 _mesa_set_enable(ctx, GL_STENCIL_TEST_TWO_SIDE_EXT,
1187 stencil->TestTwoSide);
1188 _mesa_ActiveStencilFaceEXT(stencil->ActiveFace
1189 ? GL_BACK : GL_FRONT);
1190 }
1191 /* front state */
1192 _mesa_StencilFuncSeparate(GL_FRONT,
1193 stencil->Function[0],
1194 stencil->Ref[0],
1195 stencil->ValueMask[0]);
1196 _mesa_StencilMaskSeparate(GL_FRONT, stencil->WriteMask[0]);
1197 _mesa_StencilOpSeparate(GL_FRONT, stencil->FailFunc[0],
1198 stencil->ZFailFunc[0],
1199 stencil->ZPassFunc[0]);
1200 /* back state */
1201 _mesa_StencilFuncSeparate(GL_BACK,
1202 stencil->Function[1],
1203 stencil->Ref[1],
1204 stencil->ValueMask[1]);
1205 _mesa_StencilMaskSeparate(GL_BACK, stencil->WriteMask[1]);
1206 _mesa_StencilOpSeparate(GL_BACK, stencil->FailFunc[1],
1207 stencil->ZFailFunc[1],
1208 stencil->ZPassFunc[1]);
1209 }
1210 break;
1211 case GL_TRANSFORM_BIT:
1212 {
1213 GLuint i;
1214 const struct gl_transform_attrib *xform;
1215 xform = (const struct gl_transform_attrib *) attr->data;
1216 _mesa_MatrixMode(xform->MatrixMode);
1217 if (_math_matrix_is_dirty(ctx->ProjectionMatrixStack.Top))
1218 _math_matrix_analyse( ctx->ProjectionMatrixStack.Top );
1219
1220 /* restore clip planes */
1221 for (i = 0; i < ctx->Const.MaxClipPlanes; i++) {
1222 const GLuint mask = 1 << i;
1223 const GLfloat *eyePlane = xform->EyeUserPlane[i];
1224 COPY_4V(ctx->Transform.EyeUserPlane[i], eyePlane);
1225 _mesa_set_enable(ctx, GL_CLIP_PLANE0 + i,
1226 !!(xform->ClipPlanesEnabled & mask));
1227 if (ctx->Driver.ClipPlane)
1228 ctx->Driver.ClipPlane( ctx, GL_CLIP_PLANE0 + i, eyePlane );
1229 }
1230
1231 /* normalize/rescale */
1232 if (xform->Normalize != ctx->Transform.Normalize)
1233 _mesa_set_enable(ctx, GL_NORMALIZE,ctx->Transform.Normalize);
1234 if (xform->RescaleNormals != ctx->Transform.RescaleNormals)
1235 _mesa_set_enable(ctx, GL_RESCALE_NORMAL_EXT,
1236 ctx->Transform.RescaleNormals);
1237 if (xform->DepthClamp != ctx->Transform.DepthClamp)
1238 _mesa_set_enable(ctx, GL_DEPTH_CLAMP,
1239 ctx->Transform.DepthClamp);
1240 }
1241 break;
1242 case GL_TEXTURE_BIT:
1243 /* Take care of texture object reference counters */
1244 {
1245 struct texture_state *texstate
1246 = (struct texture_state *) attr->data;
1247 pop_texture_group(ctx, texstate);
1248 ctx->NewState |= _NEW_TEXTURE;
1249 }
1250 break;
1251 case GL_VIEWPORT_BIT:
1252 {
1253 const struct gl_viewport_attrib *vp;
1254 vp = (const struct gl_viewport_attrib *) attr->data;
1255 _mesa_Viewport(vp->X, vp->Y, vp->Width, vp->Height);
1256 _mesa_DepthRange(vp->Near, vp->Far);
1257 }
1258 break;
1259 case GL_MULTISAMPLE_BIT_ARB:
1260 {
1261 const struct gl_multisample_attrib *ms;
1262 ms = (const struct gl_multisample_attrib *) attr->data;
1263 _mesa_SampleCoverageARB(ms->SampleCoverageValue,
1264 ms->SampleCoverageInvert);
1265 }
1266 break;
1267
1268 default:
1269 _mesa_problem( ctx, "Bad attrib flag in PopAttrib");
1270 break;
1271 }
1272
1273 next = attr->next;
1274 FREE( attr->data );
1275 FREE( attr );
1276 attr = next;
1277 }
1278 }
1279
1280
1281 /**
1282 * Copy gl_pixelstore_attrib from src to dst, updating buffer
1283 * object refcounts.
1284 */
1285 static void
1286 copy_pixelstore(struct gl_context *ctx,
1287 struct gl_pixelstore_attrib *dst,
1288 const struct gl_pixelstore_attrib *src)
1289 {
1290 dst->Alignment = src->Alignment;
1291 dst->RowLength = src->RowLength;
1292 dst->SkipPixels = src->SkipPixels;
1293 dst->SkipRows = src->SkipRows;
1294 dst->ImageHeight = src->ImageHeight;
1295 dst->SkipImages = src->SkipImages;
1296 dst->SwapBytes = src->SwapBytes;
1297 dst->LsbFirst = src->LsbFirst;
1298 dst->Invert = src->Invert;
1299 _mesa_reference_buffer_object(ctx, &dst->BufferObj, src->BufferObj);
1300 }
1301
1302
1303 #define GL_CLIENT_PACK_BIT (1<<20)
1304 #define GL_CLIENT_UNPACK_BIT (1<<21)
1305
1306 /**
1307 * Copy gl_array_object from src to dest.
1308 * 'dest' must be in an initialized state.
1309 */
1310 static void
1311 copy_array_object(struct gl_context *ctx,
1312 struct gl_array_object *dest,
1313 struct gl_array_object *src)
1314 {
1315 GLuint i;
1316
1317 /* skip Name */
1318 /* skip RefCount */
1319
1320 /* In theory must be the same anyway, but on recreate make sure it matches */
1321 dest->VBOonly = src->VBOonly;
1322
1323 _mesa_copy_client_array(ctx, &dest->Vertex, &src->Vertex);
1324 _mesa_copy_client_array(ctx, &dest->Weight, &src->Weight);
1325 _mesa_copy_client_array(ctx, &dest->Normal, &src->Normal);
1326 _mesa_copy_client_array(ctx, &dest->Color, &src->Color);
1327 _mesa_copy_client_array(ctx, &dest->SecondaryColor, &src->SecondaryColor);
1328 _mesa_copy_client_array(ctx, &dest->FogCoord, &src->FogCoord);
1329 _mesa_copy_client_array(ctx, &dest->Index, &src->Index);
1330 _mesa_copy_client_array(ctx, &dest->EdgeFlag, &src->EdgeFlag);
1331 #if FEATURE_point_size_array
1332 _mesa_copy_client_array(ctx, &dest->PointSize, &src->PointSize);
1333 #endif
1334 for (i = 0; i < Elements(src->TexCoord); i++)
1335 _mesa_copy_client_array(ctx, &dest->TexCoord[i], &src->TexCoord[i]);
1336 for (i = 0; i < Elements(src->VertexAttrib); i++)
1337 _mesa_copy_client_array(ctx, &dest->VertexAttrib[i], &src->VertexAttrib[i]);
1338
1339 /* _Enabled must be the same than on push */
1340 dest->_Enabled = src->_Enabled;
1341 dest->_MaxElement = src->_MaxElement;
1342 }
1343
1344 /**
1345 * Copy gl_array_attrib from src to dest.
1346 * 'dest' must be in an initialized state.
1347 */
1348 static void
1349 copy_array_attrib(struct gl_context *ctx,
1350 struct gl_array_attrib *dest,
1351 struct gl_array_attrib *src)
1352 {
1353 /* skip ArrayObj */
1354 /* skip DefaultArrayObj, Objects */
1355 dest->ActiveTexture = src->ActiveTexture;
1356 dest->LockFirst = src->LockFirst;
1357 dest->LockCount = src->LockCount;
1358 dest->PrimitiveRestart = src->PrimitiveRestart;
1359 dest->RestartIndex = src->RestartIndex;
1360 /* skip NewState */
1361 /* skip RebindArrays */
1362
1363 copy_array_object(ctx, dest->ArrayObj, src->ArrayObj);
1364
1365 /* skip ArrayBufferObj */
1366 /* skip ElementArrayBufferObj */
1367 }
1368
1369 /**
1370 * Save the content of src to dest.
1371 */
1372 static void
1373 save_array_attrib(struct gl_context *ctx,
1374 struct gl_array_attrib *dest,
1375 struct gl_array_attrib *src)
1376 {
1377 /* Set the Name, needed for restore, but do never overwrite.
1378 * Needs to match value in the object hash. */
1379 dest->ArrayObj->Name = src->ArrayObj->Name;
1380 /* And copy all of the rest. */
1381 copy_array_attrib(ctx, dest, src);
1382
1383 /* Just reference them here */
1384 _mesa_reference_buffer_object(ctx, &dest->ArrayBufferObj,
1385 src->ArrayBufferObj);
1386 _mesa_reference_buffer_object(ctx, &dest->ElementArrayBufferObj,
1387 src->ElementArrayBufferObj);
1388 }
1389
1390 /**
1391 * Restore the content of src to dest.
1392 */
1393 static void
1394 restore_array_attrib(struct gl_context *ctx,
1395 struct gl_array_attrib *dest,
1396 struct gl_array_attrib *src)
1397 {
1398 /* Restore or recreate the array object by its name ... */
1399 _mesa_BindVertexArrayAPPLE(src->ArrayObj->Name);
1400
1401 /* ... and restore its content */
1402 copy_array_attrib(ctx, dest, src);
1403
1404 /* Restore or recreate the buffer objects by the names ... */
1405 _mesa_BindBufferARB(GL_ARRAY_BUFFER_ARB,
1406 src->ArrayBufferObj->Name);
1407 _mesa_BindBufferARB(GL_ELEMENT_ARRAY_BUFFER_ARB,
1408 src->ElementArrayBufferObj->Name);
1409
1410 /* Better safe than sorry?! */
1411 dest->RebindArrays = GL_TRUE;
1412
1413 /* FIXME: Should some bits in ctx->Array->NewState also be set
1414 * FIXME: here? It seems like it should be set to inclusive-or
1415 * FIXME: of the old ArrayObj->_Enabled and the new _Enabled.
1416 * ... just do it.
1417 */
1418 dest->NewState |= src->ArrayObj->_Enabled | dest->ArrayObj->_Enabled;
1419 }
1420
1421 /**
1422 * init/alloc the fields of 'attrib'.
1423 * Needs to the init part matching free_array_attrib_data below.
1424 */
1425 static void
1426 init_array_attrib_data(struct gl_context *ctx,
1427 struct gl_array_attrib *attrib)
1428 {
1429 /* Get a non driver gl_array_object. */
1430 attrib->ArrayObj = CALLOC_STRUCT( gl_array_object );
1431 _mesa_initialize_array_object(ctx, attrib->ArrayObj, 0);
1432 }
1433
1434 /**
1435 * Free/unreference the fields of 'attrib' but don't delete it (that's
1436 * done later in the calling code).
1437 * Needs to the cleanup part matching init_array_attrib_data above.
1438 */
1439 static void
1440 free_array_attrib_data(struct gl_context *ctx,
1441 struct gl_array_attrib *attrib)
1442 {
1443 /* We use a non driver array object, so don't just unref since we would
1444 * end up using the drivers DeleteArrayObject function for deletion. */
1445 _mesa_delete_array_object(ctx, attrib->ArrayObj);
1446 attrib->ArrayObj = 0;
1447 _mesa_reference_buffer_object(ctx, &attrib->ArrayBufferObj, NULL);
1448 _mesa_reference_buffer_object(ctx, &attrib->ElementArrayBufferObj, NULL);
1449 }
1450
1451
1452 void GLAPIENTRY
1453 _mesa_PushClientAttrib(GLbitfield mask)
1454 {
1455 struct gl_attrib_node *head;
1456
1457 GET_CURRENT_CONTEXT(ctx);
1458 ASSERT_OUTSIDE_BEGIN_END(ctx);
1459
1460 if (ctx->ClientAttribStackDepth >= MAX_CLIENT_ATTRIB_STACK_DEPTH) {
1461 _mesa_error( ctx, GL_STACK_OVERFLOW, "glPushClientAttrib" );
1462 return;
1463 }
1464
1465 /* Build linked list of attribute nodes which save all attribute
1466 * groups specified by the mask.
1467 */
1468 head = NULL;
1469
1470 if (mask & GL_CLIENT_PIXEL_STORE_BIT) {
1471 struct gl_pixelstore_attrib *attr;
1472 /* packing attribs */
1473 attr = CALLOC_STRUCT( gl_pixelstore_attrib );
1474 copy_pixelstore(ctx, attr, &ctx->Pack);
1475 save_attrib_data(&head, GL_CLIENT_PACK_BIT, attr);
1476 /* unpacking attribs */
1477 attr = CALLOC_STRUCT( gl_pixelstore_attrib );
1478 copy_pixelstore(ctx, attr, &ctx->Unpack);
1479 save_attrib_data(&head, GL_CLIENT_UNPACK_BIT, attr);
1480 }
1481
1482 if (mask & GL_CLIENT_VERTEX_ARRAY_BIT) {
1483 struct gl_array_attrib *attr;
1484 attr = CALLOC_STRUCT( gl_array_attrib );
1485 init_array_attrib_data(ctx, attr);
1486 save_array_attrib(ctx, attr, &ctx->Array);
1487 save_attrib_data(&head, GL_CLIENT_VERTEX_ARRAY_BIT, attr);
1488 }
1489
1490 ctx->ClientAttribStack[ctx->ClientAttribStackDepth] = head;
1491 ctx->ClientAttribStackDepth++;
1492 }
1493
1494
1495
1496
1497 void GLAPIENTRY
1498 _mesa_PopClientAttrib(void)
1499 {
1500 struct gl_attrib_node *node, *next;
1501
1502 GET_CURRENT_CONTEXT(ctx);
1503 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
1504
1505 if (ctx->ClientAttribStackDepth == 0) {
1506 _mesa_error( ctx, GL_STACK_UNDERFLOW, "glPopClientAttrib" );
1507 return;
1508 }
1509
1510 ctx->ClientAttribStackDepth--;
1511 node = ctx->ClientAttribStack[ctx->ClientAttribStackDepth];
1512
1513 while (node) {
1514 switch (node->kind) {
1515 case GL_CLIENT_PACK_BIT:
1516 {
1517 struct gl_pixelstore_attrib *store =
1518 (struct gl_pixelstore_attrib *) node->data;
1519 copy_pixelstore(ctx, &ctx->Pack, store);
1520 _mesa_reference_buffer_object(ctx, &store->BufferObj, NULL);
1521 }
1522 ctx->NewState |= _NEW_PACKUNPACK;
1523 break;
1524 case GL_CLIENT_UNPACK_BIT:
1525 {
1526 struct gl_pixelstore_attrib *store =
1527 (struct gl_pixelstore_attrib *) node->data;
1528 copy_pixelstore(ctx, &ctx->Unpack, store);
1529 _mesa_reference_buffer_object(ctx, &store->BufferObj, NULL);
1530 }
1531 ctx->NewState |= _NEW_PACKUNPACK;
1532 break;
1533 case GL_CLIENT_VERTEX_ARRAY_BIT: {
1534 struct gl_array_attrib * attr =
1535 (struct gl_array_attrib *) node->data;
1536 restore_array_attrib(ctx, &ctx->Array, attr);
1537 free_array_attrib_data(ctx, attr);
1538 ctx->NewState |= _NEW_ARRAY;
1539 break;
1540 }
1541 default:
1542 _mesa_problem( ctx, "Bad attrib flag in PopClientAttrib");
1543 break;
1544 }
1545
1546 next = node->next;
1547 FREE( node->data );
1548 FREE( node );
1549 node = next;
1550 }
1551 }
1552
1553
1554 void
1555 _mesa_init_attrib_dispatch(struct _glapi_table *disp)
1556 {
1557 SET_PopAttrib(disp, _mesa_PopAttrib);
1558 SET_PushAttrib(disp, _mesa_PushAttrib);
1559 SET_PopClientAttrib(disp, _mesa_PopClientAttrib);
1560 SET_PushClientAttrib(disp, _mesa_PushClientAttrib);
1561 }
1562
1563
1564 #endif /* FEATURE_attrib_stack */
1565
1566
1567 /**
1568 * Free any attribute state data that might be attached to the context.
1569 */
1570 void
1571 _mesa_free_attrib_data(struct gl_context *ctx)
1572 {
1573 while (ctx->AttribStackDepth > 0) {
1574 struct gl_attrib_node *attr, *next;
1575
1576 ctx->AttribStackDepth--;
1577 attr = ctx->AttribStack[ctx->AttribStackDepth];
1578
1579 while (attr) {
1580 if (attr->kind == GL_TEXTURE_BIT) {
1581 struct texture_state *texstate = (struct texture_state*)attr->data;
1582 GLuint u, tgt;
1583 /* clear references to the saved texture objects */
1584 for (u = 0; u < ctx->Const.MaxTextureUnits; u++) {
1585 for (tgt = 0; tgt < NUM_TEXTURE_TARGETS; tgt++) {
1586 _mesa_reference_texobj(&texstate->SavedTexRef[u][tgt], NULL);
1587 }
1588 }
1589 }
1590 else {
1591 /* any other chunks of state that requires special handling? */
1592 }
1593
1594 next = attr->next;
1595 free(attr->data);
1596 free(attr);
1597 attr = next;
1598 }
1599 }
1600 }
1601
1602
1603 void _mesa_init_attrib( struct gl_context *ctx )
1604 {
1605 /* Renderer and client attribute stacks */
1606 ctx->AttribStackDepth = 0;
1607 ctx->ClientAttribStackDepth = 0;
1608 }