mesa: add OES_texture_buffer and EXT_texture_buffer support
[mesa.git] / src / mesa / main / texparam.c
1 /*
2 * Mesa 3-D graphics library
3 *
4 * Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
5 * Copyright (C) 2009 VMware, Inc. 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 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
21 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
22 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23 * OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26 /**
27 * \file texparam.c
28 *
29 * glTexParameter-related functions
30 */
31
32 #include <stdbool.h>
33 #include "main/glheader.h"
34 #include "main/blend.h"
35 #include "main/context.h"
36 #include "main/enums.h"
37 #include "main/formats.h"
38 #include "main/glformats.h"
39 #include "main/macros.h"
40 #include "main/mtypes.h"
41 #include "main/state.h"
42 #include "main/texcompress.h"
43 #include "main/texobj.h"
44 #include "main/texparam.h"
45 #include "main/teximage.h"
46 #include "main/texstate.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 const bool is_desktop_gl = _mesa_is_desktop_gl(ctx);
59 bool supported;
60
61 switch (wrap) {
62 case GL_CLAMP:
63 /* GL_CLAMP was removed in the core profile, and it has never existed in
64 * OpenGL ES.
65 */
66 supported = (ctx->API == API_OPENGL_COMPAT)
67 && (target != GL_TEXTURE_EXTERNAL_OES);
68 break;
69
70 case GL_CLAMP_TO_EDGE:
71 supported = true;
72 break;
73
74 case GL_CLAMP_TO_BORDER:
75 supported = ctx->API != API_OPENGLES && e->ARB_texture_border_clamp
76 && (target != GL_TEXTURE_EXTERNAL_OES);
77 break;
78
79 case GL_REPEAT:
80 case GL_MIRRORED_REPEAT:
81 supported = (target != GL_TEXTURE_RECTANGLE_NV)
82 && (target != GL_TEXTURE_EXTERNAL_OES);
83 break;
84
85 case GL_MIRROR_CLAMP_EXT:
86 supported = is_desktop_gl
87 && (e->ATI_texture_mirror_once || e->EXT_texture_mirror_clamp)
88 && (target != GL_TEXTURE_RECTANGLE_NV)
89 && (target != GL_TEXTURE_EXTERNAL_OES);
90 break;
91
92 case GL_MIRROR_CLAMP_TO_EDGE_EXT:
93 supported = is_desktop_gl
94 && (e->ATI_texture_mirror_once || e->EXT_texture_mirror_clamp || e->ARB_texture_mirror_clamp_to_edge)
95 && (target != GL_TEXTURE_RECTANGLE_NV)
96 && (target != GL_TEXTURE_EXTERNAL_OES);
97 break;
98
99 case GL_MIRROR_CLAMP_TO_BORDER_EXT:
100 supported = is_desktop_gl && e->EXT_texture_mirror_clamp
101 && (target != GL_TEXTURE_RECTANGLE_NV)
102 && (target != GL_TEXTURE_EXTERNAL_OES);
103 break;
104
105 default:
106 supported = false;
107 break;
108 }
109
110 if (!supported)
111 _mesa_error( ctx, GL_INVALID_ENUM, "glTexParameter(param=0x%x)", wrap );
112
113 return supported;
114 }
115
116
117 /**
118 * Get current texture object for given target.
119 * Return NULL if any error (and record the error).
120 * Note that this is different from _mesa_get_current_tex_object() in that
121 * proxy targets are not accepted.
122 * Only the glGetTexLevelParameter() functions accept proxy targets.
123 */
124 static struct gl_texture_object *
125 get_texobj_by_target(struct gl_context *ctx, GLenum target, GLboolean get)
126 {
127 struct gl_texture_unit *texUnit;
128 int targetIndex;
129
130 if (ctx->Texture.CurrentUnit >= ctx->Const.MaxCombinedTextureImageUnits) {
131 _mesa_error(ctx, GL_INVALID_OPERATION,
132 "gl%sTexParameter(current unit)", get ? "Get" : "");
133 return NULL;
134 }
135
136 texUnit = _mesa_get_current_tex_unit(ctx);
137
138 targetIndex = _mesa_tex_target_to_index(ctx, target);
139 if (targetIndex < 0 || targetIndex == TEXTURE_BUFFER_INDEX) {
140 _mesa_error(ctx, GL_INVALID_ENUM,
141 "gl%sTexParameter(target)", get ? "Get" : "");
142 return NULL;
143 }
144 assert(targetIndex < NUM_TEXTURE_TARGETS);
145
146 return texUnit->CurrentTex[targetIndex];
147 }
148
149 /**
150 * Get current texture object for given name.
151 * Return NULL if any error (and record the error).
152 * Note that proxy targets are not accepted.
153 * Only the glGetTexLevelParameter() functions accept proxy targets.
154 */
155 static struct gl_texture_object *
156 get_texobj_by_name(struct gl_context *ctx, GLuint texture, GLboolean get)
157 {
158 struct gl_texture_object *texObj;
159
160 texObj = _mesa_lookup_texture(ctx, texture);
161 if (!texObj) {
162 /*
163 * User passed a non-generated name.
164 * Throw the error in the caller.
165 */
166 return NULL;
167 }
168
169 switch (texObj->Target) {
170 case GL_TEXTURE_1D:
171 case GL_TEXTURE_1D_ARRAY:
172 case GL_TEXTURE_2D:
173 case GL_TEXTURE_2D_ARRAY:
174 case GL_TEXTURE_2D_MULTISAMPLE:
175 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
176 case GL_TEXTURE_3D:
177 case GL_TEXTURE_CUBE_MAP:
178 case GL_TEXTURE_CUBE_MAP_ARRAY:
179 case GL_TEXTURE_RECTANGLE:
180 return texObj;
181 default:
182 _mesa_error(ctx, GL_INVALID_ENUM,
183 "gl%sTextureParameter(target)", get ? "Get" : "");
184 return NULL;
185 }
186
187 }
188
189
190 /**
191 * Convert GL_RED/GREEN/BLUE/ALPHA/ZERO/ONE to SWIZZLE_X/Y/Z/W/ZERO/ONE.
192 * \return -1 if error.
193 */
194 static GLint
195 comp_to_swizzle(GLenum comp)
196 {
197 switch (comp) {
198 case GL_RED:
199 return SWIZZLE_X;
200 case GL_GREEN:
201 return SWIZZLE_Y;
202 case GL_BLUE:
203 return SWIZZLE_Z;
204 case GL_ALPHA:
205 return SWIZZLE_W;
206 case GL_ZERO:
207 return SWIZZLE_ZERO;
208 case GL_ONE:
209 return SWIZZLE_ONE;
210 default:
211 return -1;
212 }
213 }
214
215
216 static void
217 set_swizzle_component(GLuint *swizzle, GLuint comp, GLuint swz)
218 {
219 assert(comp < 4);
220 assert(swz <= SWIZZLE_NIL);
221 {
222 GLuint mask = 0x7 << (3 * comp);
223 GLuint s = (*swizzle & ~mask) | (swz << (3 * comp));
224 *swizzle = s;
225 }
226 }
227
228
229 /**
230 * This is called just prior to changing any texture object state which
231 * will not affect texture completeness.
232 */
233 static inline void
234 flush(struct gl_context *ctx)
235 {
236 FLUSH_VERTICES(ctx, _NEW_TEXTURE);
237 }
238
239
240 /**
241 * This is called just prior to changing any texture object state which
242 * could affect texture completeness (texture base level, max level).
243 * Any pending rendering will be flushed out, we'll set the _NEW_TEXTURE
244 * state flag and then mark the texture object as 'incomplete' so that any
245 * per-texture derived state gets recomputed.
246 */
247 static inline void
248 incomplete(struct gl_context *ctx, struct gl_texture_object *texObj)
249 {
250 FLUSH_VERTICES(ctx, _NEW_TEXTURE);
251 _mesa_dirty_texobj(ctx, texObj);
252 }
253
254
255 GLboolean
256 _mesa_target_allows_setting_sampler_parameters(GLenum target)
257 {
258 switch (target) {
259 case GL_TEXTURE_2D_MULTISAMPLE:
260 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
261 return GL_FALSE;
262
263 default:
264 return GL_TRUE;
265 }
266 }
267
268
269 /**
270 * Set an integer-valued texture parameter
271 * \return GL_TRUE if legal AND the value changed, GL_FALSE otherwise
272 */
273 static GLboolean
274 set_tex_parameteri(struct gl_context *ctx,
275 struct gl_texture_object *texObj,
276 GLenum pname, const GLint *params, bool dsa)
277 {
278 const char *suffix = dsa ? "ture" : "";
279
280 switch (pname) {
281 case GL_TEXTURE_MIN_FILTER:
282 if (!_mesa_target_allows_setting_sampler_parameters(texObj->Target))
283 goto invalid_enum;
284
285 if (texObj->Sampler.MinFilter == params[0])
286 return GL_FALSE;
287 switch (params[0]) {
288 case GL_NEAREST:
289 case GL_LINEAR:
290 flush(ctx);
291 texObj->Sampler.MinFilter = params[0];
292 return GL_TRUE;
293 case GL_NEAREST_MIPMAP_NEAREST:
294 case GL_LINEAR_MIPMAP_NEAREST:
295 case GL_NEAREST_MIPMAP_LINEAR:
296 case GL_LINEAR_MIPMAP_LINEAR:
297 if (texObj->Target != GL_TEXTURE_RECTANGLE_NV &&
298 texObj->Target != GL_TEXTURE_EXTERNAL_OES) {
299 flush(ctx);
300 texObj->Sampler.MinFilter = params[0];
301 return GL_TRUE;
302 }
303 /* fall-through */
304 default:
305 goto invalid_param;
306 }
307 return GL_FALSE;
308
309 case GL_TEXTURE_MAG_FILTER:
310 if (!_mesa_target_allows_setting_sampler_parameters(texObj->Target))
311 goto invalid_enum;
312
313 if (texObj->Sampler.MagFilter == params[0])
314 return GL_FALSE;
315 switch (params[0]) {
316 case GL_NEAREST:
317 case GL_LINEAR:
318 flush(ctx); /* does not effect completeness */
319 texObj->Sampler.MagFilter = params[0];
320 return GL_TRUE;
321 default:
322 goto invalid_param;
323 }
324 return GL_FALSE;
325
326 case GL_TEXTURE_WRAP_S:
327 if (!_mesa_target_allows_setting_sampler_parameters(texObj->Target))
328 goto invalid_enum;
329
330 if (texObj->Sampler.WrapS == params[0])
331 return GL_FALSE;
332 if (validate_texture_wrap_mode(ctx, texObj->Target, params[0])) {
333 flush(ctx);
334 texObj->Sampler.WrapS = params[0];
335 return GL_TRUE;
336 }
337 return GL_FALSE;
338
339 case GL_TEXTURE_WRAP_T:
340 if (!_mesa_target_allows_setting_sampler_parameters(texObj->Target))
341 goto invalid_enum;
342
343 if (texObj->Sampler.WrapT == params[0])
344 return GL_FALSE;
345 if (validate_texture_wrap_mode(ctx, texObj->Target, params[0])) {
346 flush(ctx);
347 texObj->Sampler.WrapT = params[0];
348 return GL_TRUE;
349 }
350 return GL_FALSE;
351
352 case GL_TEXTURE_WRAP_R:
353 if (!_mesa_target_allows_setting_sampler_parameters(texObj->Target))
354 goto invalid_enum;
355
356 if (texObj->Sampler.WrapR == params[0])
357 return GL_FALSE;
358 if (validate_texture_wrap_mode(ctx, texObj->Target, params[0])) {
359 flush(ctx);
360 texObj->Sampler.WrapR = params[0];
361 return GL_TRUE;
362 }
363 return GL_FALSE;
364
365 case GL_TEXTURE_BASE_LEVEL:
366 if (!_mesa_is_desktop_gl(ctx) && !_mesa_is_gles3(ctx))
367 goto invalid_pname;
368
369 if (texObj->BaseLevel == params[0])
370 return GL_FALSE;
371
372 if ((texObj->Target == GL_TEXTURE_2D_MULTISAMPLE ||
373 texObj->Target == GL_TEXTURE_2D_MULTISAMPLE_ARRAY) && params[0] != 0)
374 goto invalid_operation;
375
376 if (params[0] < 0) {
377 _mesa_error(ctx, GL_INVALID_VALUE,
378 "glTex%sParameter(param=%d)", suffix, params[0]);
379 return GL_FALSE;
380 }
381 if (texObj->Target == GL_TEXTURE_RECTANGLE_ARB && params[0] != 0) {
382 _mesa_error(ctx, GL_INVALID_OPERATION,
383 "glTex%sParameter(target=%s, param=%d)", suffix,
384 _mesa_enum_to_string(texObj->Target), params[0]);
385 return GL_FALSE;
386 }
387 incomplete(ctx, texObj);
388
389 /** See note about ARB_texture_storage below */
390 if (texObj->Immutable)
391 texObj->BaseLevel = MIN2(texObj->ImmutableLevels - 1, params[0]);
392 else
393 texObj->BaseLevel = params[0];
394
395 return GL_TRUE;
396
397 case GL_TEXTURE_MAX_LEVEL:
398 if (texObj->MaxLevel == params[0])
399 return GL_FALSE;
400
401 if (params[0] < 0 ||
402 (texObj->Target == GL_TEXTURE_RECTANGLE_ARB && params[0] > 0)) {
403 _mesa_error(ctx, GL_INVALID_VALUE,
404 "glTex%sParameter(param=%d)", suffix,
405 params[0]);
406 return GL_FALSE;
407 }
408 incomplete(ctx, texObj);
409
410 /** From ARB_texture_storage:
411 * However, if TEXTURE_IMMUTABLE_FORMAT is TRUE, then level_base is
412 * clamped to the range [0, <levels> - 1] and level_max is then clamped to
413 * the range [level_base, <levels> - 1], where <levels> is the parameter
414 * passed the call to TexStorage* for the texture object.
415 */
416 if (texObj->Immutable)
417 texObj->MaxLevel = CLAMP(params[0], texObj->BaseLevel,
418 texObj->ImmutableLevels - 1);
419 else
420 texObj->MaxLevel = params[0];
421
422 return GL_TRUE;
423
424 case GL_GENERATE_MIPMAP_SGIS:
425 if (ctx->API != API_OPENGL_COMPAT && ctx->API != API_OPENGLES)
426 goto invalid_pname;
427
428 if (params[0] && texObj->Target == GL_TEXTURE_EXTERNAL_OES)
429 goto invalid_param;
430 if (texObj->GenerateMipmap != params[0]) {
431 /* no flush() */
432 texObj->GenerateMipmap = params[0] ? GL_TRUE : GL_FALSE;
433 return GL_TRUE;
434 }
435 return GL_FALSE;
436
437 case GL_TEXTURE_COMPARE_MODE_ARB:
438 if ((_mesa_is_desktop_gl(ctx) && ctx->Extensions.ARB_shadow)
439 || _mesa_is_gles3(ctx)) {
440
441 if (!_mesa_target_allows_setting_sampler_parameters(texObj->Target))
442 goto invalid_enum;
443
444 if (texObj->Sampler.CompareMode == params[0])
445 return GL_FALSE;
446 if (params[0] == GL_NONE ||
447 params[0] == GL_COMPARE_R_TO_TEXTURE_ARB) {
448 flush(ctx);
449 texObj->Sampler.CompareMode = params[0];
450 return GL_TRUE;
451 }
452 goto invalid_param;
453 }
454 goto invalid_pname;
455
456 case GL_TEXTURE_COMPARE_FUNC_ARB:
457 if ((_mesa_is_desktop_gl(ctx) && ctx->Extensions.ARB_shadow)
458 || _mesa_is_gles3(ctx)) {
459
460 if (!_mesa_target_allows_setting_sampler_parameters(texObj->Target))
461 goto invalid_enum;
462
463 if (texObj->Sampler.CompareFunc == params[0])
464 return GL_FALSE;
465 switch (params[0]) {
466 case GL_LEQUAL:
467 case GL_GEQUAL:
468 case GL_EQUAL:
469 case GL_NOTEQUAL:
470 case GL_LESS:
471 case GL_GREATER:
472 case GL_ALWAYS:
473 case GL_NEVER:
474 flush(ctx);
475 texObj->Sampler.CompareFunc = params[0];
476 return GL_TRUE;
477 default:
478 goto invalid_param;
479 }
480 }
481 goto invalid_pname;
482
483 case GL_DEPTH_TEXTURE_MODE_ARB:
484 /* GL_DEPTH_TEXTURE_MODE_ARB is removed in core-profile and it has never
485 * existed in OpenGL ES.
486 */
487 if (ctx->API == API_OPENGL_COMPAT && ctx->Extensions.ARB_depth_texture) {
488 if (texObj->DepthMode == params[0])
489 return GL_FALSE;
490 if (params[0] == GL_LUMINANCE ||
491 params[0] == GL_INTENSITY ||
492 params[0] == GL_ALPHA ||
493 (ctx->Extensions.ARB_texture_rg && params[0] == GL_RED)) {
494 flush(ctx);
495 texObj->DepthMode = params[0];
496 return GL_TRUE;
497 }
498 goto invalid_param;
499 }
500 goto invalid_pname;
501
502 case GL_DEPTH_STENCIL_TEXTURE_MODE:
503 if (_mesa_has_ARB_stencil_texturing(ctx) || _mesa_is_gles31(ctx)) {
504 bool stencil = params[0] == GL_STENCIL_INDEX;
505 if (!stencil && params[0] != GL_DEPTH_COMPONENT)
506 goto invalid_param;
507
508 if (texObj->StencilSampling == stencil)
509 return GL_FALSE;
510
511 texObj->StencilSampling = stencil;
512 return GL_TRUE;
513 }
514 goto invalid_pname;
515
516 case GL_TEXTURE_CROP_RECT_OES:
517 if (ctx->API != API_OPENGLES || !ctx->Extensions.OES_draw_texture)
518 goto invalid_pname;
519
520 texObj->CropRect[0] = params[0];
521 texObj->CropRect[1] = params[1];
522 texObj->CropRect[2] = params[2];
523 texObj->CropRect[3] = params[3];
524 return GL_TRUE;
525
526 case GL_TEXTURE_SWIZZLE_R_EXT:
527 case GL_TEXTURE_SWIZZLE_G_EXT:
528 case GL_TEXTURE_SWIZZLE_B_EXT:
529 case GL_TEXTURE_SWIZZLE_A_EXT:
530 if ((_mesa_is_desktop_gl(ctx) && ctx->Extensions.EXT_texture_swizzle)
531 || _mesa_is_gles3(ctx)) {
532 const GLuint comp = pname - GL_TEXTURE_SWIZZLE_R_EXT;
533 const GLint swz = comp_to_swizzle(params[0]);
534 if (swz < 0) {
535 _mesa_error(ctx, GL_INVALID_ENUM,
536 "glTex%sParameter(swizzle 0x%x)", suffix, params[0]);
537 return GL_FALSE;
538 }
539 assert(comp < 4);
540
541 flush(ctx);
542 texObj->Swizzle[comp] = params[0];
543 set_swizzle_component(&texObj->_Swizzle, comp, swz);
544 return GL_TRUE;
545 }
546 goto invalid_pname;
547
548 case GL_TEXTURE_SWIZZLE_RGBA_EXT:
549 if ((_mesa_is_desktop_gl(ctx) && ctx->Extensions.EXT_texture_swizzle)
550 || _mesa_is_gles3(ctx)) {
551 GLuint comp;
552 flush(ctx);
553 for (comp = 0; comp < 4; comp++) {
554 const GLint swz = comp_to_swizzle(params[comp]);
555 if (swz >= 0) {
556 texObj->Swizzle[comp] = params[comp];
557 set_swizzle_component(&texObj->_Swizzle, comp, swz);
558 }
559 else {
560 _mesa_error(ctx, GL_INVALID_ENUM,
561 "glTex%sParameter(swizzle 0x%x)",
562 suffix, params[comp]);
563 return GL_FALSE;
564 }
565 }
566 return GL_TRUE;
567 }
568 goto invalid_pname;
569
570 case GL_TEXTURE_SRGB_DECODE_EXT:
571 if (ctx->Extensions.EXT_texture_sRGB_decode) {
572 GLenum decode = params[0];
573
574 if (!_mesa_target_allows_setting_sampler_parameters(texObj->Target))
575 goto invalid_enum;
576
577 if (decode == GL_DECODE_EXT || decode == GL_SKIP_DECODE_EXT) {
578 if (texObj->Sampler.sRGBDecode != decode) {
579 flush(ctx);
580 texObj->Sampler.sRGBDecode = decode;
581 }
582 return GL_TRUE;
583 }
584 }
585 goto invalid_pname;
586
587 case GL_TEXTURE_CUBE_MAP_SEAMLESS:
588 if (_mesa_is_desktop_gl(ctx)
589 && ctx->Extensions.AMD_seamless_cubemap_per_texture) {
590 GLenum param = params[0];
591
592 if (!_mesa_target_allows_setting_sampler_parameters(texObj->Target))
593 goto invalid_enum;
594
595 if (param != GL_TRUE && param != GL_FALSE) {
596 goto invalid_param;
597 }
598 if (param != texObj->Sampler.CubeMapSeamless) {
599 flush(ctx);
600 texObj->Sampler.CubeMapSeamless = param;
601 }
602 return GL_TRUE;
603 }
604 goto invalid_pname;
605
606 default:
607 goto invalid_pname;
608 }
609
610 invalid_pname:
611 _mesa_error(ctx, GL_INVALID_ENUM, "glTex%sParameter(pname=%s)",
612 suffix, _mesa_enum_to_string(pname));
613 return GL_FALSE;
614
615 invalid_param:
616 _mesa_error(ctx, GL_INVALID_ENUM, "glTex%sParameter(param=%s)",
617 suffix, _mesa_enum_to_string(params[0]));
618 return GL_FALSE;
619
620 invalid_operation:
621 _mesa_error(ctx, GL_INVALID_OPERATION, "glTex%sParameter(pname=%s)",
622 suffix, _mesa_enum_to_string(pname));
623 return GL_FALSE;
624
625 invalid_enum:
626 _mesa_error(ctx, GL_INVALID_ENUM, "glTex%sParameter(pname=%s)",
627 suffix, _mesa_enum_to_string(pname));
628 return GL_FALSE;
629 }
630
631
632 /**
633 * Set a float-valued texture parameter
634 * \return GL_TRUE if legal AND the value changed, GL_FALSE otherwise
635 */
636 static GLboolean
637 set_tex_parameterf(struct gl_context *ctx,
638 struct gl_texture_object *texObj,
639 GLenum pname, const GLfloat *params, bool dsa)
640 {
641 const char *suffix = dsa ? "ture" : "";
642
643 switch (pname) {
644 case GL_TEXTURE_MIN_LOD:
645 if (!_mesa_is_desktop_gl(ctx) && !_mesa_is_gles3(ctx))
646 goto invalid_pname;
647
648 if (!_mesa_target_allows_setting_sampler_parameters(texObj->Target))
649 goto invalid_enum;
650
651 if (texObj->Sampler.MinLod == params[0])
652 return GL_FALSE;
653 flush(ctx);
654 texObj->Sampler.MinLod = params[0];
655 return GL_TRUE;
656
657 case GL_TEXTURE_MAX_LOD:
658 if (!_mesa_is_desktop_gl(ctx) && !_mesa_is_gles3(ctx))
659 goto invalid_pname;
660
661 if (!_mesa_target_allows_setting_sampler_parameters(texObj->Target))
662 goto invalid_enum;
663
664 if (texObj->Sampler.MaxLod == params[0])
665 return GL_FALSE;
666 flush(ctx);
667 texObj->Sampler.MaxLod = params[0];
668 return GL_TRUE;
669
670 case GL_TEXTURE_PRIORITY:
671 if (ctx->API != API_OPENGL_COMPAT)
672 goto invalid_pname;
673
674 flush(ctx);
675 texObj->Priority = CLAMP(params[0], 0.0F, 1.0F);
676 return GL_TRUE;
677
678 case GL_TEXTURE_MAX_ANISOTROPY_EXT:
679 if (ctx->Extensions.EXT_texture_filter_anisotropic) {
680 if (!_mesa_target_allows_setting_sampler_parameters(texObj->Target))
681 goto invalid_enum;
682
683 if (texObj->Sampler.MaxAnisotropy == params[0])
684 return GL_FALSE;
685 if (params[0] < 1.0F) {
686 _mesa_error(ctx, GL_INVALID_VALUE, "glTex%sParameter(param)",
687 suffix);
688 return GL_FALSE;
689 }
690 flush(ctx);
691 /* clamp to max, that's what NVIDIA does */
692 texObj->Sampler.MaxAnisotropy = MIN2(params[0],
693 ctx->Const.MaxTextureMaxAnisotropy);
694 return GL_TRUE;
695 }
696 else {
697 static GLuint count = 0;
698 if (count++ < 10)
699 goto invalid_pname;
700 }
701 return GL_FALSE;
702
703 case GL_TEXTURE_LOD_BIAS:
704 /* NOTE: this is really part of OpenGL 1.4, not EXT_texture_lod_bias. */
705 if (_mesa_is_gles(ctx))
706 goto invalid_pname;
707
708 if (!_mesa_target_allows_setting_sampler_parameters(texObj->Target))
709 goto invalid_enum;
710
711 if (texObj->Sampler.LodBias != params[0]) {
712 flush(ctx);
713 texObj->Sampler.LodBias = params[0];
714 return GL_TRUE;
715 }
716 break;
717
718 case GL_TEXTURE_BORDER_COLOR:
719 if (ctx->API == API_OPENGLES ||
720 !ctx->Extensions.ARB_texture_border_clamp)
721 goto invalid_pname;
722
723 if (!_mesa_target_allows_setting_sampler_parameters(texObj->Target))
724 goto invalid_enum;
725
726 flush(ctx);
727 /* ARB_texture_float disables clamping */
728 if (ctx->Extensions.ARB_texture_float) {
729 texObj->Sampler.BorderColor.f[RCOMP] = params[0];
730 texObj->Sampler.BorderColor.f[GCOMP] = params[1];
731 texObj->Sampler.BorderColor.f[BCOMP] = params[2];
732 texObj->Sampler.BorderColor.f[ACOMP] = params[3];
733 } else {
734 texObj->Sampler.BorderColor.f[RCOMP] = CLAMP(params[0], 0.0F, 1.0F);
735 texObj->Sampler.BorderColor.f[GCOMP] = CLAMP(params[1], 0.0F, 1.0F);
736 texObj->Sampler.BorderColor.f[BCOMP] = CLAMP(params[2], 0.0F, 1.0F);
737 texObj->Sampler.BorderColor.f[ACOMP] = CLAMP(params[3], 0.0F, 1.0F);
738 }
739 return GL_TRUE;
740
741 default:
742 goto invalid_pname;
743 }
744 return GL_FALSE;
745
746 invalid_pname:
747 _mesa_error(ctx, GL_INVALID_ENUM, "glTex%sParameter(pname=%s)",
748 suffix, _mesa_enum_to_string(pname));
749 return GL_FALSE;
750
751 invalid_enum:
752 _mesa_error(ctx, GL_INVALID_ENUM, "glTex%sParameter(pname=%s)",
753 suffix, _mesa_enum_to_string(pname));
754 return GL_FALSE;
755 }
756
757
758 void
759 _mesa_texture_parameterf(struct gl_context *ctx,
760 struct gl_texture_object *texObj,
761 GLenum pname, GLfloat param, bool dsa)
762 {
763 GLboolean need_update;
764
765 switch (pname) {
766 case GL_TEXTURE_MIN_FILTER:
767 case GL_TEXTURE_MAG_FILTER:
768 case GL_TEXTURE_WRAP_S:
769 case GL_TEXTURE_WRAP_T:
770 case GL_TEXTURE_WRAP_R:
771 case GL_TEXTURE_BASE_LEVEL:
772 case GL_TEXTURE_MAX_LEVEL:
773 case GL_GENERATE_MIPMAP_SGIS:
774 case GL_TEXTURE_COMPARE_MODE_ARB:
775 case GL_TEXTURE_COMPARE_FUNC_ARB:
776 case GL_DEPTH_TEXTURE_MODE_ARB:
777 case GL_DEPTH_STENCIL_TEXTURE_MODE:
778 case GL_TEXTURE_SRGB_DECODE_EXT:
779 case GL_TEXTURE_CUBE_MAP_SEAMLESS:
780 case GL_TEXTURE_SWIZZLE_R_EXT:
781 case GL_TEXTURE_SWIZZLE_G_EXT:
782 case GL_TEXTURE_SWIZZLE_B_EXT:
783 case GL_TEXTURE_SWIZZLE_A_EXT:
784 {
785 GLint p[4];
786 p[0] = (param > 0) ?
787 ((param > INT_MAX) ? INT_MAX : (GLint) (param + 0.5)) :
788 ((param < INT_MIN) ? INT_MIN : (GLint) (param - 0.5));
789
790 p[1] = p[2] = p[3] = 0;
791 need_update = set_tex_parameteri(ctx, texObj, pname, p, dsa);
792 }
793 break;
794 case GL_TEXTURE_BORDER_COLOR:
795 case GL_TEXTURE_SWIZZLE_RGBA:
796 _mesa_error(ctx, GL_INVALID_ENUM, "glTex%sParameterf(non-scalar pname)",
797 dsa ? "ture" : "");
798 return;
799 default:
800 {
801 /* this will generate an error if pname is illegal */
802 GLfloat p[4];
803 p[0] = param;
804 p[1] = p[2] = p[3] = 0.0F;
805 need_update = set_tex_parameterf(ctx, texObj, pname, p, dsa);
806 }
807 }
808
809 if (ctx->Driver.TexParameter && need_update) {
810 ctx->Driver.TexParameter(ctx, texObj, pname, &param);
811 }
812 }
813
814
815 void
816 _mesa_texture_parameterfv(struct gl_context *ctx,
817 struct gl_texture_object *texObj,
818 GLenum pname, const GLfloat *params, bool dsa)
819 {
820 GLboolean need_update;
821 switch (pname) {
822 case GL_TEXTURE_MIN_FILTER:
823 case GL_TEXTURE_MAG_FILTER:
824 case GL_TEXTURE_WRAP_S:
825 case GL_TEXTURE_WRAP_T:
826 case GL_TEXTURE_WRAP_R:
827 case GL_TEXTURE_BASE_LEVEL:
828 case GL_TEXTURE_MAX_LEVEL:
829 case GL_GENERATE_MIPMAP_SGIS:
830 case GL_TEXTURE_COMPARE_MODE_ARB:
831 case GL_TEXTURE_COMPARE_FUNC_ARB:
832 case GL_DEPTH_TEXTURE_MODE_ARB:
833 case GL_DEPTH_STENCIL_TEXTURE_MODE:
834 case GL_TEXTURE_SRGB_DECODE_EXT:
835 case GL_TEXTURE_CUBE_MAP_SEAMLESS:
836 {
837 /* convert float param to int */
838 GLint p[4];
839 p[0] = (GLint) params[0];
840 p[1] = p[2] = p[3] = 0;
841 need_update = set_tex_parameteri(ctx, texObj, pname, p, dsa);
842 }
843 break;
844 case GL_TEXTURE_CROP_RECT_OES:
845 {
846 /* convert float params to int */
847 GLint iparams[4];
848 iparams[0] = (GLint) params[0];
849 iparams[1] = (GLint) params[1];
850 iparams[2] = (GLint) params[2];
851 iparams[3] = (GLint) params[3];
852 need_update = set_tex_parameteri(ctx, texObj, pname, iparams, dsa);
853 }
854 break;
855 case GL_TEXTURE_SWIZZLE_R_EXT:
856 case GL_TEXTURE_SWIZZLE_G_EXT:
857 case GL_TEXTURE_SWIZZLE_B_EXT:
858 case GL_TEXTURE_SWIZZLE_A_EXT:
859 case GL_TEXTURE_SWIZZLE_RGBA_EXT:
860 {
861 GLint p[4] = {0, 0, 0, 0};
862 p[0] = (GLint) params[0];
863 if (pname == GL_TEXTURE_SWIZZLE_RGBA_EXT) {
864 p[1] = (GLint) params[1];
865 p[2] = (GLint) params[2];
866 p[3] = (GLint) params[3];
867 }
868 need_update = set_tex_parameteri(ctx, texObj, pname, p, dsa);
869 }
870 break;
871 default:
872 /* this will generate an error if pname is illegal */
873 need_update = set_tex_parameterf(ctx, texObj, pname, params, dsa);
874 }
875
876 if (ctx->Driver.TexParameter && need_update) {
877 ctx->Driver.TexParameter(ctx, texObj, pname, params);
878 }
879 }
880
881
882 void
883 _mesa_texture_parameteri(struct gl_context *ctx,
884 struct gl_texture_object *texObj,
885 GLenum pname, GLint param, bool dsa)
886 {
887 GLboolean need_update;
888 switch (pname) {
889 case GL_TEXTURE_MIN_LOD:
890 case GL_TEXTURE_MAX_LOD:
891 case GL_TEXTURE_PRIORITY:
892 case GL_TEXTURE_MAX_ANISOTROPY_EXT:
893 case GL_TEXTURE_LOD_BIAS:
894 case GL_TEXTURE_COMPARE_FAIL_VALUE_ARB:
895 {
896 GLfloat fparam[4];
897 fparam[0] = (GLfloat) param;
898 fparam[1] = fparam[2] = fparam[3] = 0.0F;
899 /* convert int param to float */
900 need_update = set_tex_parameterf(ctx, texObj, pname, fparam, dsa);
901 }
902 break;
903 case GL_TEXTURE_BORDER_COLOR:
904 case GL_TEXTURE_SWIZZLE_RGBA:
905 {
906 _mesa_error(ctx, GL_INVALID_ENUM,
907 "glTex%sParameteri(non-scalar pname)",
908 dsa ? "ture" : "");
909 return;
910 }
911 default:
912 /* this will generate an error if pname is illegal */
913 {
914 GLint iparam[4];
915 iparam[0] = param;
916 iparam[1] = iparam[2] = iparam[3] = 0;
917 need_update = set_tex_parameteri(ctx, texObj, pname, iparam, dsa);
918 }
919 }
920
921 if (ctx->Driver.TexParameter && need_update) {
922 GLfloat fparam = (GLfloat) param;
923 ctx->Driver.TexParameter(ctx, texObj, pname, &fparam);
924 }
925 }
926
927
928 void
929 _mesa_texture_parameteriv(struct gl_context *ctx,
930 struct gl_texture_object *texObj,
931 GLenum pname, const GLint *params, bool dsa)
932 {
933 GLboolean need_update;
934
935 switch (pname) {
936 case GL_TEXTURE_BORDER_COLOR:
937 {
938 /* convert int params to float */
939 GLfloat fparams[4];
940 fparams[0] = INT_TO_FLOAT(params[0]);
941 fparams[1] = INT_TO_FLOAT(params[1]);
942 fparams[2] = INT_TO_FLOAT(params[2]);
943 fparams[3] = INT_TO_FLOAT(params[3]);
944 need_update = set_tex_parameterf(ctx, texObj, pname, fparams, dsa);
945 }
946 break;
947 case GL_TEXTURE_MIN_LOD:
948 case GL_TEXTURE_MAX_LOD:
949 case GL_TEXTURE_PRIORITY:
950 case GL_TEXTURE_MAX_ANISOTROPY_EXT:
951 case GL_TEXTURE_LOD_BIAS:
952 case GL_TEXTURE_COMPARE_FAIL_VALUE_ARB:
953 {
954 /* convert int param to float */
955 GLfloat fparams[4];
956 fparams[0] = (GLfloat) params[0];
957 fparams[1] = fparams[2] = fparams[3] = 0.0F;
958 need_update = set_tex_parameterf(ctx, texObj, pname, fparams, dsa);
959 }
960 break;
961 default:
962 /* this will generate an error if pname is illegal */
963 need_update = set_tex_parameteri(ctx, texObj, pname, params, dsa);
964 }
965
966 if (ctx->Driver.TexParameter && need_update) {
967 GLfloat fparams[4];
968 fparams[0] = INT_TO_FLOAT(params[0]);
969 if (pname == GL_TEXTURE_BORDER_COLOR ||
970 pname == GL_TEXTURE_CROP_RECT_OES) {
971 fparams[1] = INT_TO_FLOAT(params[1]);
972 fparams[2] = INT_TO_FLOAT(params[2]);
973 fparams[3] = INT_TO_FLOAT(params[3]);
974 }
975 ctx->Driver.TexParameter(ctx, texObj, pname, fparams);
976 }
977 }
978
979 void
980 _mesa_texture_parameterIiv(struct gl_context *ctx,
981 struct gl_texture_object *texObj,
982 GLenum pname, const GLint *params, bool dsa)
983 {
984 switch (pname) {
985 case GL_TEXTURE_BORDER_COLOR:
986 FLUSH_VERTICES(ctx, _NEW_TEXTURE);
987 /* set the integer-valued border color */
988 COPY_4V(texObj->Sampler.BorderColor.i, params);
989 break;
990 default:
991 _mesa_texture_parameteriv(ctx, texObj, pname, params, dsa);
992 break;
993 }
994 /* XXX no driver hook for TexParameterIiv() yet */
995 }
996
997 void
998 _mesa_texture_parameterIuiv(struct gl_context *ctx,
999 struct gl_texture_object *texObj,
1000 GLenum pname, const GLuint *params, bool dsa)
1001 {
1002 switch (pname) {
1003 case GL_TEXTURE_BORDER_COLOR:
1004 FLUSH_VERTICES(ctx, _NEW_TEXTURE);
1005 /* set the unsigned integer-valued border color */
1006 COPY_4V(texObj->Sampler.BorderColor.ui, params);
1007 break;
1008 default:
1009 _mesa_texture_parameteriv(ctx, texObj, pname, (const GLint *) params,
1010 dsa);
1011 break;
1012 }
1013 /* XXX no driver hook for TexParameterIuiv() yet */
1014 }
1015
1016 void GLAPIENTRY
1017 _mesa_TexParameterf(GLenum target, GLenum pname, GLfloat param)
1018 {
1019 struct gl_texture_object *texObj;
1020 GET_CURRENT_CONTEXT(ctx);
1021
1022 texObj = get_texobj_by_target(ctx, target, GL_FALSE);
1023 if (!texObj)
1024 return;
1025
1026 _mesa_texture_parameterf(ctx, texObj, pname, param, false);
1027 }
1028
1029 void GLAPIENTRY
1030 _mesa_TexParameterfv(GLenum target, GLenum pname, const GLfloat *params)
1031 {
1032 struct gl_texture_object *texObj;
1033 GET_CURRENT_CONTEXT(ctx);
1034
1035 texObj = get_texobj_by_target(ctx, target, GL_FALSE);
1036 if (!texObj)
1037 return;
1038
1039 _mesa_texture_parameterfv(ctx, texObj, pname, params, false);
1040 }
1041
1042 void GLAPIENTRY
1043 _mesa_TexParameteri(GLenum target, GLenum pname, GLint param)
1044 {
1045 struct gl_texture_object *texObj;
1046 GET_CURRENT_CONTEXT(ctx);
1047
1048 texObj = get_texobj_by_target(ctx, target, GL_FALSE);
1049 if (!texObj)
1050 return;
1051
1052 _mesa_texture_parameteri(ctx, texObj, pname, param, false);
1053 }
1054
1055 void GLAPIENTRY
1056 _mesa_TexParameteriv(GLenum target, GLenum pname, const GLint *params)
1057 {
1058 struct gl_texture_object *texObj;
1059 GET_CURRENT_CONTEXT(ctx);
1060
1061 texObj = get_texobj_by_target(ctx, target, GL_FALSE);
1062 if (!texObj)
1063 return;
1064
1065 _mesa_texture_parameteriv(ctx, texObj, pname, params, false);
1066 }
1067
1068 /**
1069 * Set tex parameter to integer value(s). Primarily intended to set
1070 * integer-valued texture border color (for integer-valued textures).
1071 * New in GL 3.0.
1072 */
1073 void GLAPIENTRY
1074 _mesa_TexParameterIiv(GLenum target, GLenum pname, const GLint *params)
1075 {
1076 struct gl_texture_object *texObj;
1077 GET_CURRENT_CONTEXT(ctx);
1078
1079 texObj = get_texobj_by_target(ctx, target, GL_FALSE);
1080 if (!texObj)
1081 return;
1082
1083 _mesa_texture_parameterIiv(ctx, texObj, pname, params, false);
1084 }
1085
1086 /**
1087 * Set tex parameter to unsigned integer value(s). Primarily intended to set
1088 * uint-valued texture border color (for integer-valued textures).
1089 * New in GL 3.0
1090 */
1091 void GLAPIENTRY
1092 _mesa_TexParameterIuiv(GLenum target, GLenum pname, const GLuint *params)
1093 {
1094 struct gl_texture_object *texObj;
1095 GET_CURRENT_CONTEXT(ctx);
1096
1097 texObj = get_texobj_by_target(ctx, target, GL_FALSE);
1098 if (!texObj)
1099 return;
1100
1101 _mesa_texture_parameterIuiv(ctx, texObj, pname, params, false);
1102 }
1103
1104
1105 void GLAPIENTRY
1106 _mesa_TextureParameterfv(GLuint texture, GLenum pname, const GLfloat *params)
1107 {
1108 struct gl_texture_object *texObj;
1109 GET_CURRENT_CONTEXT(ctx);
1110
1111 texObj = get_texobj_by_name(ctx, texture, GL_FALSE);
1112 if (!texObj) {
1113 /* User passed a non-generated name. */
1114 _mesa_error(ctx, GL_INVALID_OPERATION, "glTextureParameterfv(texture)");
1115 return;
1116 }
1117
1118 _mesa_texture_parameterfv(ctx, texObj, pname, params, true);
1119 }
1120
1121 void GLAPIENTRY
1122 _mesa_TextureParameterf(GLuint texture, GLenum pname, GLfloat param)
1123 {
1124 struct gl_texture_object *texObj;
1125 GET_CURRENT_CONTEXT(ctx);
1126
1127 texObj = get_texobj_by_name(ctx, texture, GL_FALSE);
1128 if (!texObj) {
1129 /* User passed a non-generated name. */
1130 _mesa_error(ctx, GL_INVALID_OPERATION, "glTextureParameterf(texture)");
1131 return;
1132 }
1133
1134 _mesa_texture_parameterf(ctx, texObj, pname, param, true);
1135 }
1136
1137 void GLAPIENTRY
1138 _mesa_TextureParameteri(GLuint texture, GLenum pname, GLint param)
1139 {
1140 struct gl_texture_object *texObj;
1141 GET_CURRENT_CONTEXT(ctx);
1142
1143 texObj = get_texobj_by_name(ctx, texture, GL_FALSE);
1144 if (!texObj) {
1145 /* User passed a non-generated name. */
1146 _mesa_error(ctx, GL_INVALID_OPERATION, "glTextureParameteri(texture)");
1147 return;
1148 }
1149
1150 _mesa_texture_parameteri(ctx, texObj, pname, param, true);
1151 }
1152
1153 void GLAPIENTRY
1154 _mesa_TextureParameteriv(GLuint texture, GLenum pname,
1155 const GLint *params)
1156 {
1157 struct gl_texture_object *texObj;
1158 GET_CURRENT_CONTEXT(ctx);
1159
1160 texObj = get_texobj_by_name(ctx, texture, GL_FALSE);
1161 if (!texObj) {
1162 /* User passed a non-generated name. */
1163 _mesa_error(ctx, GL_INVALID_OPERATION, "glTextureParameteriv(texture)");
1164 return;
1165 }
1166
1167 _mesa_texture_parameteriv(ctx, texObj, pname, params, true);
1168 }
1169
1170
1171 void GLAPIENTRY
1172 _mesa_TextureParameterIiv(GLuint texture, GLenum pname, const GLint *params)
1173 {
1174 struct gl_texture_object *texObj;
1175 GET_CURRENT_CONTEXT(ctx);
1176
1177 texObj = get_texobj_by_name(ctx, texture, GL_FALSE);
1178 if (!texObj) {
1179 /* User passed a non-generated name. */
1180 _mesa_error(ctx, GL_INVALID_OPERATION,
1181 "glTextureParameterIiv(texture)");
1182 return;
1183 }
1184
1185 _mesa_texture_parameterIiv(ctx, texObj, pname, params, true);
1186 }
1187
1188 void GLAPIENTRY
1189 _mesa_TextureParameterIuiv(GLuint texture, GLenum pname, const GLuint *params)
1190 {
1191 struct gl_texture_object *texObj;
1192 GET_CURRENT_CONTEXT(ctx);
1193
1194 texObj = get_texobj_by_name(ctx, texture, GL_FALSE);
1195 if (!texObj) {
1196 /* User passed a non-generated name. */
1197 _mesa_error(ctx, GL_INVALID_OPERATION,
1198 "glTextureParameterIuiv(texture)");
1199 return;
1200 }
1201
1202 _mesa_texture_parameterIuiv(ctx, texObj, pname, params, true);
1203 }
1204
1205 GLboolean
1206 _mesa_legal_get_tex_level_parameter_target(struct gl_context *ctx, GLenum target,
1207 bool dsa)
1208 {
1209 /* Common targets for desktop GL and GLES 3.1. */
1210 switch (target) {
1211 case GL_TEXTURE_2D:
1212 case GL_TEXTURE_3D:
1213 return GL_TRUE;
1214 case GL_TEXTURE_2D_ARRAY_EXT:
1215 return ctx->Extensions.EXT_texture_array;
1216 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
1217 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
1218 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
1219 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
1220 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
1221 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
1222 return ctx->Extensions.ARB_texture_cube_map;
1223 case GL_TEXTURE_2D_MULTISAMPLE:
1224 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
1225 return ctx->Extensions.ARB_texture_multisample;
1226 case GL_TEXTURE_BUFFER:
1227 /* GetTexLevelParameter accepts GL_TEXTURE_BUFFER in GL 3.1+ contexts,
1228 * but not in earlier versions that expose ARB_texture_buffer_object.
1229 *
1230 * From the ARB_texture_buffer_object spec:
1231 * "(7) Do buffer textures support texture parameters (TexParameter) or
1232 * queries (GetTexParameter, GetTexLevelParameter, GetTexImage)?
1233 *
1234 * RESOLVED: No. [...] Note that the spec edits above don't add
1235 * explicit error language for any of these cases. That is because
1236 * each of the functions enumerate the set of valid <target>
1237 * parameters. Not editing the spec to allow TEXTURE_BUFFER_ARB in
1238 * these cases means that target is not legal, and an INVALID_ENUM
1239 * error should be generated."
1240 *
1241 * From the OpenGL 3.1 spec:
1242 * "target may also be TEXTURE_BUFFER, indicating the texture buffer."
1243 */
1244 return (ctx->API == API_OPENGL_CORE && ctx->Version >= 31) ||
1245 _mesa_has_OES_texture_buffer(ctx);
1246 }
1247
1248 if (!_mesa_is_desktop_gl(ctx))
1249 return GL_FALSE;
1250
1251 /* Rest of the desktop GL targets. */
1252 switch (target) {
1253 case GL_TEXTURE_1D:
1254 case GL_PROXY_TEXTURE_1D:
1255 case GL_PROXY_TEXTURE_2D:
1256 case GL_PROXY_TEXTURE_3D:
1257 return GL_TRUE;
1258 case GL_PROXY_TEXTURE_CUBE_MAP:
1259 return ctx->Extensions.ARB_texture_cube_map;
1260 case GL_TEXTURE_CUBE_MAP_ARRAY_ARB:
1261 case GL_PROXY_TEXTURE_CUBE_MAP_ARRAY_ARB:
1262 return ctx->Extensions.ARB_texture_cube_map_array;
1263 case GL_TEXTURE_RECTANGLE_NV:
1264 case GL_PROXY_TEXTURE_RECTANGLE_NV:
1265 return ctx->Extensions.NV_texture_rectangle;
1266 case GL_TEXTURE_1D_ARRAY_EXT:
1267 case GL_PROXY_TEXTURE_1D_ARRAY_EXT:
1268 case GL_PROXY_TEXTURE_2D_ARRAY_EXT:
1269 return ctx->Extensions.EXT_texture_array;
1270 case GL_PROXY_TEXTURE_2D_MULTISAMPLE:
1271 case GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY:
1272 return ctx->Extensions.ARB_texture_multisample;
1273
1274 /* This is a valid target for dsa, but the OpenGL 4.5 core spec
1275 * (30.10.2014) Section 8.11 Texture Queries says:
1276 * "For GetTextureLevelParameter* only, texture may also be a cube
1277 * map texture object. In this case the query is always performed
1278 * for face zero (the TEXTURE_CUBE_MAP_POSITIVE_X face), since there
1279 * is no way to specify another face."
1280 */
1281 case GL_TEXTURE_CUBE_MAP:
1282 return dsa;
1283 default:
1284 return GL_FALSE;
1285 }
1286 }
1287
1288
1289 static void
1290 get_tex_level_parameter_image(struct gl_context *ctx,
1291 const struct gl_texture_object *texObj,
1292 GLenum target, GLint level,
1293 GLenum pname, GLint *params,
1294 bool dsa)
1295 {
1296 const struct gl_texture_image *img = NULL;
1297 struct gl_texture_image dummy_image;
1298 mesa_format texFormat;
1299 const char *suffix = dsa ? "ture" : "";
1300
1301 img = _mesa_select_tex_image(texObj, target, level);
1302 if (!img || img->TexFormat == MESA_FORMAT_NONE) {
1303 /* In case of undefined texture image return the default values.
1304 *
1305 * From OpenGL 4.0 spec, page 398:
1306 * "The initial internal format of a texel array is RGBA
1307 * instead of 1. TEXTURE_COMPONENTS is deprecated; always
1308 * use TEXTURE_INTERNAL_FORMAT."
1309 */
1310 memset(&dummy_image, 0, sizeof(dummy_image));
1311 dummy_image.TexFormat = MESA_FORMAT_NONE;
1312 dummy_image.InternalFormat = GL_RGBA;
1313 dummy_image._BaseFormat = GL_NONE;
1314 dummy_image.FixedSampleLocations = GL_TRUE;
1315
1316 img = &dummy_image;
1317 }
1318
1319 texFormat = img->TexFormat;
1320
1321 switch (pname) {
1322 case GL_TEXTURE_WIDTH:
1323 *params = img->Width;
1324 break;
1325 case GL_TEXTURE_HEIGHT:
1326 *params = img->Height;
1327 break;
1328 case GL_TEXTURE_DEPTH:
1329 *params = img->Depth;
1330 break;
1331 case GL_TEXTURE_INTERNAL_FORMAT:
1332 if (_mesa_is_format_compressed(texFormat)) {
1333 /* need to return the actual compressed format */
1334 *params = _mesa_compressed_format_to_glenum(ctx, texFormat);
1335 }
1336 else {
1337 /* If the true internal format is not compressed but the user
1338 * requested a generic compressed format, we have to return the
1339 * generic base format that matches.
1340 *
1341 * From page 119 (page 129 of the PDF) of the OpenGL 1.3 spec:
1342 *
1343 * "If no specific compressed format is available,
1344 * internalformat is instead replaced by the corresponding base
1345 * internal format."
1346 *
1347 * Otherwise just return the user's requested internal format
1348 */
1349 const GLenum f =
1350 _mesa_gl_compressed_format_base_format(img->InternalFormat);
1351
1352 *params = (f != 0) ? f : img->InternalFormat;
1353 }
1354 break;
1355 case GL_TEXTURE_BORDER:
1356 if (ctx->API != API_OPENGL_COMPAT)
1357 goto invalid_pname;
1358 *params = img->Border;
1359 break;
1360 case GL_TEXTURE_RED_SIZE:
1361 case GL_TEXTURE_GREEN_SIZE:
1362 case GL_TEXTURE_BLUE_SIZE:
1363 case GL_TEXTURE_ALPHA_SIZE:
1364 if (_mesa_base_format_has_channel(img->_BaseFormat, pname))
1365 *params = _mesa_get_format_bits(texFormat, pname);
1366 else
1367 *params = 0;
1368 break;
1369 case GL_TEXTURE_INTENSITY_SIZE:
1370 case GL_TEXTURE_LUMINANCE_SIZE:
1371 if (ctx->API != API_OPENGL_COMPAT)
1372 goto invalid_pname;
1373 if (_mesa_base_format_has_channel(img->_BaseFormat, pname)) {
1374 *params = _mesa_get_format_bits(texFormat, pname);
1375 if (*params == 0) {
1376 /* intensity or luminance is probably stored as RGB[A] */
1377 *params = MIN2(_mesa_get_format_bits(texFormat,
1378 GL_TEXTURE_RED_SIZE),
1379 _mesa_get_format_bits(texFormat,
1380 GL_TEXTURE_GREEN_SIZE));
1381 }
1382 }
1383 else {
1384 *params = 0;
1385 }
1386 break;
1387 case GL_TEXTURE_DEPTH_SIZE_ARB:
1388 if (!ctx->Extensions.ARB_depth_texture)
1389 goto invalid_pname;
1390 *params = _mesa_get_format_bits(texFormat, pname);
1391 break;
1392 case GL_TEXTURE_STENCIL_SIZE:
1393 *params = _mesa_get_format_bits(texFormat, pname);
1394 break;
1395 case GL_TEXTURE_SHARED_SIZE:
1396 if (ctx->Version < 30 &&
1397 !ctx->Extensions.EXT_texture_shared_exponent)
1398 goto invalid_pname;
1399 *params = texFormat == MESA_FORMAT_R9G9B9E5_FLOAT ? 5 : 0;
1400 break;
1401
1402 /* GL_ARB_texture_compression */
1403 case GL_TEXTURE_COMPRESSED_IMAGE_SIZE:
1404 if (_mesa_is_format_compressed(texFormat) &&
1405 !_mesa_is_proxy_texture(target)) {
1406 *params = _mesa_format_image_size(texFormat, img->Width,
1407 img->Height, img->Depth);
1408 }
1409 else {
1410 _mesa_error(ctx, GL_INVALID_OPERATION,
1411 "glGetTex%sLevelParameter[if]v(pname=%s)", suffix,
1412 _mesa_enum_to_string(pname));
1413 }
1414 break;
1415 case GL_TEXTURE_COMPRESSED:
1416 *params = (GLint) _mesa_is_format_compressed(texFormat);
1417 break;
1418
1419 /* GL_ARB_texture_float */
1420 case GL_TEXTURE_LUMINANCE_TYPE_ARB:
1421 case GL_TEXTURE_INTENSITY_TYPE_ARB:
1422 if (ctx->API != API_OPENGL_COMPAT)
1423 goto invalid_pname;
1424 /* FALLTHROUGH */
1425 case GL_TEXTURE_RED_TYPE_ARB:
1426 case GL_TEXTURE_GREEN_TYPE_ARB:
1427 case GL_TEXTURE_BLUE_TYPE_ARB:
1428 case GL_TEXTURE_ALPHA_TYPE_ARB:
1429 case GL_TEXTURE_DEPTH_TYPE_ARB:
1430 if (!ctx->Extensions.ARB_texture_float)
1431 goto invalid_pname;
1432 if (_mesa_base_format_has_channel(img->_BaseFormat, pname))
1433 *params = _mesa_get_format_datatype(texFormat);
1434 else
1435 *params = GL_NONE;
1436 break;
1437
1438 /* GL_ARB_texture_multisample */
1439 case GL_TEXTURE_SAMPLES:
1440 if (!ctx->Extensions.ARB_texture_multisample)
1441 goto invalid_pname;
1442 *params = img->NumSamples;
1443 break;
1444
1445 case GL_TEXTURE_FIXED_SAMPLE_LOCATIONS:
1446 if (!ctx->Extensions.ARB_texture_multisample)
1447 goto invalid_pname;
1448 *params = img->FixedSampleLocations;
1449 break;
1450
1451 /* There is never a buffer data store here, but these pnames still have
1452 * to work.
1453 */
1454
1455 /* GL_ARB_texture_buffer_object */
1456 case GL_TEXTURE_BUFFER_DATA_STORE_BINDING:
1457 if (!ctx->Extensions.ARB_texture_buffer_object)
1458 goto invalid_pname;
1459 *params = 0;
1460 break;
1461
1462 /* GL_ARB_texture_buffer_range */
1463 case GL_TEXTURE_BUFFER_OFFSET:
1464 if (!ctx->Extensions.ARB_texture_buffer_range)
1465 goto invalid_pname;
1466 *params = 0;
1467 break;
1468 case GL_TEXTURE_BUFFER_SIZE:
1469 if (!ctx->Extensions.ARB_texture_buffer_range)
1470 goto invalid_pname;
1471 *params = 0;
1472 break;
1473
1474 default:
1475 goto invalid_pname;
1476 }
1477
1478 /* no error if we get here */
1479 return;
1480
1481 invalid_pname:
1482 _mesa_error(ctx, GL_INVALID_ENUM,
1483 "glGetTex%sLevelParameter[if]v(pname=%s)", suffix,
1484 _mesa_enum_to_string(pname));
1485 }
1486
1487
1488 static void
1489 get_tex_level_parameter_buffer(struct gl_context *ctx,
1490 const struct gl_texture_object *texObj,
1491 GLenum pname, GLint *params, bool dsa)
1492 {
1493 const struct gl_buffer_object *bo = texObj->BufferObject;
1494 mesa_format texFormat = texObj->_BufferObjectFormat;
1495 int bytes = MAX2(1, _mesa_get_format_bytes(texFormat));
1496 GLenum internalFormat = texObj->BufferObjectFormat;
1497 GLenum baseFormat = _mesa_get_format_base_format(texFormat);
1498 const char *suffix = dsa ? "ture" : "";
1499
1500 if (!bo) {
1501 /* undefined texture buffer object */
1502 switch (pname) {
1503 case GL_TEXTURE_FIXED_SAMPLE_LOCATIONS:
1504 *params = GL_TRUE;
1505 break;
1506 case GL_TEXTURE_INTERNAL_FORMAT:
1507 *params = internalFormat;
1508 break;
1509 default:
1510 *params = 0;
1511 break;
1512 }
1513 return;
1514 }
1515
1516 switch (pname) {
1517 case GL_TEXTURE_BUFFER_DATA_STORE_BINDING:
1518 *params = bo->Name;
1519 break;
1520 case GL_TEXTURE_WIDTH:
1521 *params = ((texObj->BufferSize == -1) ? bo->Size : texObj->BufferSize)
1522 / bytes;
1523 break;
1524 case GL_TEXTURE_HEIGHT:
1525 case GL_TEXTURE_DEPTH:
1526 *params = 1;
1527 break;
1528 case GL_TEXTURE_BORDER:
1529 case GL_TEXTURE_SHARED_SIZE:
1530 case GL_TEXTURE_COMPRESSED:
1531 *params = 0;
1532 break;
1533 case GL_TEXTURE_INTERNAL_FORMAT:
1534 *params = internalFormat;
1535 break;
1536 case GL_TEXTURE_RED_SIZE:
1537 case GL_TEXTURE_GREEN_SIZE:
1538 case GL_TEXTURE_BLUE_SIZE:
1539 case GL_TEXTURE_ALPHA_SIZE:
1540 if (_mesa_base_format_has_channel(baseFormat, pname))
1541 *params = _mesa_get_format_bits(texFormat, pname);
1542 else
1543 *params = 0;
1544 break;
1545 case GL_TEXTURE_INTENSITY_SIZE:
1546 case GL_TEXTURE_LUMINANCE_SIZE:
1547 if (_mesa_base_format_has_channel(baseFormat, pname)) {
1548 *params = _mesa_get_format_bits(texFormat, pname);
1549 if (*params == 0) {
1550 /* intensity or luminance is probably stored as RGB[A] */
1551 *params = MIN2(_mesa_get_format_bits(texFormat,
1552 GL_TEXTURE_RED_SIZE),
1553 _mesa_get_format_bits(texFormat,
1554 GL_TEXTURE_GREEN_SIZE));
1555 }
1556 } else {
1557 *params = 0;
1558 }
1559 break;
1560 case GL_TEXTURE_DEPTH_SIZE_ARB:
1561 case GL_TEXTURE_STENCIL_SIZE_EXT:
1562 *params = _mesa_get_format_bits(texFormat, pname);
1563 break;
1564
1565 /* GL_ARB_texture_buffer_range */
1566 case GL_TEXTURE_BUFFER_OFFSET:
1567 if (!ctx->Extensions.ARB_texture_buffer_range)
1568 goto invalid_pname;
1569 *params = texObj->BufferOffset;
1570 break;
1571 case GL_TEXTURE_BUFFER_SIZE:
1572 if (!ctx->Extensions.ARB_texture_buffer_range)
1573 goto invalid_pname;
1574 *params = (texObj->BufferSize == -1) ? bo->Size : texObj->BufferSize;
1575 break;
1576
1577 /* GL_ARB_texture_multisample */
1578 case GL_TEXTURE_SAMPLES:
1579 if (!ctx->Extensions.ARB_texture_multisample)
1580 goto invalid_pname;
1581 *params = 0;
1582 break;
1583
1584 case GL_TEXTURE_FIXED_SAMPLE_LOCATIONS:
1585 if (!ctx->Extensions.ARB_texture_multisample)
1586 goto invalid_pname;
1587 *params = GL_TRUE;
1588 break;
1589
1590 /* GL_ARB_texture_compression */
1591 case GL_TEXTURE_COMPRESSED_IMAGE_SIZE:
1592 /* Always illegal for GL_TEXTURE_BUFFER */
1593 _mesa_error(ctx, GL_INVALID_OPERATION,
1594 "glGetTex%sLevelParameter[if]v(pname=%s)", suffix,
1595 _mesa_enum_to_string(pname));
1596 break;
1597
1598 /* GL_ARB_texture_float */
1599 case GL_TEXTURE_RED_TYPE_ARB:
1600 case GL_TEXTURE_GREEN_TYPE_ARB:
1601 case GL_TEXTURE_BLUE_TYPE_ARB:
1602 case GL_TEXTURE_ALPHA_TYPE_ARB:
1603 case GL_TEXTURE_LUMINANCE_TYPE_ARB:
1604 case GL_TEXTURE_INTENSITY_TYPE_ARB:
1605 case GL_TEXTURE_DEPTH_TYPE_ARB:
1606 if (!ctx->Extensions.ARB_texture_float)
1607 goto invalid_pname;
1608 if (_mesa_base_format_has_channel(baseFormat, pname))
1609 *params = _mesa_get_format_datatype(texFormat);
1610 else
1611 *params = GL_NONE;
1612 break;
1613
1614 default:
1615 goto invalid_pname;
1616 }
1617
1618 /* no error if we get here */
1619 return;
1620
1621 invalid_pname:
1622 _mesa_error(ctx, GL_INVALID_ENUM,
1623 "glGetTex%sLevelParameter[if]v(pname=%s)", suffix,
1624 _mesa_enum_to_string(pname));
1625 }
1626
1627 static bool
1628 valid_tex_level_parameteriv_target(struct gl_context *ctx, GLenum target,
1629 bool dsa)
1630 {
1631 const char *suffix = dsa ? "ture" : "";
1632 if (!_mesa_legal_get_tex_level_parameter_target(ctx, target, dsa)) {
1633 _mesa_error(ctx, GL_INVALID_ENUM,
1634 "glGetTex%sLevelParameter[if]v(target=%s)", suffix,
1635 _mesa_enum_to_string(target));
1636 return false;
1637 }
1638 return true;
1639 }
1640
1641 /**
1642 * This isn't exposed to the rest of the driver because it is a part of the
1643 * OpenGL API that is rarely used.
1644 */
1645 static void
1646 get_tex_level_parameteriv(struct gl_context *ctx,
1647 struct gl_texture_object *texObj,
1648 GLenum target, GLint level,
1649 GLenum pname, GLint *params,
1650 bool dsa)
1651 {
1652 GLint maxLevels;
1653 const char *suffix = dsa ? "ture" : "";
1654
1655 /* Check for errors */
1656 if (ctx->Texture.CurrentUnit >= ctx->Const.MaxCombinedTextureImageUnits) {
1657 _mesa_error(ctx, GL_INVALID_OPERATION,
1658 "glGetTex%sLevelParameter[if]v("
1659 "current unit >= max combined texture units)", suffix);
1660 return;
1661 }
1662
1663 maxLevels = _mesa_max_texture_levels(ctx, target);
1664 assert(maxLevels != 0);
1665
1666 if (level < 0 || level >= maxLevels) {
1667 _mesa_error(ctx, GL_INVALID_VALUE,
1668 "glGetTex%sLevelParameter[if]v(level out of range)", suffix);
1669 return;
1670 }
1671
1672 /* Get the level parameter */
1673 if (target == GL_TEXTURE_BUFFER) {
1674 get_tex_level_parameter_buffer(ctx, texObj, pname, params, dsa);
1675 }
1676 else {
1677 get_tex_level_parameter_image(ctx, texObj, target,
1678 level, pname, params, dsa);
1679 }
1680 }
1681
1682 void GLAPIENTRY
1683 _mesa_GetTexLevelParameterfv( GLenum target, GLint level,
1684 GLenum pname, GLfloat *params )
1685 {
1686 struct gl_texture_object *texObj;
1687 GLint iparam;
1688 GET_CURRENT_CONTEXT(ctx);
1689
1690 if (!valid_tex_level_parameteriv_target(ctx, target, false))
1691 return;
1692
1693 texObj = _mesa_get_current_tex_object(ctx, target);
1694 if (!texObj)
1695 return;
1696
1697 get_tex_level_parameteriv(ctx, texObj, target, level,
1698 pname, &iparam, false);
1699
1700 *params = (GLfloat) iparam;
1701 }
1702
1703 void GLAPIENTRY
1704 _mesa_GetTexLevelParameteriv( GLenum target, GLint level,
1705 GLenum pname, GLint *params )
1706 {
1707 struct gl_texture_object *texObj;
1708 GET_CURRENT_CONTEXT(ctx);
1709
1710 if (!valid_tex_level_parameteriv_target(ctx, target, false))
1711 return;
1712
1713 texObj = _mesa_get_current_tex_object(ctx, target);
1714 if (!texObj)
1715 return;
1716
1717 get_tex_level_parameteriv(ctx, texObj, target, level,
1718 pname, params, false);
1719 }
1720
1721 void GLAPIENTRY
1722 _mesa_GetTextureLevelParameterfv(GLuint texture, GLint level,
1723 GLenum pname, GLfloat *params)
1724 {
1725 struct gl_texture_object *texObj;
1726 GLint iparam;
1727 GET_CURRENT_CONTEXT(ctx);
1728
1729 texObj = _mesa_lookup_texture_err(ctx, texture,
1730 "glGetTextureLevelParameterfv");
1731 if (!texObj)
1732 return;
1733
1734 if (!valid_tex_level_parameteriv_target(ctx, texObj->Target, true))
1735 return;
1736
1737 get_tex_level_parameteriv(ctx, texObj, texObj->Target, level,
1738 pname, &iparam, true);
1739
1740 *params = (GLfloat) iparam;
1741 }
1742
1743 void GLAPIENTRY
1744 _mesa_GetTextureLevelParameteriv(GLuint texture, GLint level,
1745 GLenum pname, GLint *params)
1746 {
1747 struct gl_texture_object *texObj;
1748 GET_CURRENT_CONTEXT(ctx);
1749
1750 texObj = _mesa_lookup_texture_err(ctx, texture,
1751 "glGetTextureLevelParameteriv");
1752 if (!texObj)
1753 return;
1754
1755 if (!valid_tex_level_parameteriv_target(ctx, texObj->Target, true))
1756 return;
1757
1758 get_tex_level_parameteriv(ctx, texObj, texObj->Target, level,
1759 pname, params, true);
1760 }
1761
1762 /**
1763 * This isn't exposed to the rest of the driver because it is a part of the
1764 * OpenGL API that is rarely used.
1765 */
1766 static void
1767 get_tex_parameterfv(struct gl_context *ctx,
1768 struct gl_texture_object *obj,
1769 GLenum pname, GLfloat *params, bool dsa)
1770 {
1771 _mesa_lock_context_textures(ctx);
1772 switch (pname) {
1773 case GL_TEXTURE_MAG_FILTER:
1774 *params = ENUM_TO_FLOAT(obj->Sampler.MagFilter);
1775 break;
1776 case GL_TEXTURE_MIN_FILTER:
1777 *params = ENUM_TO_FLOAT(obj->Sampler.MinFilter);
1778 break;
1779 case GL_TEXTURE_WRAP_S:
1780 *params = ENUM_TO_FLOAT(obj->Sampler.WrapS);
1781 break;
1782 case GL_TEXTURE_WRAP_T:
1783 *params = ENUM_TO_FLOAT(obj->Sampler.WrapT);
1784 break;
1785 case GL_TEXTURE_WRAP_R:
1786 *params = ENUM_TO_FLOAT(obj->Sampler.WrapR);
1787 break;
1788 case GL_TEXTURE_BORDER_COLOR:
1789 if (ctx->API == API_OPENGLES ||
1790 !ctx->Extensions.ARB_texture_border_clamp)
1791 goto invalid_pname;
1792
1793 if (ctx->NewState & (_NEW_BUFFERS | _NEW_FRAG_CLAMP))
1794 _mesa_update_state_locked(ctx);
1795 if (_mesa_get_clamp_fragment_color(ctx, ctx->DrawBuffer)) {
1796 params[0] = CLAMP(obj->Sampler.BorderColor.f[0], 0.0F, 1.0F);
1797 params[1] = CLAMP(obj->Sampler.BorderColor.f[1], 0.0F, 1.0F);
1798 params[2] = CLAMP(obj->Sampler.BorderColor.f[2], 0.0F, 1.0F);
1799 params[3] = CLAMP(obj->Sampler.BorderColor.f[3], 0.0F, 1.0F);
1800 }
1801 else {
1802 params[0] = obj->Sampler.BorderColor.f[0];
1803 params[1] = obj->Sampler.BorderColor.f[1];
1804 params[2] = obj->Sampler.BorderColor.f[2];
1805 params[3] = obj->Sampler.BorderColor.f[3];
1806 }
1807 break;
1808 case GL_TEXTURE_RESIDENT:
1809 if (ctx->API != API_OPENGL_COMPAT)
1810 goto invalid_pname;
1811
1812 *params = 1.0F;
1813 break;
1814 case GL_TEXTURE_PRIORITY:
1815 if (ctx->API != API_OPENGL_COMPAT)
1816 goto invalid_pname;
1817
1818 *params = obj->Priority;
1819 break;
1820 case GL_TEXTURE_MIN_LOD:
1821 if (!_mesa_is_desktop_gl(ctx) && !_mesa_is_gles3(ctx))
1822 goto invalid_pname;
1823
1824 *params = obj->Sampler.MinLod;
1825 break;
1826 case GL_TEXTURE_MAX_LOD:
1827 if (!_mesa_is_desktop_gl(ctx) && !_mesa_is_gles3(ctx))
1828 goto invalid_pname;
1829
1830 *params = obj->Sampler.MaxLod;
1831 break;
1832 case GL_TEXTURE_BASE_LEVEL:
1833 if (!_mesa_is_desktop_gl(ctx) && !_mesa_is_gles3(ctx))
1834 goto invalid_pname;
1835
1836 *params = (GLfloat) obj->BaseLevel;
1837 break;
1838 case GL_TEXTURE_MAX_LEVEL:
1839 *params = (GLfloat) obj->MaxLevel;
1840 break;
1841 case GL_TEXTURE_MAX_ANISOTROPY_EXT:
1842 if (!ctx->Extensions.EXT_texture_filter_anisotropic)
1843 goto invalid_pname;
1844 *params = obj->Sampler.MaxAnisotropy;
1845 break;
1846 case GL_GENERATE_MIPMAP_SGIS:
1847 if (ctx->API != API_OPENGL_COMPAT && ctx->API != API_OPENGLES)
1848 goto invalid_pname;
1849
1850 *params = (GLfloat) obj->GenerateMipmap;
1851 break;
1852 case GL_TEXTURE_COMPARE_MODE_ARB:
1853 if ((!_mesa_is_desktop_gl(ctx) || !ctx->Extensions.ARB_shadow)
1854 && !_mesa_is_gles3(ctx))
1855 goto invalid_pname;
1856 *params = (GLfloat) obj->Sampler.CompareMode;
1857 break;
1858 case GL_TEXTURE_COMPARE_FUNC_ARB:
1859 if ((!_mesa_is_desktop_gl(ctx) || !ctx->Extensions.ARB_shadow)
1860 && !_mesa_is_gles3(ctx))
1861 goto invalid_pname;
1862 *params = (GLfloat) obj->Sampler.CompareFunc;
1863 break;
1864 case GL_DEPTH_TEXTURE_MODE_ARB:
1865 /* GL_DEPTH_TEXTURE_MODE_ARB is removed in core-profile and it has
1866 * never existed in OpenGL ES.
1867 */
1868 if (ctx->API != API_OPENGL_COMPAT || !ctx->Extensions.ARB_depth_texture)
1869 goto invalid_pname;
1870 *params = (GLfloat) obj->DepthMode;
1871 break;
1872 case GL_DEPTH_STENCIL_TEXTURE_MODE:
1873 if (!_mesa_has_ARB_stencil_texturing(ctx) && !_mesa_is_gles31(ctx))
1874 goto invalid_pname;
1875 *params = (GLfloat)
1876 (obj->StencilSampling ? GL_STENCIL_INDEX : GL_DEPTH_COMPONENT);
1877 break;
1878 case GL_TEXTURE_LOD_BIAS:
1879 if (_mesa_is_gles(ctx))
1880 goto invalid_pname;
1881
1882 *params = obj->Sampler.LodBias;
1883 break;
1884 case GL_TEXTURE_CROP_RECT_OES:
1885 if (ctx->API != API_OPENGLES || !ctx->Extensions.OES_draw_texture)
1886 goto invalid_pname;
1887
1888 params[0] = (GLfloat) obj->CropRect[0];
1889 params[1] = (GLfloat) obj->CropRect[1];
1890 params[2] = (GLfloat) obj->CropRect[2];
1891 params[3] = (GLfloat) obj->CropRect[3];
1892 break;
1893
1894 case GL_TEXTURE_SWIZZLE_R_EXT:
1895 case GL_TEXTURE_SWIZZLE_G_EXT:
1896 case GL_TEXTURE_SWIZZLE_B_EXT:
1897 case GL_TEXTURE_SWIZZLE_A_EXT:
1898 if ((!_mesa_is_desktop_gl(ctx)
1899 || !ctx->Extensions.EXT_texture_swizzle)
1900 && !_mesa_is_gles3(ctx))
1901 goto invalid_pname;
1902 *params = (GLfloat) obj->Swizzle[pname - GL_TEXTURE_SWIZZLE_R_EXT];
1903 break;
1904
1905 case GL_TEXTURE_SWIZZLE_RGBA_EXT:
1906 if ((!_mesa_is_desktop_gl(ctx)
1907 || !ctx->Extensions.EXT_texture_swizzle)
1908 && !_mesa_is_gles3(ctx)) {
1909 goto invalid_pname;
1910 }
1911 else {
1912 GLuint comp;
1913 for (comp = 0; comp < 4; comp++) {
1914 params[comp] = (GLfloat) obj->Swizzle[comp];
1915 }
1916 }
1917 break;
1918
1919 case GL_TEXTURE_CUBE_MAP_SEAMLESS:
1920 if (!_mesa_is_desktop_gl(ctx)
1921 || !ctx->Extensions.AMD_seamless_cubemap_per_texture)
1922 goto invalid_pname;
1923 *params = (GLfloat) obj->Sampler.CubeMapSeamless;
1924 break;
1925
1926 case GL_TEXTURE_IMMUTABLE_FORMAT:
1927 *params = (GLfloat) obj->Immutable;
1928 break;
1929
1930 case GL_TEXTURE_IMMUTABLE_LEVELS:
1931 if (_mesa_is_gles3(ctx) ||
1932 (_mesa_is_desktop_gl(ctx) && ctx->Extensions.ARB_texture_view))
1933 *params = (GLfloat) obj->ImmutableLevels;
1934 else
1935 goto invalid_pname;
1936 break;
1937
1938 case GL_TEXTURE_VIEW_MIN_LEVEL:
1939 if (!ctx->Extensions.ARB_texture_view)
1940 goto invalid_pname;
1941 *params = (GLfloat) obj->MinLevel;
1942 break;
1943
1944 case GL_TEXTURE_VIEW_NUM_LEVELS:
1945 if (!ctx->Extensions.ARB_texture_view)
1946 goto invalid_pname;
1947 *params = (GLfloat) obj->NumLevels;
1948 break;
1949
1950 case GL_TEXTURE_VIEW_MIN_LAYER:
1951 if (!ctx->Extensions.ARB_texture_view)
1952 goto invalid_pname;
1953 *params = (GLfloat) obj->MinLayer;
1954 break;
1955
1956 case GL_TEXTURE_VIEW_NUM_LAYERS:
1957 if (!ctx->Extensions.ARB_texture_view)
1958 goto invalid_pname;
1959 *params = (GLfloat) obj->NumLayers;
1960 break;
1961
1962 case GL_REQUIRED_TEXTURE_IMAGE_UNITS_OES:
1963 if (!_mesa_is_gles(ctx) || !ctx->Extensions.OES_EGL_image_external)
1964 goto invalid_pname;
1965 *params = (GLfloat) obj->RequiredTextureImageUnits;
1966 break;
1967
1968 case GL_TEXTURE_SRGB_DECODE_EXT:
1969 if (!ctx->Extensions.EXT_texture_sRGB_decode)
1970 goto invalid_pname;
1971 *params = (GLfloat) obj->Sampler.sRGBDecode;
1972 break;
1973
1974 case GL_IMAGE_FORMAT_COMPATIBILITY_TYPE:
1975 if (!ctx->Extensions.ARB_shader_image_load_store)
1976 goto invalid_pname;
1977 *params = (GLfloat) obj->ImageFormatCompatibilityType;
1978 break;
1979
1980 case GL_TEXTURE_TARGET:
1981 if (ctx->API != API_OPENGL_CORE)
1982 goto invalid_pname;
1983 *params = ENUM_TO_FLOAT(obj->Target);
1984 break;
1985
1986 default:
1987 goto invalid_pname;
1988 }
1989
1990 /* no error if we get here */
1991 _mesa_unlock_context_textures(ctx);
1992 return;
1993
1994 invalid_pname:
1995 _mesa_unlock_context_textures(ctx);
1996 _mesa_error(ctx, GL_INVALID_ENUM, "glGetTex%sParameterfv(pname=0x%x)",
1997 dsa ? "ture" : "", pname);
1998 }
1999
2000
2001 static void
2002 get_tex_parameteriv(struct gl_context *ctx,
2003 struct gl_texture_object *obj,
2004 GLenum pname, GLint *params, bool dsa)
2005 {
2006 _mesa_lock_texture(ctx, obj);
2007 switch (pname) {
2008 case GL_TEXTURE_MAG_FILTER:
2009 *params = (GLint) obj->Sampler.MagFilter;
2010 break;
2011 case GL_TEXTURE_MIN_FILTER:
2012 *params = (GLint) obj->Sampler.MinFilter;
2013 break;
2014 case GL_TEXTURE_WRAP_S:
2015 *params = (GLint) obj->Sampler.WrapS;
2016 break;
2017 case GL_TEXTURE_WRAP_T:
2018 *params = (GLint) obj->Sampler.WrapT;
2019 break;
2020 case GL_TEXTURE_WRAP_R:
2021 *params = (GLint) obj->Sampler.WrapR;
2022 break;
2023 case GL_TEXTURE_BORDER_COLOR:
2024 if (ctx->API == API_OPENGLES ||
2025 !ctx->Extensions.ARB_texture_border_clamp)
2026 goto invalid_pname;
2027
2028 {
2029 GLfloat b[4];
2030 b[0] = CLAMP(obj->Sampler.BorderColor.f[0], 0.0F, 1.0F);
2031 b[1] = CLAMP(obj->Sampler.BorderColor.f[1], 0.0F, 1.0F);
2032 b[2] = CLAMP(obj->Sampler.BorderColor.f[2], 0.0F, 1.0F);
2033 b[3] = CLAMP(obj->Sampler.BorderColor.f[3], 0.0F, 1.0F);
2034 params[0] = FLOAT_TO_INT(b[0]);
2035 params[1] = FLOAT_TO_INT(b[1]);
2036 params[2] = FLOAT_TO_INT(b[2]);
2037 params[3] = FLOAT_TO_INT(b[3]);
2038 }
2039 break;
2040 case GL_TEXTURE_RESIDENT:
2041 if (ctx->API != API_OPENGL_COMPAT)
2042 goto invalid_pname;
2043
2044 *params = 1;
2045 break;
2046 case GL_TEXTURE_PRIORITY:
2047 if (ctx->API != API_OPENGL_COMPAT)
2048 goto invalid_pname;
2049
2050 *params = FLOAT_TO_INT(obj->Priority);
2051 break;
2052 case GL_TEXTURE_MIN_LOD:
2053 if (!_mesa_is_desktop_gl(ctx) && !_mesa_is_gles3(ctx))
2054 goto invalid_pname;
2055 /* GL spec 'Data Conversions' section specifies that floating-point
2056 * value in integer Get function is rounded to nearest integer
2057 */
2058 *params = IROUND(obj->Sampler.MinLod);
2059 break;
2060 case GL_TEXTURE_MAX_LOD:
2061 if (!_mesa_is_desktop_gl(ctx) && !_mesa_is_gles3(ctx))
2062 goto invalid_pname;
2063 /* GL spec 'Data Conversions' section specifies that floating-point
2064 * value in integer Get function is rounded to nearest integer
2065 */
2066 *params = IROUND(obj->Sampler.MaxLod);
2067 break;
2068 case GL_TEXTURE_BASE_LEVEL:
2069 if (!_mesa_is_desktop_gl(ctx) && !_mesa_is_gles3(ctx))
2070 goto invalid_pname;
2071
2072 *params = obj->BaseLevel;
2073 break;
2074 case GL_TEXTURE_MAX_LEVEL:
2075 *params = obj->MaxLevel;
2076 break;
2077 case GL_TEXTURE_MAX_ANISOTROPY_EXT:
2078 if (!ctx->Extensions.EXT_texture_filter_anisotropic)
2079 goto invalid_pname;
2080 /* GL spec 'Data Conversions' section specifies that floating-point
2081 * value in integer Get function is rounded to nearest integer
2082 */
2083 *params = IROUND(obj->Sampler.MaxAnisotropy);
2084 break;
2085 case GL_GENERATE_MIPMAP_SGIS:
2086 if (ctx->API != API_OPENGL_COMPAT && ctx->API != API_OPENGLES)
2087 goto invalid_pname;
2088
2089 *params = (GLint) obj->GenerateMipmap;
2090 break;
2091 case GL_TEXTURE_COMPARE_MODE_ARB:
2092 if ((!_mesa_is_desktop_gl(ctx) || !ctx->Extensions.ARB_shadow)
2093 && !_mesa_is_gles3(ctx))
2094 goto invalid_pname;
2095 *params = (GLint) obj->Sampler.CompareMode;
2096 break;
2097 case GL_TEXTURE_COMPARE_FUNC_ARB:
2098 if ((!_mesa_is_desktop_gl(ctx) || !ctx->Extensions.ARB_shadow)
2099 && !_mesa_is_gles3(ctx))
2100 goto invalid_pname;
2101 *params = (GLint) obj->Sampler.CompareFunc;
2102 break;
2103 case GL_DEPTH_TEXTURE_MODE_ARB:
2104 if (ctx->API != API_OPENGL_COMPAT || !ctx->Extensions.ARB_depth_texture)
2105 goto invalid_pname;
2106 *params = (GLint) obj->DepthMode;
2107 break;
2108 case GL_DEPTH_STENCIL_TEXTURE_MODE:
2109 if (!_mesa_has_ARB_stencil_texturing(ctx) && !_mesa_is_gles31(ctx))
2110 goto invalid_pname;
2111 *params = (GLint)
2112 (obj->StencilSampling ? GL_STENCIL_INDEX : GL_DEPTH_COMPONENT);
2113 break;
2114 case GL_TEXTURE_LOD_BIAS:
2115 if (_mesa_is_gles(ctx))
2116 goto invalid_pname;
2117
2118 /* GL spec 'Data Conversions' section specifies that floating-point
2119 * value in integer Get function is rounded to nearest integer
2120 */
2121 *params = IROUND(obj->Sampler.LodBias);
2122 break;
2123 case GL_TEXTURE_CROP_RECT_OES:
2124 if (ctx->API != API_OPENGLES || !ctx->Extensions.OES_draw_texture)
2125 goto invalid_pname;
2126
2127 params[0] = obj->CropRect[0];
2128 params[1] = obj->CropRect[1];
2129 params[2] = obj->CropRect[2];
2130 params[3] = obj->CropRect[3];
2131 break;
2132 case GL_TEXTURE_SWIZZLE_R_EXT:
2133 case GL_TEXTURE_SWIZZLE_G_EXT:
2134 case GL_TEXTURE_SWIZZLE_B_EXT:
2135 case GL_TEXTURE_SWIZZLE_A_EXT:
2136 if ((!_mesa_is_desktop_gl(ctx)
2137 || !ctx->Extensions.EXT_texture_swizzle)
2138 && !_mesa_is_gles3(ctx))
2139 goto invalid_pname;
2140 *params = obj->Swizzle[pname - GL_TEXTURE_SWIZZLE_R_EXT];
2141 break;
2142
2143 case GL_TEXTURE_SWIZZLE_RGBA_EXT:
2144 if ((!_mesa_is_desktop_gl(ctx)
2145 || !ctx->Extensions.EXT_texture_swizzle)
2146 && !_mesa_is_gles3(ctx))
2147 goto invalid_pname;
2148 COPY_4V(params, obj->Swizzle);
2149 break;
2150
2151 case GL_TEXTURE_CUBE_MAP_SEAMLESS:
2152 if (!_mesa_is_desktop_gl(ctx)
2153 || !ctx->Extensions.AMD_seamless_cubemap_per_texture)
2154 goto invalid_pname;
2155 *params = (GLint) obj->Sampler.CubeMapSeamless;
2156 break;
2157
2158 case GL_TEXTURE_IMMUTABLE_FORMAT:
2159 *params = (GLint) obj->Immutable;
2160 break;
2161
2162 case GL_TEXTURE_IMMUTABLE_LEVELS:
2163 if (_mesa_is_gles3(ctx) ||
2164 (_mesa_is_desktop_gl(ctx) && ctx->Extensions.ARB_texture_view))
2165 *params = obj->ImmutableLevels;
2166 else
2167 goto invalid_pname;
2168 break;
2169
2170 case GL_TEXTURE_VIEW_MIN_LEVEL:
2171 if (!ctx->Extensions.ARB_texture_view)
2172 goto invalid_pname;
2173 *params = (GLint) obj->MinLevel;
2174 break;
2175
2176 case GL_TEXTURE_VIEW_NUM_LEVELS:
2177 if (!ctx->Extensions.ARB_texture_view)
2178 goto invalid_pname;
2179 *params = (GLint) obj->NumLevels;
2180 break;
2181
2182 case GL_TEXTURE_VIEW_MIN_LAYER:
2183 if (!ctx->Extensions.ARB_texture_view)
2184 goto invalid_pname;
2185 *params = (GLint) obj->MinLayer;
2186 break;
2187
2188 case GL_TEXTURE_VIEW_NUM_LAYERS:
2189 if (!ctx->Extensions.ARB_texture_view)
2190 goto invalid_pname;
2191 *params = (GLint) obj->NumLayers;
2192 break;
2193
2194 case GL_REQUIRED_TEXTURE_IMAGE_UNITS_OES:
2195 if (!_mesa_is_gles(ctx) || !ctx->Extensions.OES_EGL_image_external)
2196 goto invalid_pname;
2197 *params = obj->RequiredTextureImageUnits;
2198 break;
2199
2200 case GL_TEXTURE_SRGB_DECODE_EXT:
2201 if (!ctx->Extensions.EXT_texture_sRGB_decode)
2202 goto invalid_pname;
2203 *params = obj->Sampler.sRGBDecode;
2204 break;
2205
2206 case GL_IMAGE_FORMAT_COMPATIBILITY_TYPE:
2207 if (!ctx->Extensions.ARB_shader_image_load_store)
2208 goto invalid_pname;
2209 *params = obj->ImageFormatCompatibilityType;
2210 break;
2211
2212 case GL_TEXTURE_TARGET:
2213 if (ctx->API != API_OPENGL_CORE)
2214 goto invalid_pname;
2215 *params = (GLint) obj->Target;
2216 break;
2217
2218 default:
2219 goto invalid_pname;
2220 }
2221
2222 /* no error if we get here */
2223 _mesa_unlock_texture(ctx, obj);
2224 return;
2225
2226 invalid_pname:
2227 _mesa_unlock_texture(ctx, obj);
2228 _mesa_error(ctx, GL_INVALID_ENUM, "glGetTex%sParameteriv(pname=0x%x)",
2229 dsa ? "ture" : "", pname);
2230 }
2231
2232 static void
2233 get_tex_parameterIiv(struct gl_context *ctx,
2234 struct gl_texture_object *obj,
2235 GLenum pname, GLint *params, bool dsa)
2236 {
2237 switch (pname) {
2238 case GL_TEXTURE_BORDER_COLOR:
2239 COPY_4V(params, obj->Sampler.BorderColor.i);
2240 break;
2241 default:
2242 get_tex_parameteriv(ctx, obj, pname, params, dsa);
2243 }
2244 }
2245
2246 static void
2247 get_tex_parameterIuiv(struct gl_context *ctx,
2248 struct gl_texture_object *obj,
2249 GLenum pname, GLuint *params, bool dsa)
2250 {
2251 switch (pname) {
2252 case GL_TEXTURE_BORDER_COLOR:
2253 COPY_4V(params, obj->Sampler.BorderColor.i);
2254 break;
2255 default:
2256 {
2257 GLint ip[4];
2258 get_tex_parameteriv(ctx, obj, pname, ip, dsa);
2259 params[0] = ip[0];
2260 if (pname == GL_TEXTURE_SWIZZLE_RGBA_EXT ||
2261 pname == GL_TEXTURE_CROP_RECT_OES) {
2262 params[1] = ip[1];
2263 params[2] = ip[2];
2264 params[3] = ip[3];
2265 }
2266 }
2267 }
2268 }
2269
2270 void GLAPIENTRY
2271 _mesa_GetTexParameterfv(GLenum target, GLenum pname, GLfloat *params)
2272 {
2273 struct gl_texture_object *obj;
2274 GET_CURRENT_CONTEXT(ctx);
2275
2276 obj = get_texobj_by_target(ctx, target, GL_TRUE);
2277 if (!obj)
2278 return;
2279
2280 get_tex_parameterfv(ctx, obj, pname, params, false);
2281 }
2282
2283 void GLAPIENTRY
2284 _mesa_GetTexParameteriv(GLenum target, GLenum pname, GLint *params)
2285 {
2286 struct gl_texture_object *obj;
2287 GET_CURRENT_CONTEXT(ctx);
2288
2289 obj = get_texobj_by_target(ctx, target, GL_TRUE);
2290 if (!obj)
2291 return;
2292
2293 get_tex_parameteriv(ctx, obj, pname, params, false);
2294 }
2295
2296 /** New in GL 3.0 */
2297 void GLAPIENTRY
2298 _mesa_GetTexParameterIiv(GLenum target, GLenum pname, GLint *params)
2299 {
2300 struct gl_texture_object *texObj;
2301 GET_CURRENT_CONTEXT(ctx);
2302
2303 texObj = get_texobj_by_target(ctx, target, GL_TRUE);
2304 if (!texObj)
2305 return;
2306
2307 get_tex_parameterIiv(ctx, texObj, pname, params, false);
2308 }
2309
2310
2311 /** New in GL 3.0 */
2312 void GLAPIENTRY
2313 _mesa_GetTexParameterIuiv(GLenum target, GLenum pname, GLuint *params)
2314 {
2315 struct gl_texture_object *texObj;
2316 GET_CURRENT_CONTEXT(ctx);
2317
2318 texObj = get_texobj_by_target(ctx, target, GL_TRUE);
2319 if (!texObj)
2320 return;
2321
2322 get_tex_parameterIuiv(ctx, texObj, pname, params, false);
2323 }
2324
2325
2326 void GLAPIENTRY
2327 _mesa_GetTextureParameterfv(GLuint texture, GLenum pname, GLfloat *params)
2328 {
2329 struct gl_texture_object *obj;
2330 GET_CURRENT_CONTEXT(ctx);
2331
2332 obj = get_texobj_by_name(ctx, texture, GL_TRUE);
2333 if (!obj) {
2334 /* User passed a non-generated name. */
2335 _mesa_error(ctx, GL_INVALID_OPERATION,
2336 "glGetTextureParameterfv(texture)");
2337 return;
2338 }
2339
2340 get_tex_parameterfv(ctx, obj, pname, params, true);
2341 }
2342
2343 void GLAPIENTRY
2344 _mesa_GetTextureParameteriv(GLuint texture, GLenum pname, GLint *params)
2345 {
2346 struct gl_texture_object *obj;
2347 GET_CURRENT_CONTEXT(ctx);
2348
2349 obj = get_texobj_by_name(ctx, texture, GL_TRUE);
2350 if (!obj) {
2351 /* User passed a non-generated name. */
2352 _mesa_error(ctx, GL_INVALID_OPERATION,
2353 "glGetTextureParameteriv(texture)");
2354 return;
2355 }
2356
2357 get_tex_parameteriv(ctx, obj, pname, params, true);
2358 }
2359
2360 void GLAPIENTRY
2361 _mesa_GetTextureParameterIiv(GLuint texture, GLenum pname, GLint *params)
2362 {
2363 struct gl_texture_object *texObj;
2364 GET_CURRENT_CONTEXT(ctx);
2365
2366 texObj = get_texobj_by_name(ctx, texture, GL_TRUE);
2367 if (!texObj) {
2368 /* User passed a non-generated name. */
2369 _mesa_error(ctx, GL_INVALID_OPERATION,
2370 "glGetTextureParameterIiv(texture)");
2371 return;
2372 }
2373
2374 get_tex_parameterIiv(ctx, texObj, pname, params, true);
2375 }
2376
2377
2378 void GLAPIENTRY
2379 _mesa_GetTextureParameterIuiv(GLuint texture, GLenum pname, GLuint *params)
2380 {
2381 struct gl_texture_object *texObj;
2382 GET_CURRENT_CONTEXT(ctx);
2383
2384 texObj = get_texobj_by_name(ctx, texture, GL_TRUE);
2385 if (!texObj) {
2386 /* User passed a non-generated name. */
2387 _mesa_error(ctx, GL_INVALID_OPERATION,
2388 "glGetTextureParameterIuiv(texture)");
2389 return;
2390 }
2391
2392 get_tex_parameterIuiv(ctx, texObj, pname, params, true);
2393 }