Merge remote-tracking branch 'mareko/r300g-draw-instanced' into pipe-video
[mesa.git] / src / mesa / main / texparam.c
1 /*
2 * Mesa 3-D graphics library
3 * Version: 7.5
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 /**
27 * \file texparam.c
28 *
29 * glTexParameter-related functions
30 */
31
32
33 #include "main/glheader.h"
34 #include "main/colormac.h"
35 #include "main/context.h"
36 #include "main/enums.h"
37 #include "main/formats.h"
38 #include "main/macros.h"
39 #include "main/mfeatures.h"
40 #include "main/mtypes.h"
41 #include "main/state.h"
42 #include "main/texcompress.h"
43 #include "main/texparam.h"
44 #include "main/teximage.h"
45 #include "main/texstate.h"
46 #include "main/texfetch.h"
47 #include "program/prog_instruction.h"
48
49
50 /**
51 * Check if a coordinate wrap mode is supported for the texture target.
52 * \return GL_TRUE if legal, GL_FALSE otherwise
53 */
54 static GLboolean
55 validate_texture_wrap_mode(struct gl_context * ctx, GLenum target, GLenum wrap)
56 {
57 const struct gl_extensions * const e = & ctx->Extensions;
58
59 if (wrap == GL_CLAMP || wrap == GL_CLAMP_TO_EDGE ||
60 (wrap == GL_CLAMP_TO_BORDER && e->ARB_texture_border_clamp)) {
61 /* any texture target */
62 return GL_TRUE;
63 }
64 else if (target != GL_TEXTURE_RECTANGLE_NV &&
65 (wrap == GL_REPEAT ||
66 (wrap == GL_MIRRORED_REPEAT &&
67 e->ARB_texture_mirrored_repeat) ||
68 (wrap == GL_MIRROR_CLAMP_EXT &&
69 (e->ATI_texture_mirror_once || e->EXT_texture_mirror_clamp)) ||
70 (wrap == GL_MIRROR_CLAMP_TO_EDGE_EXT &&
71 (e->ATI_texture_mirror_once || e->EXT_texture_mirror_clamp)) ||
72 (wrap == GL_MIRROR_CLAMP_TO_BORDER_EXT &&
73 (e->EXT_texture_mirror_clamp)))) {
74 /* non-rectangle texture */
75 return GL_TRUE;
76 }
77
78 _mesa_error( ctx, GL_INVALID_ENUM, "glTexParameter(param=0x%x)", wrap );
79 return GL_FALSE;
80 }
81
82
83 /**
84 * Get current texture object for given target.
85 * Return NULL if any error (and record the error).
86 * Note that this is different from _mesa_select_tex_object() in that proxy
87 * targets are not accepted.
88 * Only the glGetTexLevelParameter() functions accept proxy targets.
89 */
90 static struct gl_texture_object *
91 get_texobj(struct gl_context *ctx, GLenum target, GLboolean get)
92 {
93 struct gl_texture_unit *texUnit;
94
95 if (ctx->Texture.CurrentUnit >= ctx->Const.MaxCombinedTextureImageUnits) {
96 _mesa_error(ctx, GL_INVALID_OPERATION,
97 "gl%sTexParameter(current unit)", get ? "Get" : "");
98 return NULL;
99 }
100
101 texUnit = _mesa_get_current_tex_unit(ctx);
102
103 switch (target) {
104 case GL_TEXTURE_1D:
105 return texUnit->CurrentTex[TEXTURE_1D_INDEX];
106 case GL_TEXTURE_2D:
107 return texUnit->CurrentTex[TEXTURE_2D_INDEX];
108 case GL_TEXTURE_3D:
109 return texUnit->CurrentTex[TEXTURE_3D_INDEX];
110 case GL_TEXTURE_CUBE_MAP:
111 if (ctx->Extensions.ARB_texture_cube_map) {
112 return texUnit->CurrentTex[TEXTURE_CUBE_INDEX];
113 }
114 break;
115 case GL_TEXTURE_RECTANGLE_NV:
116 if (ctx->Extensions.NV_texture_rectangle) {
117 return texUnit->CurrentTex[TEXTURE_RECT_INDEX];
118 }
119 break;
120 case GL_TEXTURE_1D_ARRAY_EXT:
121 if (ctx->Extensions.MESA_texture_array ||
122 ctx->Extensions.EXT_texture_array) {
123 return texUnit->CurrentTex[TEXTURE_1D_ARRAY_INDEX];
124 }
125 break;
126 case GL_TEXTURE_2D_ARRAY_EXT:
127 if (ctx->Extensions.MESA_texture_array ||
128 ctx->Extensions.EXT_texture_array) {
129 return texUnit->CurrentTex[TEXTURE_2D_ARRAY_INDEX];
130 }
131 break;
132 default:
133 ;
134 }
135
136 _mesa_error(ctx, GL_INVALID_ENUM,
137 "gl%sTexParameter(target)", get ? "Get" : "");
138 return NULL;
139 }
140
141
142 /**
143 * Convert GL_RED/GREEN/BLUE/ALPHA/ZERO/ONE to SWIZZLE_X/Y/Z/W/ZERO/ONE.
144 * \return -1 if error.
145 */
146 static GLint
147 comp_to_swizzle(GLenum comp)
148 {
149 switch (comp) {
150 case GL_RED:
151 return SWIZZLE_X;
152 case GL_GREEN:
153 return SWIZZLE_Y;
154 case GL_BLUE:
155 return SWIZZLE_Z;
156 case GL_ALPHA:
157 return SWIZZLE_W;
158 case GL_ZERO:
159 return SWIZZLE_ZERO;
160 case GL_ONE:
161 return SWIZZLE_ONE;
162 default:
163 return -1;
164 }
165 }
166
167
168 static void
169 set_swizzle_component(GLuint *swizzle, GLuint comp, GLuint swz)
170 {
171 ASSERT(comp < 4);
172 ASSERT(swz <= SWIZZLE_NIL);
173 {
174 GLuint mask = 0x7 << (3 * comp);
175 GLuint s = (*swizzle & ~mask) | (swz << (3 * comp));
176 *swizzle = s;
177 }
178 }
179
180
181 /**
182 * This is called just prior to changing any texture object state which
183 * will not effect texture completeness.
184 */
185 static INLINE void
186 flush(struct gl_context *ctx)
187 {
188 FLUSH_VERTICES(ctx, _NEW_TEXTURE);
189 }
190
191
192 /**
193 * This is called just prior to changing any texture object state which
194 * can effect texture completeness (texture base level, max level,
195 * minification filter).
196 * Any pending rendering will be flushed out, we'll set the _NEW_TEXTURE
197 * state flag and then mark the texture object as 'incomplete' so that any
198 * per-texture derived state gets recomputed.
199 */
200 static INLINE void
201 incomplete(struct gl_context *ctx, struct gl_texture_object *texObj)
202 {
203 FLUSH_VERTICES(ctx, _NEW_TEXTURE);
204 texObj->_Complete = GL_FALSE;
205 }
206
207
208 /**
209 * Set an integer-valued texture parameter
210 * \return GL_TRUE if legal AND the value changed, GL_FALSE otherwise
211 */
212 static GLboolean
213 set_tex_parameteri(struct gl_context *ctx,
214 struct gl_texture_object *texObj,
215 GLenum pname, const GLint *params)
216 {
217 switch (pname) {
218 case GL_TEXTURE_MIN_FILTER:
219 if (texObj->Sampler.MinFilter == params[0])
220 return GL_FALSE;
221 switch (params[0]) {
222 case GL_NEAREST:
223 case GL_LINEAR:
224 incomplete(ctx, texObj);
225 texObj->Sampler.MinFilter = params[0];
226 return GL_TRUE;
227 case GL_NEAREST_MIPMAP_NEAREST:
228 case GL_LINEAR_MIPMAP_NEAREST:
229 case GL_NEAREST_MIPMAP_LINEAR:
230 case GL_LINEAR_MIPMAP_LINEAR:
231 if (texObj->Target != GL_TEXTURE_RECTANGLE_NV) {
232 incomplete(ctx, texObj);
233 texObj->Sampler.MinFilter = params[0];
234 return GL_TRUE;
235 }
236 /* fall-through */
237 default:
238 goto invalid_param;
239 }
240 return GL_FALSE;
241
242 case GL_TEXTURE_MAG_FILTER:
243 if (texObj->Sampler.MagFilter == params[0])
244 return GL_FALSE;
245 switch (params[0]) {
246 case GL_NEAREST:
247 case GL_LINEAR:
248 flush(ctx); /* does not effect completeness */
249 texObj->Sampler.MagFilter = params[0];
250 return GL_TRUE;
251 default:
252 goto invalid_param;
253 }
254 return GL_FALSE;
255
256 case GL_TEXTURE_WRAP_S:
257 if (texObj->Sampler.WrapS == params[0])
258 return GL_FALSE;
259 if (validate_texture_wrap_mode(ctx, texObj->Target, params[0])) {
260 flush(ctx);
261 texObj->Sampler.WrapS = params[0];
262 return GL_TRUE;
263 }
264 return GL_FALSE;
265
266 case GL_TEXTURE_WRAP_T:
267 if (texObj->Sampler.WrapT == params[0])
268 return GL_FALSE;
269 if (validate_texture_wrap_mode(ctx, texObj->Target, params[0])) {
270 flush(ctx);
271 texObj->Sampler.WrapT = params[0];
272 return GL_TRUE;
273 }
274 return GL_FALSE;
275
276 case GL_TEXTURE_WRAP_R:
277 if (texObj->Sampler.WrapR == params[0])
278 return GL_FALSE;
279 if (validate_texture_wrap_mode(ctx, texObj->Target, params[0])) {
280 flush(ctx);
281 texObj->Sampler.WrapR = params[0];
282 return GL_TRUE;
283 }
284 return GL_FALSE;
285
286 case GL_TEXTURE_BASE_LEVEL:
287 if (texObj->BaseLevel == params[0])
288 return GL_FALSE;
289 if (params[0] < 0 ||
290 (texObj->Target == GL_TEXTURE_RECTANGLE_ARB && params[0] != 0)) {
291 _mesa_error(ctx, GL_INVALID_VALUE,
292 "glTexParameter(param=%d)", params[0]);
293 return GL_FALSE;
294 }
295 incomplete(ctx, texObj);
296 texObj->BaseLevel = params[0];
297 return GL_TRUE;
298
299 case GL_TEXTURE_MAX_LEVEL:
300 if (texObj->MaxLevel == params[0])
301 return GL_FALSE;
302 if (params[0] < 0 || texObj->Target == GL_TEXTURE_RECTANGLE_ARB) {
303 _mesa_error(ctx, GL_INVALID_OPERATION,
304 "glTexParameter(param=%d)", params[0]);
305 return GL_FALSE;
306 }
307 incomplete(ctx, texObj);
308 texObj->MaxLevel = params[0];
309 return GL_TRUE;
310
311 case GL_GENERATE_MIPMAP_SGIS:
312 if (texObj->GenerateMipmap != params[0]) {
313 /* no flush() */
314 texObj->GenerateMipmap = params[0] ? GL_TRUE : GL_FALSE;
315 return GL_TRUE;
316 }
317 return GL_FALSE;
318
319 case GL_TEXTURE_COMPARE_MODE_ARB:
320 if (ctx->Extensions.ARB_shadow) {
321 if (texObj->Sampler.CompareMode == params[0])
322 return GL_FALSE;
323 if (params[0] == GL_NONE ||
324 params[0] == GL_COMPARE_R_TO_TEXTURE_ARB) {
325 flush(ctx);
326 texObj->Sampler.CompareMode = params[0];
327 return GL_TRUE;
328 }
329 goto invalid_param;
330 }
331 goto invalid_pname;
332
333 case GL_TEXTURE_COMPARE_FUNC_ARB:
334 if (ctx->Extensions.ARB_shadow) {
335 if (texObj->Sampler.CompareFunc == params[0])
336 return GL_FALSE;
337 switch (params[0]) {
338 case GL_LEQUAL:
339 case GL_GEQUAL:
340 flush(ctx);
341 texObj->Sampler.CompareFunc = params[0];
342 return GL_TRUE;
343 case GL_EQUAL:
344 case GL_NOTEQUAL:
345 case GL_LESS:
346 case GL_GREATER:
347 case GL_ALWAYS:
348 case GL_NEVER:
349 if (ctx->Extensions.EXT_shadow_funcs) {
350 flush(ctx);
351 texObj->Sampler.CompareFunc = params[0];
352 return GL_TRUE;
353 }
354 /* fall-through */
355 default:
356 goto invalid_param;
357 }
358 }
359 goto invalid_pname;
360
361 case GL_DEPTH_TEXTURE_MODE_ARB:
362 if (ctx->Extensions.ARB_depth_texture) {
363 if (texObj->Sampler.DepthMode == params[0])
364 return GL_FALSE;
365 if (params[0] == GL_LUMINANCE ||
366 params[0] == GL_INTENSITY ||
367 params[0] == GL_ALPHA ||
368 (ctx->Extensions.ARB_texture_rg && params[0] == GL_RED)) {
369 flush(ctx);
370 texObj->Sampler.DepthMode = params[0];
371 return GL_TRUE;
372 }
373 goto invalid_param;
374 }
375 goto invalid_pname;
376
377 #if FEATURE_OES_draw_texture
378 case GL_TEXTURE_CROP_RECT_OES:
379 texObj->CropRect[0] = params[0];
380 texObj->CropRect[1] = params[1];
381 texObj->CropRect[2] = params[2];
382 texObj->CropRect[3] = params[3];
383 return GL_TRUE;
384 #endif
385
386 case GL_TEXTURE_SWIZZLE_R_EXT:
387 case GL_TEXTURE_SWIZZLE_G_EXT:
388 case GL_TEXTURE_SWIZZLE_B_EXT:
389 case GL_TEXTURE_SWIZZLE_A_EXT:
390 if (ctx->Extensions.EXT_texture_swizzle) {
391 const GLuint comp = pname - GL_TEXTURE_SWIZZLE_R_EXT;
392 const GLint swz = comp_to_swizzle(params[0]);
393 if (swz < 0) {
394 _mesa_error(ctx, GL_INVALID_OPERATION,
395 "glTexParameter(swizzle 0x%x)", params[0]);
396 return GL_FALSE;
397 }
398 ASSERT(comp < 4);
399 if (swz >= 0) {
400 flush(ctx);
401 texObj->Swizzle[comp] = params[0];
402 set_swizzle_component(&texObj->_Swizzle, comp, swz);
403 return GL_TRUE;
404 }
405 }
406 goto invalid_pname;
407
408 case GL_TEXTURE_SWIZZLE_RGBA_EXT:
409 if (ctx->Extensions.EXT_texture_swizzle) {
410 GLuint comp;
411 flush(ctx);
412 for (comp = 0; comp < 4; comp++) {
413 const GLint swz = comp_to_swizzle(params[comp]);
414 if (swz >= 0) {
415 texObj->Swizzle[comp] = params[comp];
416 set_swizzle_component(&texObj->_Swizzle, comp, swz);
417 }
418 else {
419 _mesa_error(ctx, GL_INVALID_OPERATION,
420 "glTexParameter(swizzle 0x%x)", params[comp]);
421 return GL_FALSE;
422 }
423 }
424 return GL_TRUE;
425 }
426 goto invalid_pname;
427
428 case GL_TEXTURE_SRGB_DECODE_EXT:
429 if (ctx->Extensions.EXT_texture_sRGB_decode) {
430 GLenum decode = params[0];
431 if (decode == GL_DECODE_EXT || decode == GL_SKIP_DECODE_EXT) {
432 if (texObj->Sampler.sRGBDecode != decode) {
433 flush(ctx);
434 texObj->Sampler.sRGBDecode = decode;
435 _mesa_update_fetch_functions(texObj);
436 }
437 return GL_TRUE;
438 }
439 }
440 goto invalid_pname;
441
442 case GL_TEXTURE_CUBE_MAP_SEAMLESS:
443 if (ctx->Extensions.AMD_seamless_cubemap_per_texture) {
444 GLenum param = params[0];
445 if (param != GL_TRUE && param != GL_FALSE) {
446 goto invalid_param;
447 }
448 if (param != texObj->Sampler.CubeMapSeamless) {
449 flush(ctx);
450 texObj->Sampler.CubeMapSeamless = param;
451 }
452 return GL_TRUE;
453 }
454 goto invalid_pname;
455
456 default:
457 goto invalid_pname;
458 }
459
460 invalid_pname:
461 _mesa_error(ctx, GL_INVALID_ENUM, "glTexParameter(pname=%s)",
462 _mesa_lookup_enum_by_nr(pname));
463 return GL_FALSE;
464
465 invalid_param:
466 _mesa_error(ctx, GL_INVALID_ENUM, "glTexParameter(param=%s)",
467 _mesa_lookup_enum_by_nr(params[0]));
468 return GL_FALSE;
469 }
470
471
472 /**
473 * Set a float-valued texture parameter
474 * \return GL_TRUE if legal AND the value changed, GL_FALSE otherwise
475 */
476 static GLboolean
477 set_tex_parameterf(struct gl_context *ctx,
478 struct gl_texture_object *texObj,
479 GLenum pname, const GLfloat *params)
480 {
481 switch (pname) {
482 case GL_TEXTURE_MIN_LOD:
483 if (texObj->Sampler.MinLod == params[0])
484 return GL_FALSE;
485 flush(ctx);
486 texObj->Sampler.MinLod = params[0];
487 return GL_TRUE;
488
489 case GL_TEXTURE_MAX_LOD:
490 if (texObj->Sampler.MaxLod == params[0])
491 return GL_FALSE;
492 flush(ctx);
493 texObj->Sampler.MaxLod = params[0];
494 return GL_TRUE;
495
496 case GL_TEXTURE_PRIORITY:
497 flush(ctx);
498 texObj->Priority = CLAMP(params[0], 0.0F, 1.0F);
499 return GL_TRUE;
500
501 case GL_TEXTURE_MAX_ANISOTROPY_EXT:
502 if (ctx->Extensions.EXT_texture_filter_anisotropic) {
503 if (texObj->Sampler.MaxAnisotropy == params[0])
504 return GL_FALSE;
505 if (params[0] < 1.0) {
506 _mesa_error(ctx, GL_INVALID_VALUE, "glTexParameter(param)" );
507 return GL_FALSE;
508 }
509 flush(ctx);
510 /* clamp to max, that's what NVIDIA does */
511 texObj->Sampler.MaxAnisotropy = MIN2(params[0],
512 ctx->Const.MaxTextureMaxAnisotropy);
513 return GL_TRUE;
514 }
515 else {
516 static GLuint count = 0;
517 if (count++ < 10)
518 _mesa_error(ctx, GL_INVALID_ENUM,
519 "glTexParameter(pname=GL_TEXTURE_MAX_ANISOTROPY_EXT)");
520 }
521 return GL_FALSE;
522
523 case GL_TEXTURE_COMPARE_FAIL_VALUE_ARB:
524 if (ctx->Extensions.ARB_shadow_ambient) {
525 if (texObj->Sampler.CompareFailValue != params[0]) {
526 flush(ctx);
527 texObj->Sampler.CompareFailValue = CLAMP(params[0], 0.0F, 1.0F);
528 return GL_TRUE;
529 }
530 }
531 else {
532 _mesa_error(ctx, GL_INVALID_ENUM,
533 "glTexParameter(pname=GL_TEXTURE_COMPARE_FAIL_VALUE_ARB)");
534 }
535 return GL_FALSE;
536
537 case GL_TEXTURE_LOD_BIAS:
538 /* NOTE: this is really part of OpenGL 1.4, not EXT_texture_lod_bias */
539 if (ctx->Extensions.EXT_texture_lod_bias) {
540 if (texObj->Sampler.LodBias != params[0]) {
541 flush(ctx);
542 texObj->Sampler.LodBias = params[0];
543 return GL_TRUE;
544 }
545 return GL_FALSE;
546 }
547 break;
548
549 case GL_TEXTURE_BORDER_COLOR:
550 flush(ctx);
551 /* ARB_texture_float disables clamping */
552 if (ctx->Extensions.ARB_texture_float) {
553 texObj->Sampler.BorderColor.f[RCOMP] = params[0];
554 texObj->Sampler.BorderColor.f[GCOMP] = params[1];
555 texObj->Sampler.BorderColor.f[BCOMP] = params[2];
556 texObj->Sampler.BorderColor.f[ACOMP] = params[3];
557 } else {
558 texObj->Sampler.BorderColor.f[RCOMP] = CLAMP(params[0], 0.0F, 1.0F);
559 texObj->Sampler.BorderColor.f[GCOMP] = CLAMP(params[1], 0.0F, 1.0F);
560 texObj->Sampler.BorderColor.f[BCOMP] = CLAMP(params[2], 0.0F, 1.0F);
561 texObj->Sampler.BorderColor.f[ACOMP] = CLAMP(params[3], 0.0F, 1.0F);
562 }
563 return GL_TRUE;
564
565 default:
566 _mesa_error(ctx, GL_INVALID_ENUM, "glTexParameter(pname=0x%x)", pname);
567 }
568 return GL_FALSE;
569 }
570
571
572 void GLAPIENTRY
573 _mesa_TexParameterf(GLenum target, GLenum pname, GLfloat param)
574 {
575 GLboolean need_update;
576 struct gl_texture_object *texObj;
577 GET_CURRENT_CONTEXT(ctx);
578 ASSERT_OUTSIDE_BEGIN_END(ctx);
579
580 texObj = get_texobj(ctx, target, GL_FALSE);
581 if (!texObj)
582 return;
583
584 switch (pname) {
585 case GL_TEXTURE_MIN_FILTER:
586 case GL_TEXTURE_MAG_FILTER:
587 case GL_TEXTURE_WRAP_S:
588 case GL_TEXTURE_WRAP_T:
589 case GL_TEXTURE_WRAP_R:
590 case GL_TEXTURE_BASE_LEVEL:
591 case GL_TEXTURE_MAX_LEVEL:
592 case GL_GENERATE_MIPMAP_SGIS:
593 case GL_TEXTURE_COMPARE_MODE_ARB:
594 case GL_TEXTURE_COMPARE_FUNC_ARB:
595 case GL_DEPTH_TEXTURE_MODE_ARB:
596 case GL_TEXTURE_SRGB_DECODE_EXT:
597 case GL_TEXTURE_CUBE_MAP_SEAMLESS:
598 {
599 /* convert float param to int */
600 GLint p[4];
601 p[0] = (GLint) param;
602 p[1] = p[2] = p[3] = 0;
603 need_update = set_tex_parameteri(ctx, texObj, pname, p);
604 }
605 break;
606 default:
607 {
608 /* this will generate an error if pname is illegal */
609 GLfloat p[4];
610 p[0] = param;
611 p[1] = p[2] = p[3] = 0.0F;
612 need_update = set_tex_parameterf(ctx, texObj, pname, p);
613 }
614 }
615
616 if (ctx->Driver.TexParameter && need_update) {
617 ctx->Driver.TexParameter(ctx, target, texObj, pname, &param);
618 }
619 }
620
621
622 void GLAPIENTRY
623 _mesa_TexParameterfv(GLenum target, GLenum pname, const GLfloat *params)
624 {
625 GLboolean need_update;
626 struct gl_texture_object *texObj;
627 GET_CURRENT_CONTEXT(ctx);
628 ASSERT_OUTSIDE_BEGIN_END(ctx);
629
630 texObj = get_texobj(ctx, target, GL_FALSE);
631 if (!texObj)
632 return;
633
634 switch (pname) {
635 case GL_TEXTURE_MIN_FILTER:
636 case GL_TEXTURE_MAG_FILTER:
637 case GL_TEXTURE_WRAP_S:
638 case GL_TEXTURE_WRAP_T:
639 case GL_TEXTURE_WRAP_R:
640 case GL_TEXTURE_BASE_LEVEL:
641 case GL_TEXTURE_MAX_LEVEL:
642 case GL_GENERATE_MIPMAP_SGIS:
643 case GL_TEXTURE_COMPARE_MODE_ARB:
644 case GL_TEXTURE_COMPARE_FUNC_ARB:
645 case GL_DEPTH_TEXTURE_MODE_ARB:
646 case GL_TEXTURE_SRGB_DECODE_EXT:
647 case GL_TEXTURE_CUBE_MAP_SEAMLESS:
648 {
649 /* convert float param to int */
650 GLint p[4];
651 p[0] = (GLint) params[0];
652 p[1] = p[2] = p[3] = 0;
653 need_update = set_tex_parameteri(ctx, texObj, pname, p);
654 }
655 break;
656
657 #if FEATURE_OES_draw_texture
658 case GL_TEXTURE_CROP_RECT_OES:
659 {
660 /* convert float params to int */
661 GLint iparams[4];
662 iparams[0] = (GLint) params[0];
663 iparams[1] = (GLint) params[1];
664 iparams[2] = (GLint) params[2];
665 iparams[3] = (GLint) params[3];
666 need_update = set_tex_parameteri(ctx, texObj, pname, iparams);
667 }
668 break;
669 #endif
670
671 default:
672 /* this will generate an error if pname is illegal */
673 need_update = set_tex_parameterf(ctx, texObj, pname, params);
674 }
675
676 if (ctx->Driver.TexParameter && need_update) {
677 ctx->Driver.TexParameter(ctx, target, texObj, pname, params);
678 }
679 }
680
681
682 void GLAPIENTRY
683 _mesa_TexParameteri(GLenum target, GLenum pname, GLint param)
684 {
685 GLboolean need_update;
686 struct gl_texture_object *texObj;
687 GET_CURRENT_CONTEXT(ctx);
688 ASSERT_OUTSIDE_BEGIN_END(ctx);
689
690 texObj = get_texobj(ctx, target, GL_FALSE);
691 if (!texObj)
692 return;
693
694 switch (pname) {
695 case GL_TEXTURE_MIN_LOD:
696 case GL_TEXTURE_MAX_LOD:
697 case GL_TEXTURE_PRIORITY:
698 case GL_TEXTURE_MAX_ANISOTROPY_EXT:
699 case GL_TEXTURE_LOD_BIAS:
700 case GL_TEXTURE_COMPARE_FAIL_VALUE_ARB:
701 {
702 GLfloat fparam[4];
703 fparam[0] = (GLfloat) param;
704 fparam[1] = fparam[2] = fparam[3] = 0.0F;
705 /* convert int param to float */
706 need_update = set_tex_parameterf(ctx, texObj, pname, fparam);
707 }
708 break;
709 default:
710 /* this will generate an error if pname is illegal */
711 {
712 GLint iparam[4];
713 iparam[0] = param;
714 iparam[1] = iparam[2] = iparam[3] = 0;
715 need_update = set_tex_parameteri(ctx, texObj, pname, iparam);
716 }
717 }
718
719 if (ctx->Driver.TexParameter && need_update) {
720 GLfloat fparam = (GLfloat) param;
721 ctx->Driver.TexParameter(ctx, target, texObj, pname, &fparam);
722 }
723 }
724
725
726 void GLAPIENTRY
727 _mesa_TexParameteriv(GLenum target, GLenum pname, const GLint *params)
728 {
729 GLboolean need_update;
730 struct gl_texture_object *texObj;
731 GET_CURRENT_CONTEXT(ctx);
732 ASSERT_OUTSIDE_BEGIN_END(ctx);
733
734 texObj = get_texobj(ctx, target, GL_FALSE);
735 if (!texObj)
736 return;
737
738 switch (pname) {
739 case GL_TEXTURE_BORDER_COLOR:
740 {
741 /* convert int params to float */
742 GLfloat fparams[4];
743 fparams[0] = INT_TO_FLOAT(params[0]);
744 fparams[1] = INT_TO_FLOAT(params[1]);
745 fparams[2] = INT_TO_FLOAT(params[2]);
746 fparams[3] = INT_TO_FLOAT(params[3]);
747 need_update = set_tex_parameterf(ctx, texObj, pname, fparams);
748 }
749 break;
750 case GL_TEXTURE_MIN_LOD:
751 case GL_TEXTURE_MAX_LOD:
752 case GL_TEXTURE_PRIORITY:
753 case GL_TEXTURE_MAX_ANISOTROPY_EXT:
754 case GL_TEXTURE_LOD_BIAS:
755 case GL_TEXTURE_COMPARE_FAIL_VALUE_ARB:
756 {
757 /* convert int param to float */
758 GLfloat fparams[4];
759 fparams[0] = (GLfloat) params[0];
760 fparams[1] = fparams[2] = fparams[3] = 0.0F;
761 need_update = set_tex_parameterf(ctx, texObj, pname, fparams);
762 }
763 break;
764 default:
765 /* this will generate an error if pname is illegal */
766 need_update = set_tex_parameteri(ctx, texObj, pname, params);
767 }
768
769 if (ctx->Driver.TexParameter && need_update) {
770 GLfloat fparams[4];
771 fparams[0] = INT_TO_FLOAT(params[0]);
772 if (pname == GL_TEXTURE_BORDER_COLOR ||
773 pname == GL_TEXTURE_CROP_RECT_OES) {
774 fparams[1] = INT_TO_FLOAT(params[1]);
775 fparams[2] = INT_TO_FLOAT(params[2]);
776 fparams[3] = INT_TO_FLOAT(params[3]);
777 }
778 ctx->Driver.TexParameter(ctx, target, texObj, pname, fparams);
779 }
780 }
781
782
783 /**
784 * Set tex parameter to integer value(s). Primarily intended to set
785 * integer-valued texture border color (for integer-valued textures).
786 * New in GL 3.0.
787 */
788 void GLAPIENTRY
789 _mesa_TexParameterIiv(GLenum target, GLenum pname, const GLint *params)
790 {
791 struct gl_texture_object *texObj;
792 GET_CURRENT_CONTEXT(ctx);
793 ASSERT_OUTSIDE_BEGIN_END(ctx);
794
795 texObj = get_texobj(ctx, target, GL_FALSE);
796 if (!texObj)
797 return;
798
799 switch (pname) {
800 case GL_TEXTURE_BORDER_COLOR:
801 FLUSH_VERTICES(ctx, _NEW_TEXTURE);
802 /* set the integer-valued border color */
803 COPY_4V(texObj->Sampler.BorderColor.i, params);
804 break;
805 default:
806 _mesa_TexParameteriv(target, pname, params);
807 break;
808 }
809 /* XXX no driver hook for TexParameterIiv() yet */
810 }
811
812
813 /**
814 * Set tex parameter to unsigned integer value(s). Primarily intended to set
815 * uint-valued texture border color (for integer-valued textures).
816 * New in GL 3.0
817 */
818 void GLAPIENTRY
819 _mesa_TexParameterIuiv(GLenum target, GLenum pname, const GLuint *params)
820 {
821 struct gl_texture_object *texObj;
822 GET_CURRENT_CONTEXT(ctx);
823 ASSERT_OUTSIDE_BEGIN_END(ctx);
824
825 texObj = get_texobj(ctx, target, GL_FALSE);
826 if (!texObj)
827 return;
828
829 switch (pname) {
830 case GL_TEXTURE_BORDER_COLOR:
831 FLUSH_VERTICES(ctx, _NEW_TEXTURE);
832 /* set the unsigned integer-valued border color */
833 COPY_4V(texObj->Sampler.BorderColor.ui, params);
834 break;
835 default:
836 _mesa_TexParameteriv(target, pname, (const GLint *) params);
837 break;
838 }
839 /* XXX no driver hook for TexParameterIuiv() yet */
840 }
841
842
843
844
845 void GLAPIENTRY
846 _mesa_GetTexLevelParameterfv( GLenum target, GLint level,
847 GLenum pname, GLfloat *params )
848 {
849 GLint iparam;
850 _mesa_GetTexLevelParameteriv( target, level, pname, &iparam );
851 *params = (GLfloat) iparam;
852 }
853
854
855 void GLAPIENTRY
856 _mesa_GetTexLevelParameteriv( GLenum target, GLint level,
857 GLenum pname, GLint *params )
858 {
859 const struct gl_texture_unit *texUnit;
860 struct gl_texture_object *texObj;
861 const struct gl_texture_image *img = NULL;
862 GLint maxLevels;
863 gl_format texFormat;
864 GET_CURRENT_CONTEXT(ctx);
865 ASSERT_OUTSIDE_BEGIN_END(ctx);
866
867 if (ctx->Texture.CurrentUnit >= ctx->Const.MaxCombinedTextureImageUnits) {
868 _mesa_error(ctx, GL_INVALID_OPERATION,
869 "glGetTexLevelParameteriv(current unit)");
870 return;
871 }
872
873 texUnit = _mesa_get_current_tex_unit(ctx);
874
875 /* this will catch bad target values */
876 maxLevels = _mesa_max_texture_levels(ctx, target);
877 if (maxLevels == 0) {
878 _mesa_error(ctx, GL_INVALID_ENUM,
879 "glGetTexLevelParameter[if]v(target=0x%x)", target);
880 return;
881 }
882
883 if (level < 0 || level >= maxLevels) {
884 _mesa_error( ctx, GL_INVALID_VALUE, "glGetTexLevelParameter[if]v" );
885 return;
886 }
887
888 texObj = _mesa_select_tex_object(ctx, texUnit, target);
889
890 img = _mesa_select_tex_image(ctx, texObj, target, level);
891 if (!img || !img->TexFormat) {
892 /* undefined texture image */
893 if (pname == GL_TEXTURE_COMPONENTS)
894 *params = 1;
895 else
896 *params = 0;
897 return;
898 }
899
900 texFormat = img->TexFormat;
901
902 switch (pname) {
903 case GL_TEXTURE_WIDTH:
904 *params = img->Width;
905 break;
906 case GL_TEXTURE_HEIGHT:
907 *params = img->Height;
908 break;
909 case GL_TEXTURE_DEPTH:
910 *params = img->Depth;
911 break;
912 case GL_TEXTURE_INTERNAL_FORMAT:
913 if (_mesa_is_format_compressed(texFormat)) {
914 /* need to return the actual compressed format */
915 *params = _mesa_compressed_format_to_glenum(ctx, texFormat);
916 }
917 else {
918 /* return the user's requested internal format */
919 *params = img->InternalFormat;
920 }
921 break;
922 case GL_TEXTURE_BORDER:
923 *params = img->Border;
924 break;
925 case GL_TEXTURE_RED_SIZE:
926 if (img->_BaseFormat == GL_RED) {
927 *params = _mesa_get_format_bits(texFormat, pname);
928 break;
929 }
930 /* FALLTHROUGH */
931 case GL_TEXTURE_GREEN_SIZE:
932 if (img->_BaseFormat == GL_RG) {
933 *params = _mesa_get_format_bits(texFormat, pname);
934 break;
935 }
936 /* FALLTHROUGH */
937 case GL_TEXTURE_BLUE_SIZE:
938 if (img->_BaseFormat == GL_RGB || img->_BaseFormat == GL_RGBA)
939 *params = _mesa_get_format_bits(texFormat, pname);
940 else
941 *params = 0;
942 break;
943 case GL_TEXTURE_ALPHA_SIZE:
944 if (img->_BaseFormat == GL_ALPHA ||
945 img->_BaseFormat == GL_LUMINANCE_ALPHA ||
946 img->_BaseFormat == GL_RGBA)
947 *params = _mesa_get_format_bits(texFormat, pname);
948 else
949 *params = 0;
950 break;
951 case GL_TEXTURE_INTENSITY_SIZE:
952 if (img->_BaseFormat != GL_INTENSITY)
953 *params = 0;
954 else {
955 *params = _mesa_get_format_bits(texFormat, pname);
956 if (*params == 0) {
957 /* intensity probably stored as rgb texture */
958 *params = MIN2(_mesa_get_format_bits(texFormat, GL_TEXTURE_RED_SIZE),
959 _mesa_get_format_bits(texFormat, GL_TEXTURE_GREEN_SIZE));
960 }
961 }
962 break;
963 case GL_TEXTURE_LUMINANCE_SIZE:
964 if (img->_BaseFormat != GL_LUMINANCE &&
965 img->_BaseFormat != GL_LUMINANCE_ALPHA)
966 *params = 0;
967 else {
968 *params = _mesa_get_format_bits(texFormat, pname);
969 if (*params == 0) {
970 /* luminance probably stored as rgb texture */
971 *params = MIN2(_mesa_get_format_bits(texFormat, GL_TEXTURE_RED_SIZE),
972 _mesa_get_format_bits(texFormat, GL_TEXTURE_GREEN_SIZE));
973 }
974 }
975 break;
976 case GL_TEXTURE_INDEX_SIZE_EXT:
977 if (img->_BaseFormat == GL_COLOR_INDEX)
978 *params = _mesa_get_format_bits(texFormat, pname);
979 else
980 *params = 0;
981 break;
982 case GL_TEXTURE_DEPTH_SIZE_ARB:
983 if (ctx->Extensions.ARB_depth_texture)
984 *params = _mesa_get_format_bits(texFormat, pname);
985 else
986 goto invalid_pname;
987 break;
988 case GL_TEXTURE_STENCIL_SIZE_EXT:
989 if (ctx->Extensions.EXT_packed_depth_stencil ||
990 ctx->Extensions.ARB_framebuffer_object) {
991 *params = _mesa_get_format_bits(texFormat, pname);
992 }
993 else {
994 goto invalid_pname;
995 }
996 break;
997 case GL_TEXTURE_SHARED_SIZE:
998 if (ctx->VersionMajor >= 3 ||
999 ctx->Extensions.EXT_texture_shared_exponent) {
1000 *params = texFormat == MESA_FORMAT_RGB9_E5_FLOAT ? 5 : 0;
1001 }
1002 else {
1003 goto invalid_pname;
1004 }
1005 break;
1006
1007 /* GL_ARB_texture_compression */
1008 case GL_TEXTURE_COMPRESSED_IMAGE_SIZE:
1009 if (_mesa_is_format_compressed(texFormat) &&
1010 !_mesa_is_proxy_texture(target)) {
1011 *params = _mesa_format_image_size(texFormat, img->Width,
1012 img->Height, img->Depth);
1013 }
1014 else {
1015 _mesa_error(ctx, GL_INVALID_OPERATION,
1016 "glGetTexLevelParameter[if]v(pname)");
1017 }
1018 break;
1019 case GL_TEXTURE_COMPRESSED:
1020 *params = (GLint) _mesa_is_format_compressed(texFormat);
1021 break;
1022
1023 /* GL_ARB_texture_float */
1024 case GL_TEXTURE_RED_TYPE_ARB:
1025 if (ctx->Extensions.ARB_texture_float) {
1026 *params = _mesa_get_format_bits(texFormat, GL_TEXTURE_RED_SIZE) ?
1027 _mesa_get_format_datatype(texFormat) : GL_NONE;
1028 }
1029 else {
1030 goto invalid_pname;
1031 }
1032 break;
1033 case GL_TEXTURE_GREEN_TYPE_ARB:
1034 if (ctx->Extensions.ARB_texture_float) {
1035 *params = _mesa_get_format_bits(texFormat, GL_TEXTURE_GREEN_SIZE) ?
1036 _mesa_get_format_datatype(texFormat) : GL_NONE;
1037 }
1038 else {
1039 goto invalid_pname;
1040 }
1041 break;
1042 case GL_TEXTURE_BLUE_TYPE_ARB:
1043 if (ctx->Extensions.ARB_texture_float) {
1044 *params = _mesa_get_format_bits(texFormat, GL_TEXTURE_BLUE_SIZE) ?
1045 _mesa_get_format_datatype(texFormat) : GL_NONE;
1046 }
1047 else {
1048 goto invalid_pname;
1049 }
1050 break;
1051 case GL_TEXTURE_ALPHA_TYPE_ARB:
1052 if (ctx->Extensions.ARB_texture_float) {
1053 *params = _mesa_get_format_bits(texFormat, GL_TEXTURE_ALPHA_SIZE) ?
1054 _mesa_get_format_datatype(texFormat) : GL_NONE;
1055 }
1056 else {
1057 goto invalid_pname;
1058 }
1059 break;
1060 case GL_TEXTURE_LUMINANCE_TYPE_ARB:
1061 if (ctx->Extensions.ARB_texture_float) {
1062 *params = _mesa_get_format_bits(texFormat, GL_TEXTURE_LUMINANCE_SIZE) ?
1063 _mesa_get_format_datatype(texFormat) : GL_NONE;
1064 }
1065 else {
1066 goto invalid_pname;
1067 }
1068 break;
1069 case GL_TEXTURE_INTENSITY_TYPE_ARB:
1070 if (ctx->Extensions.ARB_texture_float) {
1071 *params = _mesa_get_format_bits(texFormat, GL_TEXTURE_INTENSITY_SIZE) ?
1072 _mesa_get_format_datatype(texFormat) : GL_NONE;
1073 }
1074 else {
1075 goto invalid_pname;
1076 }
1077 break;
1078 case GL_TEXTURE_DEPTH_TYPE_ARB:
1079 if (ctx->Extensions.ARB_texture_float) {
1080 *params = _mesa_get_format_bits(texFormat, GL_TEXTURE_DEPTH_SIZE) ?
1081 _mesa_get_format_datatype(texFormat) : GL_NONE;
1082 }
1083 else {
1084 goto invalid_pname;
1085 }
1086 break;
1087
1088 default:
1089 goto invalid_pname;
1090 }
1091
1092 /* no error if we get here */
1093 return;
1094
1095 invalid_pname:
1096 _mesa_error(ctx, GL_INVALID_ENUM,
1097 "glGetTexLevelParameter[if]v(pname=%s)",
1098 _mesa_lookup_enum_by_nr(pname));
1099 }
1100
1101
1102
1103 void GLAPIENTRY
1104 _mesa_GetTexParameterfv( GLenum target, GLenum pname, GLfloat *params )
1105 {
1106 struct gl_texture_object *obj;
1107 GLboolean error = GL_FALSE;
1108 GET_CURRENT_CONTEXT(ctx);
1109 ASSERT_OUTSIDE_BEGIN_END(ctx);
1110
1111 obj = get_texobj(ctx, target, GL_TRUE);
1112 if (!obj)
1113 return;
1114
1115 _mesa_lock_texture(ctx, obj);
1116 switch (pname) {
1117 case GL_TEXTURE_MAG_FILTER:
1118 *params = ENUM_TO_FLOAT(obj->Sampler.MagFilter);
1119 break;
1120 case GL_TEXTURE_MIN_FILTER:
1121 *params = ENUM_TO_FLOAT(obj->Sampler.MinFilter);
1122 break;
1123 case GL_TEXTURE_WRAP_S:
1124 *params = ENUM_TO_FLOAT(obj->Sampler.WrapS);
1125 break;
1126 case GL_TEXTURE_WRAP_T:
1127 *params = ENUM_TO_FLOAT(obj->Sampler.WrapT);
1128 break;
1129 case GL_TEXTURE_WRAP_R:
1130 *params = ENUM_TO_FLOAT(obj->Sampler.WrapR);
1131 break;
1132 case GL_TEXTURE_BORDER_COLOR:
1133 if(ctx->NewState & (_NEW_BUFFERS | _NEW_FRAG_CLAMP))
1134 _mesa_update_state_locked(ctx);
1135 if(ctx->Color._ClampFragmentColor)
1136 {
1137 params[0] = CLAMP(obj->Sampler.BorderColor.f[0], 0.0F, 1.0F);
1138 params[1] = CLAMP(obj->Sampler.BorderColor.f[1], 0.0F, 1.0F);
1139 params[2] = CLAMP(obj->Sampler.BorderColor.f[2], 0.0F, 1.0F);
1140 params[3] = CLAMP(obj->Sampler.BorderColor.f[3], 0.0F, 1.0F);
1141 }
1142 else
1143 {
1144 params[0] = obj->Sampler.BorderColor.f[0];
1145 params[1] = obj->Sampler.BorderColor.f[1];
1146 params[2] = obj->Sampler.BorderColor.f[2];
1147 params[3] = obj->Sampler.BorderColor.f[3];
1148 }
1149 break;
1150 case GL_TEXTURE_RESIDENT:
1151 {
1152 GLboolean resident;
1153 if (ctx->Driver.IsTextureResident)
1154 resident = ctx->Driver.IsTextureResident(ctx, obj);
1155 else
1156 resident = GL_TRUE;
1157 *params = ENUM_TO_FLOAT(resident);
1158 }
1159 break;
1160 case GL_TEXTURE_PRIORITY:
1161 *params = obj->Priority;
1162 break;
1163 case GL_TEXTURE_MIN_LOD:
1164 *params = obj->Sampler.MinLod;
1165 break;
1166 case GL_TEXTURE_MAX_LOD:
1167 *params = obj->Sampler.MaxLod;
1168 break;
1169 case GL_TEXTURE_BASE_LEVEL:
1170 *params = (GLfloat) obj->BaseLevel;
1171 break;
1172 case GL_TEXTURE_MAX_LEVEL:
1173 *params = (GLfloat) obj->MaxLevel;
1174 break;
1175 case GL_TEXTURE_MAX_ANISOTROPY_EXT:
1176 if (ctx->Extensions.EXT_texture_filter_anisotropic) {
1177 *params = obj->Sampler.MaxAnisotropy;
1178 }
1179 else
1180 error = GL_TRUE;
1181 break;
1182 case GL_TEXTURE_COMPARE_FAIL_VALUE_ARB:
1183 if (ctx->Extensions.ARB_shadow_ambient) {
1184 *params = obj->Sampler.CompareFailValue;
1185 }
1186 else
1187 error = GL_TRUE;
1188 break;
1189 case GL_GENERATE_MIPMAP_SGIS:
1190 *params = (GLfloat) obj->GenerateMipmap;
1191 break;
1192 case GL_TEXTURE_COMPARE_MODE_ARB:
1193 if (ctx->Extensions.ARB_shadow) {
1194 *params = (GLfloat) obj->Sampler.CompareMode;
1195 }
1196 else
1197 error = GL_TRUE;
1198 break;
1199 case GL_TEXTURE_COMPARE_FUNC_ARB:
1200 if (ctx->Extensions.ARB_shadow) {
1201 *params = (GLfloat) obj->Sampler.CompareFunc;
1202 }
1203 else
1204 error = GL_TRUE;
1205 break;
1206 case GL_DEPTH_TEXTURE_MODE_ARB:
1207 if (ctx->Extensions.ARB_depth_texture) {
1208 *params = (GLfloat) obj->Sampler.DepthMode;
1209 }
1210 else
1211 error = GL_TRUE;
1212 break;
1213 case GL_TEXTURE_LOD_BIAS:
1214 if (ctx->Extensions.EXT_texture_lod_bias) {
1215 *params = obj->Sampler.LodBias;
1216 }
1217 else
1218 error = GL_TRUE;
1219 break;
1220 #if FEATURE_OES_draw_texture
1221 case GL_TEXTURE_CROP_RECT_OES:
1222 params[0] = obj->CropRect[0];
1223 params[1] = obj->CropRect[1];
1224 params[2] = obj->CropRect[2];
1225 params[3] = obj->CropRect[3];
1226 break;
1227 #endif
1228
1229 case GL_TEXTURE_SWIZZLE_R_EXT:
1230 case GL_TEXTURE_SWIZZLE_G_EXT:
1231 case GL_TEXTURE_SWIZZLE_B_EXT:
1232 case GL_TEXTURE_SWIZZLE_A_EXT:
1233 if (ctx->Extensions.EXT_texture_swizzle) {
1234 GLuint comp = pname - GL_TEXTURE_SWIZZLE_R_EXT;
1235 *params = (GLfloat) obj->Swizzle[comp];
1236 }
1237 else {
1238 error = GL_TRUE;
1239 }
1240 break;
1241
1242 case GL_TEXTURE_SWIZZLE_RGBA_EXT:
1243 if (ctx->Extensions.EXT_texture_swizzle) {
1244 GLuint comp;
1245 for (comp = 0; comp < 4; comp++) {
1246 params[comp] = (GLfloat) obj->Swizzle[comp];
1247 }
1248 }
1249 else {
1250 error = GL_TRUE;
1251 }
1252 break;
1253
1254 case GL_TEXTURE_CUBE_MAP_SEAMLESS:
1255 if (ctx->Extensions.AMD_seamless_cubemap_per_texture) {
1256 *params = (GLfloat) obj->Sampler.CubeMapSeamless;
1257 }
1258 else {
1259 error = GL_TRUE;
1260 }
1261
1262 default:
1263 error = GL_TRUE;
1264 break;
1265 }
1266
1267 if (error)
1268 _mesa_error(ctx, GL_INVALID_ENUM, "glGetTexParameterfv(pname=0x%x)",
1269 pname);
1270
1271 _mesa_unlock_texture(ctx, obj);
1272 }
1273
1274
1275 void GLAPIENTRY
1276 _mesa_GetTexParameteriv( GLenum target, GLenum pname, GLint *params )
1277 {
1278 struct gl_texture_object *obj;
1279 GLboolean error = GL_FALSE;
1280 GET_CURRENT_CONTEXT(ctx);
1281 ASSERT_OUTSIDE_BEGIN_END(ctx);
1282
1283 obj = get_texobj(ctx, target, GL_TRUE);
1284 if (!obj)
1285 return;
1286
1287 _mesa_lock_texture(ctx, obj);
1288 switch (pname) {
1289 case GL_TEXTURE_MAG_FILTER:
1290 *params = (GLint) obj->Sampler.MagFilter;
1291 break;;
1292 case GL_TEXTURE_MIN_FILTER:
1293 *params = (GLint) obj->Sampler.MinFilter;
1294 break;;
1295 case GL_TEXTURE_WRAP_S:
1296 *params = (GLint) obj->Sampler.WrapS;
1297 break;;
1298 case GL_TEXTURE_WRAP_T:
1299 *params = (GLint) obj->Sampler.WrapT;
1300 break;;
1301 case GL_TEXTURE_WRAP_R:
1302 *params = (GLint) obj->Sampler.WrapR;
1303 break;;
1304 case GL_TEXTURE_BORDER_COLOR:
1305 {
1306 GLfloat b[4];
1307 b[0] = CLAMP(obj->Sampler.BorderColor.f[0], 0.0F, 1.0F);
1308 b[1] = CLAMP(obj->Sampler.BorderColor.f[1], 0.0F, 1.0F);
1309 b[2] = CLAMP(obj->Sampler.BorderColor.f[2], 0.0F, 1.0F);
1310 b[3] = CLAMP(obj->Sampler.BorderColor.f[3], 0.0F, 1.0F);
1311 params[0] = FLOAT_TO_INT(b[0]);
1312 params[1] = FLOAT_TO_INT(b[1]);
1313 params[2] = FLOAT_TO_INT(b[2]);
1314 params[3] = FLOAT_TO_INT(b[3]);
1315 }
1316 break;;
1317 case GL_TEXTURE_RESIDENT:
1318 {
1319 GLboolean resident;
1320 if (ctx->Driver.IsTextureResident)
1321 resident = ctx->Driver.IsTextureResident(ctx, obj);
1322 else
1323 resident = GL_TRUE;
1324 *params = (GLint) resident;
1325 }
1326 break;;
1327 case GL_TEXTURE_PRIORITY:
1328 *params = FLOAT_TO_INT(obj->Priority);
1329 break;;
1330 case GL_TEXTURE_MIN_LOD:
1331 *params = (GLint) obj->Sampler.MinLod;
1332 break;;
1333 case GL_TEXTURE_MAX_LOD:
1334 *params = (GLint) obj->Sampler.MaxLod;
1335 break;;
1336 case GL_TEXTURE_BASE_LEVEL:
1337 *params = obj->BaseLevel;
1338 break;;
1339 case GL_TEXTURE_MAX_LEVEL:
1340 *params = obj->MaxLevel;
1341 break;;
1342 case GL_TEXTURE_MAX_ANISOTROPY_EXT:
1343 if (ctx->Extensions.EXT_texture_filter_anisotropic) {
1344 *params = (GLint) obj->Sampler.MaxAnisotropy;
1345 }
1346 else {
1347 error = GL_TRUE;
1348 }
1349 break;
1350 case GL_TEXTURE_COMPARE_FAIL_VALUE_ARB:
1351 if (ctx->Extensions.ARB_shadow_ambient) {
1352 *params = (GLint) FLOAT_TO_INT(obj->Sampler.CompareFailValue);
1353 }
1354 else {
1355 error = GL_TRUE;
1356 }
1357 break;
1358 case GL_GENERATE_MIPMAP_SGIS:
1359 *params = (GLint) obj->GenerateMipmap;
1360 break;
1361 case GL_TEXTURE_COMPARE_MODE_ARB:
1362 if (ctx->Extensions.ARB_shadow) {
1363 *params = (GLint) obj->Sampler.CompareMode;
1364 }
1365 else {
1366 error = GL_TRUE;
1367 }
1368 break;
1369 case GL_TEXTURE_COMPARE_FUNC_ARB:
1370 if (ctx->Extensions.ARB_shadow) {
1371 *params = (GLint) obj->Sampler.CompareFunc;
1372 }
1373 else {
1374 error = GL_TRUE;
1375 }
1376 break;
1377 case GL_DEPTH_TEXTURE_MODE_ARB:
1378 if (ctx->Extensions.ARB_depth_texture) {
1379 *params = (GLint) obj->Sampler.DepthMode;
1380 }
1381 else {
1382 error = GL_TRUE;
1383 }
1384 break;
1385 case GL_TEXTURE_LOD_BIAS:
1386 if (ctx->Extensions.EXT_texture_lod_bias) {
1387 *params = (GLint) obj->Sampler.LodBias;
1388 }
1389 else {
1390 error = GL_TRUE;
1391 }
1392 break;
1393 #if FEATURE_OES_draw_texture
1394 case GL_TEXTURE_CROP_RECT_OES:
1395 params[0] = obj->CropRect[0];
1396 params[1] = obj->CropRect[1];
1397 params[2] = obj->CropRect[2];
1398 params[3] = obj->CropRect[3];
1399 break;
1400 #endif
1401 case GL_TEXTURE_SWIZZLE_R_EXT:
1402 case GL_TEXTURE_SWIZZLE_G_EXT:
1403 case GL_TEXTURE_SWIZZLE_B_EXT:
1404 case GL_TEXTURE_SWIZZLE_A_EXT:
1405 if (ctx->Extensions.EXT_texture_swizzle) {
1406 GLuint comp = pname - GL_TEXTURE_SWIZZLE_R_EXT;
1407 *params = obj->Swizzle[comp];
1408 }
1409 else {
1410 error = GL_TRUE;
1411 }
1412 break;
1413
1414 case GL_TEXTURE_SWIZZLE_RGBA_EXT:
1415 if (ctx->Extensions.EXT_texture_swizzle) {
1416 COPY_4V(params, obj->Swizzle);
1417 }
1418 else {
1419 error = GL_TRUE;
1420 }
1421 break;
1422
1423 case GL_TEXTURE_CUBE_MAP_SEAMLESS:
1424 if (ctx->Extensions.AMD_seamless_cubemap_per_texture) {
1425 *params = (GLint) obj->Sampler.CubeMapSeamless;
1426 }
1427 else {
1428 error = GL_TRUE;
1429 }
1430
1431 default:
1432 ; /* silence warnings */
1433 }
1434
1435 if (error)
1436 _mesa_error(ctx, GL_INVALID_ENUM, "glGetTexParameteriv(pname=0x%x)",
1437 pname);
1438
1439 _mesa_unlock_texture(ctx, obj);
1440 }
1441
1442
1443 /** New in GL 3.0 */
1444 void GLAPIENTRY
1445 _mesa_GetTexParameterIiv(GLenum target, GLenum pname, GLint *params)
1446 {
1447 struct gl_texture_object *texObj;
1448 GET_CURRENT_CONTEXT(ctx);
1449 ASSERT_OUTSIDE_BEGIN_END(ctx);
1450
1451 texObj = get_texobj(ctx, target, GL_TRUE);
1452
1453 switch (pname) {
1454 case GL_TEXTURE_BORDER_COLOR:
1455 COPY_4V(params, texObj->Sampler.BorderColor.i);
1456 break;
1457 default:
1458 _mesa_GetTexParameteriv(target, pname, params);
1459 }
1460 }
1461
1462
1463 /** New in GL 3.0 */
1464 void GLAPIENTRY
1465 _mesa_GetTexParameterIuiv(GLenum target, GLenum pname, GLuint *params)
1466 {
1467 struct gl_texture_object *texObj;
1468 GET_CURRENT_CONTEXT(ctx);
1469 ASSERT_OUTSIDE_BEGIN_END(ctx);
1470
1471 texObj = get_texobj(ctx, target, GL_TRUE);
1472
1473 switch (pname) {
1474 case GL_TEXTURE_BORDER_COLOR:
1475 COPY_4V(params, texObj->Sampler.BorderColor.i);
1476 break;
1477 default:
1478 {
1479 GLint ip[4];
1480 _mesa_GetTexParameteriv(target, pname, ip);
1481 params[0] = ip[0];
1482 if (pname == GL_TEXTURE_SWIZZLE_RGBA_EXT ||
1483 pname == GL_TEXTURE_CROP_RECT_OES) {
1484 params[1] = ip[1];
1485 params[2] = ip[2];
1486 params[3] = ip[3];
1487 }
1488 }
1489 }
1490 }