Merge commit 'origin/gallium-0.2' into gallium-xlib-rework
[mesa.git] / src / mesa / main / texstate.c
1 /*
2 * Mesa 3-D graphics library
3 * Version: 7.1
4 *
5 * Copyright (C) 1999-2007 Brian Paul All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25 /**
26 * \file texstate.c
27 *
28 * Texture state handling.
29 */
30
31 #include "glheader.h"
32 #include "colormac.h"
33 #if FEATURE_colortable
34 #include "colortab.h"
35 #endif
36 #include "context.h"
37 #include "enums.h"
38 #include "macros.h"
39 #include "texcompress.h"
40 #include "texobj.h"
41 #include "teximage.h"
42 #include "texstate.h"
43 #include "texenvprogram.h"
44 #include "mtypes.h"
45 #include "math/m_xform.h"
46
47
48
49 /**
50 * Default texture combine environment state. This is used to initialize
51 * a context's texture units and as the basis for converting "classic"
52 * texture environmnets to ARB_texture_env_combine style values.
53 */
54 static const struct gl_tex_env_combine_state default_combine_state = {
55 GL_MODULATE, GL_MODULATE,
56 { GL_TEXTURE, GL_PREVIOUS, GL_CONSTANT },
57 { GL_TEXTURE, GL_PREVIOUS, GL_CONSTANT },
58 { GL_SRC_COLOR, GL_SRC_COLOR, GL_SRC_ALPHA },
59 { GL_SRC_ALPHA, GL_SRC_ALPHA, GL_SRC_ALPHA },
60 0, 0,
61 2, 2
62 };
63
64
65
66 /**
67 * Used by glXCopyContext to copy texture state from one context to another.
68 */
69 void
70 _mesa_copy_texture_state( const GLcontext *src, GLcontext *dst )
71 {
72 GLuint i;
73
74 ASSERT(src);
75 ASSERT(dst);
76
77 dst->Texture.CurrentUnit = src->Texture.CurrentUnit;
78 dst->Texture._GenFlags = src->Texture._GenFlags;
79 dst->Texture._TexGenEnabled = src->Texture._TexGenEnabled;
80 dst->Texture._TexMatEnabled = src->Texture._TexMatEnabled;
81 dst->Texture.SharedPalette = src->Texture.SharedPalette;
82
83 /* per-unit state */
84 for (i = 0; i < src->Const.MaxTextureImageUnits; i++) {
85 dst->Texture.Unit[i].Enabled = src->Texture.Unit[i].Enabled;
86 dst->Texture.Unit[i].EnvMode = src->Texture.Unit[i].EnvMode;
87 COPY_4V(dst->Texture.Unit[i].EnvColor, src->Texture.Unit[i].EnvColor);
88 dst->Texture.Unit[i].TexGenEnabled = src->Texture.Unit[i].TexGenEnabled;
89 dst->Texture.Unit[i].GenModeS = src->Texture.Unit[i].GenModeS;
90 dst->Texture.Unit[i].GenModeT = src->Texture.Unit[i].GenModeT;
91 dst->Texture.Unit[i].GenModeR = src->Texture.Unit[i].GenModeR;
92 dst->Texture.Unit[i].GenModeQ = src->Texture.Unit[i].GenModeQ;
93 dst->Texture.Unit[i]._GenBitS = src->Texture.Unit[i]._GenBitS;
94 dst->Texture.Unit[i]._GenBitT = src->Texture.Unit[i]._GenBitT;
95 dst->Texture.Unit[i]._GenBitR = src->Texture.Unit[i]._GenBitR;
96 dst->Texture.Unit[i]._GenBitQ = src->Texture.Unit[i]._GenBitQ;
97 dst->Texture.Unit[i]._GenFlags = src->Texture.Unit[i]._GenFlags;
98 COPY_4V(dst->Texture.Unit[i].ObjectPlaneS, src->Texture.Unit[i].ObjectPlaneS);
99 COPY_4V(dst->Texture.Unit[i].ObjectPlaneT, src->Texture.Unit[i].ObjectPlaneT);
100 COPY_4V(dst->Texture.Unit[i].ObjectPlaneR, src->Texture.Unit[i].ObjectPlaneR);
101 COPY_4V(dst->Texture.Unit[i].ObjectPlaneQ, src->Texture.Unit[i].ObjectPlaneQ);
102 COPY_4V(dst->Texture.Unit[i].EyePlaneS, src->Texture.Unit[i].EyePlaneS);
103 COPY_4V(dst->Texture.Unit[i].EyePlaneT, src->Texture.Unit[i].EyePlaneT);
104 COPY_4V(dst->Texture.Unit[i].EyePlaneR, src->Texture.Unit[i].EyePlaneR);
105 COPY_4V(dst->Texture.Unit[i].EyePlaneQ, src->Texture.Unit[i].EyePlaneQ);
106 dst->Texture.Unit[i].LodBias = src->Texture.Unit[i].LodBias;
107
108 /* GL_EXT_texture_env_combine */
109 dst->Texture.Unit[i].Combine.ModeRGB = src->Texture.Unit[i].Combine.ModeRGB;
110 dst->Texture.Unit[i].Combine.ModeA = src->Texture.Unit[i].Combine.ModeA;
111 COPY_3V(dst->Texture.Unit[i].Combine.SourceRGB, src->Texture.Unit[i].Combine.SourceRGB);
112 COPY_3V(dst->Texture.Unit[i].Combine.SourceA, src->Texture.Unit[i].Combine.SourceA);
113 COPY_3V(dst->Texture.Unit[i].Combine.OperandRGB, src->Texture.Unit[i].Combine.OperandRGB);
114 COPY_3V(dst->Texture.Unit[i].Combine.OperandA, src->Texture.Unit[i].Combine.OperandA);
115 dst->Texture.Unit[i].Combine.ScaleShiftRGB = src->Texture.Unit[i].Combine.ScaleShiftRGB;
116 dst->Texture.Unit[i].Combine.ScaleShiftA = src->Texture.Unit[i].Combine.ScaleShiftA;
117
118 /* copy texture object bindings, not contents of texture objects */
119 _mesa_lock_context_textures(dst);
120
121 _mesa_reference_texobj(&dst->Texture.Unit[i].Current1D,
122 src->Texture.Unit[i].Current1D);
123 _mesa_reference_texobj(&dst->Texture.Unit[i].Current2D,
124 src->Texture.Unit[i].Current2D);
125 _mesa_reference_texobj(&dst->Texture.Unit[i].Current3D,
126 src->Texture.Unit[i].Current3D);
127 _mesa_reference_texobj(&dst->Texture.Unit[i].CurrentCubeMap,
128 src->Texture.Unit[i].CurrentCubeMap);
129 _mesa_reference_texobj(&dst->Texture.Unit[i].CurrentRect,
130 src->Texture.Unit[i].CurrentRect);
131 _mesa_reference_texobj(&dst->Texture.Unit[i].Current1DArray,
132 src->Texture.Unit[i].Current1DArray);
133 _mesa_reference_texobj(&dst->Texture.Unit[i].Current2DArray,
134 src->Texture.Unit[i].Current2DArray);
135
136 _mesa_unlock_context_textures(dst);
137 }
138 }
139
140
141 /*
142 * For debugging
143 */
144 void
145 _mesa_print_texunit_state( GLcontext *ctx, GLuint unit )
146 {
147 const struct gl_texture_unit *texUnit = ctx->Texture.Unit + unit;
148 _mesa_printf("Texture Unit %d\n", unit);
149 _mesa_printf(" GL_TEXTURE_ENV_MODE = %s\n", _mesa_lookup_enum_by_nr(texUnit->EnvMode));
150 _mesa_printf(" GL_COMBINE_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.ModeRGB));
151 _mesa_printf(" GL_COMBINE_ALPHA = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.ModeA));
152 _mesa_printf(" GL_SOURCE0_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceRGB[0]));
153 _mesa_printf(" GL_SOURCE1_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceRGB[1]));
154 _mesa_printf(" GL_SOURCE2_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceRGB[2]));
155 _mesa_printf(" GL_SOURCE0_ALPHA = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceA[0]));
156 _mesa_printf(" GL_SOURCE1_ALPHA = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceA[1]));
157 _mesa_printf(" GL_SOURCE2_ALPHA = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceA[2]));
158 _mesa_printf(" GL_OPERAND0_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.OperandRGB[0]));
159 _mesa_printf(" GL_OPERAND1_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.OperandRGB[1]));
160 _mesa_printf(" GL_OPERAND2_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.OperandRGB[2]));
161 _mesa_printf(" GL_OPERAND0_ALPHA = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.OperandA[0]));
162 _mesa_printf(" GL_OPERAND1_ALPHA = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.OperandA[1]));
163 _mesa_printf(" GL_OPERAND2_ALPHA = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.OperandA[2]));
164 _mesa_printf(" GL_RGB_SCALE = %d\n", 1 << texUnit->Combine.ScaleShiftRGB);
165 _mesa_printf(" GL_ALPHA_SCALE = %d\n", 1 << texUnit->Combine.ScaleShiftA);
166 _mesa_printf(" GL_TEXTURE_ENV_COLOR = (%f, %f, %f, %f)\n", texUnit->EnvColor[0], texUnit->EnvColor[1], texUnit->EnvColor[2], texUnit->EnvColor[3]);
167 }
168
169
170
171 /**********************************************************************/
172 /* Texture Environment */
173 /**********************************************************************/
174
175 /**
176 * Convert "classic" texture environment to ARB_texture_env_combine style
177 * environments.
178 *
179 * \param state texture_env_combine state vector to be filled-in.
180 * \param mode Classic texture environment mode (i.e., \c GL_REPLACE,
181 * \c GL_BLEND, \c GL_DECAL, etc.).
182 * \param texBaseFormat Base format of the texture associated with the
183 * texture unit.
184 */
185 static void
186 calculate_derived_texenv( struct gl_tex_env_combine_state *state,
187 GLenum mode, GLenum texBaseFormat )
188 {
189 GLenum mode_rgb;
190 GLenum mode_a;
191
192 *state = default_combine_state;
193
194 switch (texBaseFormat) {
195 case GL_ALPHA:
196 state->SourceRGB[0] = GL_PREVIOUS;
197 break;
198
199 case GL_LUMINANCE_ALPHA:
200 case GL_INTENSITY:
201 case GL_RGBA:
202 break;
203
204 case GL_LUMINANCE:
205 case GL_RGB:
206 case GL_YCBCR_MESA:
207 state->SourceA[0] = GL_PREVIOUS;
208 break;
209
210 default:
211 _mesa_problem(NULL, "Invalid texBaseFormat in calculate_derived_texenv");
212 return;
213 }
214
215 if (mode == GL_REPLACE_EXT)
216 mode = GL_REPLACE;
217
218 switch (mode) {
219 case GL_REPLACE:
220 case GL_MODULATE:
221 mode_rgb = (texBaseFormat == GL_ALPHA) ? GL_REPLACE : mode;
222 mode_a = mode;
223 break;
224
225 case GL_DECAL:
226 mode_rgb = GL_INTERPOLATE;
227 mode_a = GL_REPLACE;
228
229 state->SourceA[0] = GL_PREVIOUS;
230
231 /* Having alpha / luminance / intensity textures replace using the
232 * incoming fragment color matches the definition in NV_texture_shader.
233 * The 1.5 spec simply marks these as "undefined".
234 */
235 switch (texBaseFormat) {
236 case GL_ALPHA:
237 case GL_LUMINANCE:
238 case GL_LUMINANCE_ALPHA:
239 case GL_INTENSITY:
240 state->SourceRGB[0] = GL_PREVIOUS;
241 break;
242 case GL_RGB:
243 case GL_YCBCR_MESA:
244 mode_rgb = GL_REPLACE;
245 break;
246 case GL_RGBA:
247 state->SourceRGB[2] = GL_TEXTURE;
248 break;
249 }
250 break;
251
252 case GL_BLEND:
253 mode_rgb = GL_INTERPOLATE;
254 mode_a = GL_MODULATE;
255
256 switch (texBaseFormat) {
257 case GL_ALPHA:
258 mode_rgb = GL_REPLACE;
259 break;
260 case GL_INTENSITY:
261 mode_a = GL_INTERPOLATE;
262 state->SourceA[0] = GL_CONSTANT;
263 state->OperandA[2] = GL_SRC_ALPHA;
264 /* FALLTHROUGH */
265 case GL_LUMINANCE:
266 case GL_RGB:
267 case GL_LUMINANCE_ALPHA:
268 case GL_RGBA:
269 case GL_YCBCR_MESA:
270 state->SourceRGB[2] = GL_TEXTURE;
271 state->SourceA[2] = GL_TEXTURE;
272 state->SourceRGB[0] = GL_CONSTANT;
273 state->OperandRGB[2] = GL_SRC_COLOR;
274 break;
275 }
276 break;
277
278 case GL_ADD:
279 mode_rgb = (texBaseFormat == GL_ALPHA) ? GL_REPLACE : GL_ADD;
280 mode_a = (texBaseFormat == GL_INTENSITY) ? GL_ADD : GL_MODULATE;
281 break;
282
283 default:
284 _mesa_problem(NULL,
285 "Invalid texture env mode in calculate_derived_texenv");
286 return;
287 }
288
289 state->ModeRGB = (state->SourceRGB[0] != GL_PREVIOUS)
290 ? mode_rgb : GL_REPLACE;
291 state->ModeA = (state->SourceA[0] != GL_PREVIOUS)
292 ? mode_a : GL_REPLACE;
293 }
294
295
296
297
298 /* GL_ARB_multitexture */
299 void GLAPIENTRY
300 _mesa_ActiveTextureARB(GLenum texture)
301 {
302 GET_CURRENT_CONTEXT(ctx);
303 const GLuint texUnit = texture - GL_TEXTURE0;
304 ASSERT_OUTSIDE_BEGIN_END(ctx);
305
306 if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
307 _mesa_debug(ctx, "glActiveTexture %s\n",
308 _mesa_lookup_enum_by_nr(texture));
309
310 if (texUnit >= ctx->Const.MaxTextureImageUnits) {
311 _mesa_error(ctx, GL_INVALID_ENUM, "glActiveTexture(texture)");
312 return;
313 }
314
315 if (ctx->Texture.CurrentUnit == texUnit)
316 return;
317
318 FLUSH_VERTICES(ctx, _NEW_TEXTURE);
319
320 ctx->Texture.CurrentUnit = texUnit;
321 if (ctx->Transform.MatrixMode == GL_TEXTURE) {
322 /* update current stack pointer */
323 ctx->CurrentStack = &ctx->TextureMatrixStack[texUnit];
324 }
325
326 if (ctx->Driver.ActiveTexture) {
327 (*ctx->Driver.ActiveTexture)( ctx, (GLuint) texUnit );
328 }
329 }
330
331
332 /* GL_ARB_multitexture */
333 void GLAPIENTRY
334 _mesa_ClientActiveTextureARB(GLenum texture)
335 {
336 GET_CURRENT_CONTEXT(ctx);
337 GLuint texUnit = texture - GL_TEXTURE0;
338 ASSERT_OUTSIDE_BEGIN_END(ctx);
339
340 if (texUnit >= ctx->Const.MaxTextureCoordUnits) {
341 _mesa_error(ctx, GL_INVALID_ENUM, "glClientActiveTexture(texture)");
342 return;
343 }
344
345 FLUSH_VERTICES(ctx, _NEW_ARRAY);
346 ctx->Array.ActiveTexture = texUnit;
347 }
348
349
350
351 /**********************************************************************/
352 /***** State management *****/
353 /**********************************************************************/
354
355
356 /**
357 * \note This routine refers to derived texture attribute values to
358 * compute the ENABLE_TEXMAT flags, but is only called on
359 * _NEW_TEXTURE_MATRIX. On changes to _NEW_TEXTURE, the ENABLE_TEXMAT
360 * flags are updated by _mesa_update_textures(), below.
361 *
362 * \param ctx GL context.
363 */
364 static void
365 update_texture_matrices( GLcontext *ctx )
366 {
367 GLuint i;
368
369 ctx->Texture._TexMatEnabled = 0;
370
371 for (i=0; i < ctx->Const.MaxTextureCoordUnits; i++) {
372 if (_math_matrix_is_dirty(ctx->TextureMatrixStack[i].Top)) {
373 _math_matrix_analyse( ctx->TextureMatrixStack[i].Top );
374
375 if (ctx->Texture.Unit[i]._ReallyEnabled &&
376 ctx->TextureMatrixStack[i].Top->type != MATRIX_IDENTITY)
377 ctx->Texture._TexMatEnabled |= ENABLE_TEXMAT(i);
378
379 if (ctx->Driver.TextureMatrix)
380 ctx->Driver.TextureMatrix( ctx, i, ctx->TextureMatrixStack[i].Top);
381 }
382 }
383 }
384
385
386 /**
387 * Update texture object's _Function field. We need to do this
388 * whenever any of the texture object's shadow-related fields change
389 * or when we start/stop using a fragment program.
390 *
391 * This function could be expanded someday to update additional per-object
392 * fields that depend on assorted state changes.
393 */
394 static void
395 update_texture_compare_function(GLcontext *ctx,
396 struct gl_texture_object *tObj)
397 {
398 /* XXX temporarily disable this test since it breaks the GLSL
399 * shadow2D(), etc. functions.
400 */
401 if (0 /*ctx->FragmentProgram._Current*/) {
402 /* Texel/coordinate comparison is ignored for programs.
403 * See GL_ARB_fragment_program/shader spec for details.
404 */
405 tObj->_Function = GL_NONE;
406 }
407 else if (tObj->CompareFlag) {
408 /* GL_SGIX_shadow */
409 if (tObj->CompareOperator == GL_TEXTURE_LEQUAL_R_SGIX) {
410 tObj->_Function = GL_LEQUAL;
411 }
412 else {
413 ASSERT(tObj->CompareOperator == GL_TEXTURE_GEQUAL_R_SGIX);
414 tObj->_Function = GL_GEQUAL;
415 }
416 }
417 else if (tObj->CompareMode == GL_COMPARE_R_TO_TEXTURE_ARB) {
418 /* GL_ARB_shadow */
419 tObj->_Function = tObj->CompareFunc;
420 }
421 else {
422 tObj->_Function = GL_NONE; /* pass depth through as grayscale */
423 }
424 }
425
426
427 /**
428 * Helper function for determining which texture object (1D, 2D, cube, etc)
429 * should actually be used.
430 */
431 static void
432 texture_override(GLcontext *ctx,
433 struct gl_texture_unit *texUnit, GLbitfield enableBits,
434 struct gl_texture_object *texObj, GLuint textureBit)
435 {
436 if (!texUnit->_ReallyEnabled && (enableBits & textureBit)) {
437 if (!texObj->_Complete) {
438 _mesa_test_texobj_completeness(ctx, texObj);
439 }
440 if (texObj->_Complete) {
441 texUnit->_ReallyEnabled = textureBit;
442 texUnit->_Current = texObj;
443 update_texture_compare_function(ctx, texObj);
444 }
445 }
446 }
447
448
449 /**
450 * \note This routine refers to derived texture matrix values to
451 * compute the ENABLE_TEXMAT flags, but is only called on
452 * _NEW_TEXTURE. On changes to _NEW_TEXTURE_MATRIX, the ENABLE_TEXMAT
453 * flags are updated by _mesa_update_texture_matrices, above.
454 *
455 * \param ctx GL context.
456 */
457 static void
458 update_texture_state( GLcontext *ctx )
459 {
460 GLuint unit;
461 struct gl_fragment_program *fprog = NULL;
462 struct gl_vertex_program *vprog = NULL;
463
464 if (ctx->Shader.CurrentProgram &&
465 ctx->Shader.CurrentProgram->LinkStatus) {
466 fprog = ctx->Shader.CurrentProgram->FragmentProgram;
467 vprog = ctx->Shader.CurrentProgram->VertexProgram;
468 }
469 else {
470 if (ctx->FragmentProgram._Enabled) {
471 fprog = ctx->FragmentProgram.Current;
472 }
473 if (ctx->VertexProgram._Enabled) {
474 /* XXX enable this if/when non-shader vertex programs get
475 * texture fetches:
476 vprog = ctx->VertexProgram.Current;
477 */
478 }
479 }
480
481 ctx->NewState |= _NEW_TEXTURE; /* TODO: only set this if there are
482 * actual changes.
483 */
484
485 ctx->Texture._EnabledUnits = 0;
486 ctx->Texture._GenFlags = 0;
487 ctx->Texture._TexMatEnabled = 0;
488 ctx->Texture._TexGenEnabled = 0;
489
490 /*
491 * Update texture unit state.
492 */
493 for (unit = 0; unit < ctx->Const.MaxTextureImageUnits; unit++) {
494 struct gl_texture_unit *texUnit = &ctx->Texture.Unit[unit];
495 GLbitfield enableBits;
496
497 texUnit->_Current = NULL;
498 texUnit->_ReallyEnabled = 0;
499 texUnit->_GenFlags = 0;
500
501 /* Get the bitmask of texture enables.
502 * enableBits will be a mask of the TEXTURE_*_BIT flags indicating
503 * which texture targets are enabled (fixed function) or referenced
504 * by a fragment shader/program. When multiple flags are set, we'll
505 * settle on the one with highest priority (see texture_override below).
506 */
507 if (fprog || vprog) {
508 enableBits = 0x0;
509 if (fprog)
510 enableBits |= fprog->Base.TexturesUsed[unit];
511 if (vprog)
512 enableBits |= vprog->Base.TexturesUsed[unit];
513 }
514 else {
515 if (!texUnit->Enabled)
516 continue;
517 enableBits = texUnit->Enabled;
518 }
519
520 /* Look for the highest-priority texture target that's enabled and
521 * complete. That's the one we'll use for texturing. If we're using
522 * a fragment program we're guaranteed that bitcount(enabledBits) <= 1.
523 */
524 texture_override(ctx, texUnit, enableBits,
525 texUnit->Current2DArray, TEXTURE_2D_ARRAY_BIT);
526 texture_override(ctx, texUnit, enableBits,
527 texUnit->Current1DArray, TEXTURE_1D_ARRAY_BIT);
528 texture_override(ctx, texUnit, enableBits,
529 texUnit->CurrentCubeMap, TEXTURE_CUBE_BIT);
530 texture_override(ctx, texUnit, enableBits,
531 texUnit->Current3D, TEXTURE_3D_BIT);
532 texture_override(ctx, texUnit, enableBits,
533 texUnit->CurrentRect, TEXTURE_RECT_BIT);
534 texture_override(ctx, texUnit, enableBits,
535 texUnit->Current2D, TEXTURE_2D_BIT);
536 texture_override(ctx, texUnit, enableBits,
537 texUnit->Current1D, TEXTURE_1D_BIT);
538
539 if (!texUnit->_ReallyEnabled) {
540 continue;
541 }
542
543 if (texUnit->_ReallyEnabled)
544 ctx->Texture._EnabledUnits |= (1 << unit);
545
546 if (texUnit->EnvMode == GL_COMBINE) {
547 texUnit->_CurrentCombine = & texUnit->Combine;
548 }
549 else {
550 const struct gl_texture_object *texObj = texUnit->_Current;
551 GLenum format = texObj->Image[0][texObj->BaseLevel]->_BaseFormat;
552 if (format == GL_COLOR_INDEX) {
553 format = GL_RGBA; /* a bit of a hack */
554 }
555 else if (format == GL_DEPTH_COMPONENT
556 || format == GL_DEPTH_STENCIL_EXT) {
557 format = texObj->DepthMode;
558 }
559 calculate_derived_texenv(&texUnit->_EnvMode, texUnit->EnvMode, format);
560 texUnit->_CurrentCombine = & texUnit->_EnvMode;
561 }
562
563 switch (texUnit->_CurrentCombine->ModeRGB) {
564 case GL_REPLACE:
565 texUnit->_CurrentCombine->_NumArgsRGB = 1;
566 break;
567 case GL_MODULATE:
568 case GL_ADD:
569 case GL_ADD_SIGNED:
570 case GL_SUBTRACT:
571 case GL_DOT3_RGB:
572 case GL_DOT3_RGBA:
573 case GL_DOT3_RGB_EXT:
574 case GL_DOT3_RGBA_EXT:
575 texUnit->_CurrentCombine->_NumArgsRGB = 2;
576 break;
577 case GL_INTERPOLATE:
578 case GL_MODULATE_ADD_ATI:
579 case GL_MODULATE_SIGNED_ADD_ATI:
580 case GL_MODULATE_SUBTRACT_ATI:
581 texUnit->_CurrentCombine->_NumArgsRGB = 3;
582 break;
583 default:
584 texUnit->_CurrentCombine->_NumArgsRGB = 0;
585 _mesa_problem(ctx, "invalid RGB combine mode in update_texture_state");
586 return;
587 }
588
589 switch (texUnit->_CurrentCombine->ModeA) {
590 case GL_REPLACE:
591 texUnit->_CurrentCombine->_NumArgsA = 1;
592 break;
593 case GL_MODULATE:
594 case GL_ADD:
595 case GL_ADD_SIGNED:
596 case GL_SUBTRACT:
597 texUnit->_CurrentCombine->_NumArgsA = 2;
598 break;
599 case GL_INTERPOLATE:
600 case GL_MODULATE_ADD_ATI:
601 case GL_MODULATE_SIGNED_ADD_ATI:
602 case GL_MODULATE_SUBTRACT_ATI:
603 texUnit->_CurrentCombine->_NumArgsA = 3;
604 break;
605 default:
606 texUnit->_CurrentCombine->_NumArgsA = 0;
607 _mesa_problem(ctx, "invalid Alpha combine mode in update_texture_state");
608 break;
609 }
610 }
611
612 /* Determine which texture coordinate sets are actually needed */
613 if (fprog) {
614 const GLuint coordMask = (1 << MAX_TEXTURE_COORD_UNITS) - 1;
615 ctx->Texture._EnabledCoordUnits
616 = (fprog->Base.InputsRead >> FRAG_ATTRIB_TEX0) & coordMask;
617 }
618 else {
619 ctx->Texture._EnabledCoordUnits = ctx->Texture._EnabledUnits;
620 }
621
622 /* Setup texgen for those texture coordinate sets that are in use */
623 for (unit = 0; unit < ctx->Const.MaxTextureCoordUnits; unit++) {
624 struct gl_texture_unit *texUnit = &ctx->Texture.Unit[unit];
625
626 if (!(ctx->Texture._EnabledCoordUnits & (1 << unit)))
627 continue;
628
629 if (texUnit->TexGenEnabled) {
630 if (texUnit->TexGenEnabled & S_BIT) {
631 texUnit->_GenFlags |= texUnit->_GenBitS;
632 }
633 if (texUnit->TexGenEnabled & T_BIT) {
634 texUnit->_GenFlags |= texUnit->_GenBitT;
635 }
636 if (texUnit->TexGenEnabled & Q_BIT) {
637 texUnit->_GenFlags |= texUnit->_GenBitQ;
638 }
639 if (texUnit->TexGenEnabled & R_BIT) {
640 texUnit->_GenFlags |= texUnit->_GenBitR;
641 }
642
643 ctx->Texture._TexGenEnabled |= ENABLE_TEXGEN(unit);
644 ctx->Texture._GenFlags |= texUnit->_GenFlags;
645 }
646
647 if (ctx->TextureMatrixStack[unit].Top->type != MATRIX_IDENTITY)
648 ctx->Texture._TexMatEnabled |= ENABLE_TEXMAT(unit);
649 }
650 }
651
652
653 /**
654 * Update texture-related derived state.
655 */
656 void
657 _mesa_update_texture( GLcontext *ctx, GLuint new_state )
658 {
659 if (new_state & _NEW_TEXTURE_MATRIX)
660 update_texture_matrices( ctx );
661
662 if (new_state & (_NEW_TEXTURE | _NEW_PROGRAM))
663 update_texture_state( ctx );
664 }
665
666
667 /**********************************************************************/
668 /***** Initialization *****/
669 /**********************************************************************/
670
671 /**
672 * Allocate the proxy textures for the given context.
673 *
674 * \param ctx the context to allocate proxies for.
675 *
676 * \return GL_TRUE on success, or GL_FALSE on failure
677 *
678 * If run out of memory part way through the allocations, clean up and return
679 * GL_FALSE.
680 */
681 static GLboolean
682 alloc_proxy_textures( GLcontext *ctx )
683 {
684 static const GLenum targets[] = {
685 GL_TEXTURE_1D,
686 GL_TEXTURE_2D,
687 GL_TEXTURE_3D,
688 GL_TEXTURE_CUBE_MAP_ARB,
689 GL_TEXTURE_RECTANGLE_NV,
690 GL_TEXTURE_1D_ARRAY_EXT,
691 GL_TEXTURE_2D_ARRAY_EXT
692 };
693 GLint tgt;
694
695 ASSERT(Elements(targets) == NUM_TEXTURE_TARGETS);
696
697 for (tgt = 0; tgt < NUM_TEXTURE_TARGETS; tgt++) {
698 if (!(ctx->Texture.ProxyTex[tgt]
699 = ctx->Driver.NewTextureObject(ctx, 0, targets[tgt]))) {
700 /* out of memory, free what we did allocate */
701 while (--tgt >= 0) {
702 ctx->Driver.DeleteTexture(ctx, ctx->Texture.ProxyTex[tgt]);
703 }
704 return GL_FALSE;
705 }
706 }
707
708 assert(ctx->Texture.ProxyTex[0]->RefCount == 1); /* sanity check */
709 return GL_TRUE;
710 }
711
712
713 /**
714 * Initialize a texture unit.
715 *
716 * \param ctx GL context.
717 * \param unit texture unit number to be initialized.
718 */
719 static void
720 init_texture_unit( GLcontext *ctx, GLuint unit )
721 {
722 struct gl_texture_unit *texUnit = &ctx->Texture.Unit[unit];
723
724 texUnit->EnvMode = GL_MODULATE;
725 ASSIGN_4V( texUnit->EnvColor, 0.0, 0.0, 0.0, 0.0 );
726
727 texUnit->Combine = default_combine_state;
728 texUnit->_EnvMode = default_combine_state;
729 texUnit->_CurrentCombine = & texUnit->_EnvMode;
730
731 texUnit->TexGenEnabled = 0;
732 texUnit->GenModeS = GL_EYE_LINEAR;
733 texUnit->GenModeT = GL_EYE_LINEAR;
734 texUnit->GenModeR = GL_EYE_LINEAR;
735 texUnit->GenModeQ = GL_EYE_LINEAR;
736 texUnit->_GenBitS = TEXGEN_EYE_LINEAR;
737 texUnit->_GenBitT = TEXGEN_EYE_LINEAR;
738 texUnit->_GenBitR = TEXGEN_EYE_LINEAR;
739 texUnit->_GenBitQ = TEXGEN_EYE_LINEAR;
740
741 /* Yes, these plane coefficients are correct! */
742 ASSIGN_4V( texUnit->ObjectPlaneS, 1.0, 0.0, 0.0, 0.0 );
743 ASSIGN_4V( texUnit->ObjectPlaneT, 0.0, 1.0, 0.0, 0.0 );
744 ASSIGN_4V( texUnit->ObjectPlaneR, 0.0, 0.0, 0.0, 0.0 );
745 ASSIGN_4V( texUnit->ObjectPlaneQ, 0.0, 0.0, 0.0, 0.0 );
746 ASSIGN_4V( texUnit->EyePlaneS, 1.0, 0.0, 0.0, 0.0 );
747 ASSIGN_4V( texUnit->EyePlaneT, 0.0, 1.0, 0.0, 0.0 );
748 ASSIGN_4V( texUnit->EyePlaneR, 0.0, 0.0, 0.0, 0.0 );
749 ASSIGN_4V( texUnit->EyePlaneQ, 0.0, 0.0, 0.0, 0.0 );
750
751 /* initialize current texture object ptrs to the shared default objects */
752 _mesa_reference_texobj(&texUnit->Current1D, ctx->Shared->Default1D);
753 _mesa_reference_texobj(&texUnit->Current2D, ctx->Shared->Default2D);
754 _mesa_reference_texobj(&texUnit->Current3D, ctx->Shared->Default3D);
755 _mesa_reference_texobj(&texUnit->CurrentCubeMap, ctx->Shared->DefaultCubeMap);
756 _mesa_reference_texobj(&texUnit->CurrentRect, ctx->Shared->DefaultRect);
757 _mesa_reference_texobj(&texUnit->Current1DArray, ctx->Shared->Default1DArray);
758 _mesa_reference_texobj(&texUnit->Current2DArray, ctx->Shared->Default2DArray);
759 }
760
761
762 /**
763 * Initialize texture state for the given context.
764 */
765 GLboolean
766 _mesa_init_texture(GLcontext *ctx)
767 {
768 GLuint i;
769
770 assert(MAX_TEXTURE_LEVELS >= MAX_3D_TEXTURE_LEVELS);
771 assert(MAX_TEXTURE_LEVELS >= MAX_CUBE_TEXTURE_LEVELS);
772
773 /* Texture group */
774 ctx->Texture.CurrentUnit = 0; /* multitexture */
775 ctx->Texture._EnabledUnits = 0;
776 ctx->Texture.SharedPalette = GL_FALSE;
777 #if FEATURE_colortable
778 _mesa_init_colortable(&ctx->Texture.Palette);
779 #endif
780
781 for (i = 0; i < MAX_TEXTURE_UNITS; i++)
782 init_texture_unit( ctx, i );
783
784 /* After we're done initializing the context's texture state the default
785 * texture objects' refcounts should be at least MAX_TEXTURE_UNITS + 1.
786 */
787 assert(ctx->Shared->Default1D->RefCount >= MAX_TEXTURE_UNITS + 1);
788
789 /* Allocate proxy textures */
790 if (!alloc_proxy_textures( ctx ))
791 return GL_FALSE;
792
793 return GL_TRUE;
794 }
795
796
797 /**
798 * Free dynamically-allocted texture data attached to the given context.
799 */
800 void
801 _mesa_free_texture_data(GLcontext *ctx)
802 {
803 GLuint u, tgt;
804
805 /* unreference current textures */
806 for (u = 0; u < MAX_TEXTURE_IMAGE_UNITS; u++) {
807 struct gl_texture_unit *unit = ctx->Texture.Unit + u;
808 _mesa_reference_texobj(&unit->Current1D, NULL);
809 _mesa_reference_texobj(&unit->Current2D, NULL);
810 _mesa_reference_texobj(&unit->Current3D, NULL);
811 _mesa_reference_texobj(&unit->CurrentCubeMap, NULL);
812 _mesa_reference_texobj(&unit->CurrentRect, NULL);
813 _mesa_reference_texobj(&unit->Current1DArray, NULL);
814 _mesa_reference_texobj(&unit->Current2DArray, NULL);
815 }
816
817 /* Free proxy texture objects */
818 for (tgt = 0; tgt < NUM_TEXTURE_TARGETS; tgt++)
819 ctx->Driver.DeleteTexture(ctx, ctx->Texture.ProxyTex[tgt]);
820
821 #if FEATURE_colortable
822 {
823 GLuint i;
824 for (i = 0; i < MAX_TEXTURE_IMAGE_UNITS; i++)
825 _mesa_free_colortable_data( &ctx->Texture.Unit[i].ColorTable );
826 }
827 #endif
828 }
829
830
831 /**
832 * Update the default texture objects in the given context to reference those
833 * specified in the shared state and release those referencing the old
834 * shared state.
835 */
836 void
837 _mesa_update_default_objects_texture(GLcontext *ctx)
838 {
839 GLuint i;
840
841 for (i = 0; i < MAX_TEXTURE_UNITS; i++) {
842 struct gl_texture_unit *texUnit = &ctx->Texture.Unit[i];
843
844 _mesa_reference_texobj(&texUnit->Current1D, ctx->Shared->Default1D);
845 _mesa_reference_texobj(&texUnit->Current2D, ctx->Shared->Default2D);
846 _mesa_reference_texobj(&texUnit->Current3D, ctx->Shared->Default3D);
847 _mesa_reference_texobj(&texUnit->CurrentCubeMap, ctx->Shared->DefaultCubeMap);
848 _mesa_reference_texobj(&texUnit->CurrentRect, ctx->Shared->DefaultRect);
849 _mesa_reference_texobj(&texUnit->Current1DArray, ctx->Shared->Default1DArray);
850 _mesa_reference_texobj(&texUnit->Current2DArray, ctx->Shared->Default2DArray);
851 }
852 }