mesa: remove unused variables to fix compile warnings
[mesa.git] / src / mesa / main / teximage.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 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25
26 /**
27 * \file teximage.c
28 * Texture image-related functions.
29 */
30
31 #include <stdbool.h>
32 #include "glheader.h"
33 #include "bufferobj.h"
34 #include "context.h"
35 #include "enums.h"
36 #include "fbobject.h"
37 #include "framebuffer.h"
38 #include "hash.h"
39 #include "image.h"
40 #include "imports.h"
41 #include "macros.h"
42 #include "mfeatures.h"
43 #include "state.h"
44 #include "texcompress.h"
45 #include "texcompress_cpal.h"
46 #include "teximage.h"
47 #include "texobj.h"
48 #include "texstate.h"
49 #include "mtypes.h"
50 #include "glformats.h"
51
52
53 /**
54 * State changes which we care about for glCopyTex[Sub]Image() calls.
55 * In particular, we care about pixel transfer state and buffer state
56 * (such as glReadBuffer to make sure we read from the right renderbuffer).
57 */
58 #define NEW_COPY_TEX_STATE (_NEW_BUFFERS | _NEW_PIXEL)
59
60
61
62 /**
63 * Return the simple base format for a given internal texture format.
64 * For example, given GL_LUMINANCE12_ALPHA4, return GL_LUMINANCE_ALPHA.
65 *
66 * \param ctx GL context.
67 * \param internalFormat the internal texture format token or 1, 2, 3, or 4.
68 *
69 * \return the corresponding \u base internal format (GL_ALPHA, GL_LUMINANCE,
70 * GL_LUMANCE_ALPHA, GL_INTENSITY, GL_RGB, or GL_RGBA), or -1 if invalid enum.
71 *
72 * This is the format which is used during texture application (i.e. the
73 * texture format and env mode determine the arithmetic used.
74 */
75 GLint
76 _mesa_base_tex_format( struct gl_context *ctx, GLint internalFormat )
77 {
78 switch (internalFormat) {
79 case GL_ALPHA:
80 case GL_ALPHA4:
81 case GL_ALPHA8:
82 case GL_ALPHA12:
83 case GL_ALPHA16:
84 return (ctx->API != API_OPENGL_CORE) ? GL_ALPHA : -1;
85 case 1:
86 case GL_LUMINANCE:
87 case GL_LUMINANCE4:
88 case GL_LUMINANCE8:
89 case GL_LUMINANCE12:
90 case GL_LUMINANCE16:
91 return (ctx->API != API_OPENGL_CORE) ? GL_LUMINANCE : -1;
92 case 2:
93 case GL_LUMINANCE_ALPHA:
94 case GL_LUMINANCE4_ALPHA4:
95 case GL_LUMINANCE6_ALPHA2:
96 case GL_LUMINANCE8_ALPHA8:
97 case GL_LUMINANCE12_ALPHA4:
98 case GL_LUMINANCE12_ALPHA12:
99 case GL_LUMINANCE16_ALPHA16:
100 return (ctx->API != API_OPENGL_CORE) ? GL_LUMINANCE_ALPHA : -1;
101 case GL_INTENSITY:
102 case GL_INTENSITY4:
103 case GL_INTENSITY8:
104 case GL_INTENSITY12:
105 case GL_INTENSITY16:
106 return (ctx->API != API_OPENGL_CORE) ? GL_INTENSITY : -1;
107 case 3:
108 return (ctx->API != API_OPENGL_CORE) ? GL_RGB : -1;
109 case GL_RGB:
110 case GL_R3_G3_B2:
111 case GL_RGB4:
112 case GL_RGB5:
113 case GL_RGB8:
114 case GL_RGB10:
115 case GL_RGB12:
116 case GL_RGB16:
117 return GL_RGB;
118 case 4:
119 return (ctx->API != API_OPENGL_CORE) ? GL_RGBA : -1;
120 case GL_RGBA:
121 case GL_RGBA2:
122 case GL_RGBA4:
123 case GL_RGB5_A1:
124 case GL_RGBA8:
125 case GL_RGB10_A2:
126 case GL_RGBA12:
127 case GL_RGBA16:
128 return GL_RGBA;
129 default:
130 ; /* fallthrough */
131 }
132
133 /* GL_BGRA can be an internal format *only* in OpenGL ES (1.x or 2.0).
134 */
135 if (_mesa_is_gles(ctx)) {
136 switch (internalFormat) {
137 case GL_BGRA:
138 return GL_RGBA;
139 default:
140 ; /* fallthrough */
141 }
142 }
143
144 if (ctx->Extensions.ARB_ES2_compatibility) {
145 switch (internalFormat) {
146 case GL_RGB565:
147 return GL_RGB;
148 default:
149 ; /* fallthrough */
150 }
151 }
152
153 if (ctx->Extensions.ARB_depth_texture) {
154 switch (internalFormat) {
155 case GL_DEPTH_COMPONENT:
156 case GL_DEPTH_COMPONENT16:
157 case GL_DEPTH_COMPONENT24:
158 case GL_DEPTH_COMPONENT32:
159 return GL_DEPTH_COMPONENT;
160 default:
161 ; /* fallthrough */
162 }
163 }
164
165 switch (internalFormat) {
166 case GL_COMPRESSED_ALPHA:
167 return GL_ALPHA;
168 case GL_COMPRESSED_LUMINANCE:
169 return GL_LUMINANCE;
170 case GL_COMPRESSED_LUMINANCE_ALPHA:
171 return GL_LUMINANCE_ALPHA;
172 case GL_COMPRESSED_INTENSITY:
173 return GL_INTENSITY;
174 case GL_COMPRESSED_RGB:
175 return GL_RGB;
176 case GL_COMPRESSED_RGBA:
177 return GL_RGBA;
178 default:
179 ; /* fallthrough */
180 }
181
182 if (ctx->Extensions.TDFX_texture_compression_FXT1) {
183 switch (internalFormat) {
184 case GL_COMPRESSED_RGB_FXT1_3DFX:
185 return GL_RGB;
186 case GL_COMPRESSED_RGBA_FXT1_3DFX:
187 return GL_RGBA;
188 default:
189 ; /* fallthrough */
190 }
191 }
192
193 if (ctx->Extensions.EXT_texture_compression_s3tc) {
194 switch (internalFormat) {
195 case GL_COMPRESSED_RGB_S3TC_DXT1_EXT:
196 return GL_RGB;
197 case GL_COMPRESSED_RGBA_S3TC_DXT1_EXT:
198 case GL_COMPRESSED_RGBA_S3TC_DXT3_EXT:
199 case GL_COMPRESSED_RGBA_S3TC_DXT5_EXT:
200 return GL_RGBA;
201 default:
202 ; /* fallthrough */
203 }
204 }
205
206 /* GL_COMPRESSED_RGBA_S3TC_DXT3_ANGLE && GL_COMPRESSED_RGBA_S3TC_DXT5_ANGLE */
207 if (ctx->API == API_OPENGLES2 &&
208 ctx->Extensions.ANGLE_texture_compression_dxt) {
209 switch (internalFormat) {
210 case GL_COMPRESSED_RGBA_S3TC_DXT3_EXT:
211 case GL_COMPRESSED_RGBA_S3TC_DXT5_EXT:
212 return GL_RGBA;
213 default:
214 ; /* fallthrough */
215 }
216 }
217
218 if (ctx->Extensions.S3_s3tc) {
219 switch (internalFormat) {
220 case GL_RGB_S3TC:
221 case GL_RGB4_S3TC:
222 return GL_RGB;
223 case GL_RGBA_S3TC:
224 case GL_RGBA4_S3TC:
225 return GL_RGBA;
226 default:
227 ; /* fallthrough */
228 }
229 }
230
231 if (ctx->Extensions.MESA_ycbcr_texture) {
232 if (internalFormat == GL_YCBCR_MESA)
233 return GL_YCBCR_MESA;
234 }
235
236 if (ctx->Extensions.ARB_texture_float) {
237 switch (internalFormat) {
238 case GL_ALPHA16F_ARB:
239 case GL_ALPHA32F_ARB:
240 return GL_ALPHA;
241 case GL_RGBA16F_ARB:
242 case GL_RGBA32F_ARB:
243 return GL_RGBA;
244 case GL_RGB16F_ARB:
245 case GL_RGB32F_ARB:
246 return GL_RGB;
247 case GL_INTENSITY16F_ARB:
248 case GL_INTENSITY32F_ARB:
249 return GL_INTENSITY;
250 case GL_LUMINANCE16F_ARB:
251 case GL_LUMINANCE32F_ARB:
252 return GL_LUMINANCE;
253 case GL_LUMINANCE_ALPHA16F_ARB:
254 case GL_LUMINANCE_ALPHA32F_ARB:
255 return GL_LUMINANCE_ALPHA;
256 default:
257 ; /* fallthrough */
258 }
259 }
260
261 if (ctx->Extensions.ATI_envmap_bumpmap) {
262 switch (internalFormat) {
263 case GL_DUDV_ATI:
264 case GL_DU8DV8_ATI:
265 return GL_DUDV_ATI;
266 default:
267 ; /* fallthrough */
268 }
269 }
270
271 if (ctx->Extensions.EXT_texture_snorm) {
272 switch (internalFormat) {
273 case GL_RED_SNORM:
274 case GL_R8_SNORM:
275 case GL_R16_SNORM:
276 return GL_RED;
277 case GL_RG_SNORM:
278 case GL_RG8_SNORM:
279 case GL_RG16_SNORM:
280 return GL_RG;
281 case GL_RGB_SNORM:
282 case GL_RGB8_SNORM:
283 case GL_RGB16_SNORM:
284 return GL_RGB;
285 case GL_RGBA_SNORM:
286 case GL_RGBA8_SNORM:
287 case GL_RGBA16_SNORM:
288 return GL_RGBA;
289 case GL_ALPHA_SNORM:
290 case GL_ALPHA8_SNORM:
291 case GL_ALPHA16_SNORM:
292 return GL_ALPHA;
293 case GL_LUMINANCE_SNORM:
294 case GL_LUMINANCE8_SNORM:
295 case GL_LUMINANCE16_SNORM:
296 return GL_LUMINANCE;
297 case GL_LUMINANCE_ALPHA_SNORM:
298 case GL_LUMINANCE8_ALPHA8_SNORM:
299 case GL_LUMINANCE16_ALPHA16_SNORM:
300 return GL_LUMINANCE_ALPHA;
301 case GL_INTENSITY_SNORM:
302 case GL_INTENSITY8_SNORM:
303 case GL_INTENSITY16_SNORM:
304 return GL_INTENSITY;
305 default:
306 ; /* fallthrough */
307 }
308 }
309
310 if (ctx->Extensions.EXT_packed_depth_stencil) {
311 switch (internalFormat) {
312 case GL_DEPTH_STENCIL_EXT:
313 case GL_DEPTH24_STENCIL8_EXT:
314 return GL_DEPTH_STENCIL_EXT;
315 default:
316 ; /* fallthrough */
317 }
318 }
319
320 if (ctx->Extensions.EXT_texture_sRGB) {
321 switch (internalFormat) {
322 case GL_SRGB_EXT:
323 case GL_SRGB8_EXT:
324 case GL_COMPRESSED_SRGB_EXT:
325 case GL_COMPRESSED_SRGB_S3TC_DXT1_EXT:
326 return GL_RGB;
327 case GL_SRGB_ALPHA_EXT:
328 case GL_SRGB8_ALPHA8_EXT:
329 case GL_COMPRESSED_SRGB_ALPHA_EXT:
330 case GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT:
331 case GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT:
332 case GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT:
333 return GL_RGBA;
334 case GL_SLUMINANCE_ALPHA_EXT:
335 case GL_SLUMINANCE8_ALPHA8_EXT:
336 case GL_COMPRESSED_SLUMINANCE_ALPHA_EXT:
337 return GL_LUMINANCE_ALPHA;
338 case GL_SLUMINANCE_EXT:
339 case GL_SLUMINANCE8_EXT:
340 case GL_COMPRESSED_SLUMINANCE_EXT:
341 return GL_LUMINANCE;
342 default:
343 ; /* fallthrough */
344 }
345 }
346
347 if (ctx->Version >= 30 ||
348 ctx->Extensions.EXT_texture_integer) {
349 switch (internalFormat) {
350 case GL_RGBA8UI_EXT:
351 case GL_RGBA16UI_EXT:
352 case GL_RGBA32UI_EXT:
353 case GL_RGBA8I_EXT:
354 case GL_RGBA16I_EXT:
355 case GL_RGBA32I_EXT:
356 case GL_RGB10_A2UI:
357 return GL_RGBA;
358 case GL_RGB8UI_EXT:
359 case GL_RGB16UI_EXT:
360 case GL_RGB32UI_EXT:
361 case GL_RGB8I_EXT:
362 case GL_RGB16I_EXT:
363 case GL_RGB32I_EXT:
364 return GL_RGB;
365 }
366 }
367
368 if (ctx->Extensions.EXT_texture_integer) {
369 switch (internalFormat) {
370 case GL_ALPHA8UI_EXT:
371 case GL_ALPHA16UI_EXT:
372 case GL_ALPHA32UI_EXT:
373 case GL_ALPHA8I_EXT:
374 case GL_ALPHA16I_EXT:
375 case GL_ALPHA32I_EXT:
376 return GL_ALPHA;
377 case GL_INTENSITY8UI_EXT:
378 case GL_INTENSITY16UI_EXT:
379 case GL_INTENSITY32UI_EXT:
380 case GL_INTENSITY8I_EXT:
381 case GL_INTENSITY16I_EXT:
382 case GL_INTENSITY32I_EXT:
383 return GL_INTENSITY;
384 case GL_LUMINANCE8UI_EXT:
385 case GL_LUMINANCE16UI_EXT:
386 case GL_LUMINANCE32UI_EXT:
387 case GL_LUMINANCE8I_EXT:
388 case GL_LUMINANCE16I_EXT:
389 case GL_LUMINANCE32I_EXT:
390 return GL_LUMINANCE;
391 case GL_LUMINANCE_ALPHA8UI_EXT:
392 case GL_LUMINANCE_ALPHA16UI_EXT:
393 case GL_LUMINANCE_ALPHA32UI_EXT:
394 case GL_LUMINANCE_ALPHA8I_EXT:
395 case GL_LUMINANCE_ALPHA16I_EXT:
396 case GL_LUMINANCE_ALPHA32I_EXT:
397 return GL_LUMINANCE_ALPHA;
398 default:
399 ; /* fallthrough */
400 }
401 }
402
403 if (ctx->Extensions.ARB_texture_rg) {
404 switch (internalFormat) {
405 case GL_R16F:
406 /* R16F depends on both ARB_half_float_pixel and ARB_texture_float.
407 */
408 if (!ctx->Extensions.ARB_half_float_pixel)
409 break;
410 /* FALLTHROUGH */
411 case GL_R32F:
412 if (!ctx->Extensions.ARB_texture_float)
413 break;
414 return GL_RED;
415 case GL_R8I:
416 case GL_R8UI:
417 case GL_R16I:
418 case GL_R16UI:
419 case GL_R32I:
420 case GL_R32UI:
421 if (ctx->Version < 30 && !ctx->Extensions.EXT_texture_integer)
422 break;
423 /* FALLTHROUGH */
424 case GL_R8:
425 case GL_R16:
426 case GL_RED:
427 case GL_COMPRESSED_RED:
428 return GL_RED;
429
430 case GL_RG16F:
431 /* RG16F depends on both ARB_half_float_pixel and ARB_texture_float.
432 */
433 if (!ctx->Extensions.ARB_half_float_pixel)
434 break;
435 /* FALLTHROUGH */
436 case GL_RG32F:
437 if (!ctx->Extensions.ARB_texture_float)
438 break;
439 return GL_RG;
440 case GL_RG8I:
441 case GL_RG8UI:
442 case GL_RG16I:
443 case GL_RG16UI:
444 case GL_RG32I:
445 case GL_RG32UI:
446 if (ctx->Version < 30 && !ctx->Extensions.EXT_texture_integer)
447 break;
448 /* FALLTHROUGH */
449 case GL_RG:
450 case GL_RG8:
451 case GL_RG16:
452 case GL_COMPRESSED_RG:
453 return GL_RG;
454 default:
455 ; /* fallthrough */
456 }
457 }
458
459 if (ctx->Extensions.EXT_texture_shared_exponent) {
460 switch (internalFormat) {
461 case GL_RGB9_E5_EXT:
462 return GL_RGB;
463 default:
464 ; /* fallthrough */
465 }
466 }
467
468 if (ctx->Extensions.EXT_packed_float) {
469 switch (internalFormat) {
470 case GL_R11F_G11F_B10F_EXT:
471 return GL_RGB;
472 default:
473 ; /* fallthrough */
474 }
475 }
476
477 if (ctx->Extensions.ARB_depth_buffer_float) {
478 switch (internalFormat) {
479 case GL_DEPTH_COMPONENT32F:
480 return GL_DEPTH_COMPONENT;
481 case GL_DEPTH32F_STENCIL8:
482 return GL_DEPTH_STENCIL;
483 default:
484 ; /* fallthrough */
485 }
486 }
487
488 if (ctx->Extensions.ARB_texture_compression_rgtc) {
489 switch (internalFormat) {
490 case GL_COMPRESSED_RED_RGTC1:
491 case GL_COMPRESSED_SIGNED_RED_RGTC1:
492 return GL_RED;
493 case GL_COMPRESSED_RG_RGTC2:
494 case GL_COMPRESSED_SIGNED_RG_RGTC2:
495 return GL_RG;
496 default:
497 ; /* fallthrough */
498 }
499 }
500
501 if (ctx->Extensions.EXT_texture_compression_latc) {
502 switch (internalFormat) {
503 case GL_COMPRESSED_LUMINANCE_LATC1_EXT:
504 case GL_COMPRESSED_SIGNED_LUMINANCE_LATC1_EXT:
505 return GL_LUMINANCE;
506 case GL_COMPRESSED_LUMINANCE_ALPHA_LATC2_EXT:
507 case GL_COMPRESSED_SIGNED_LUMINANCE_ALPHA_LATC2_EXT:
508 return GL_LUMINANCE_ALPHA;
509 default:
510 ; /* fallthrough */
511 }
512 }
513
514 if (ctx->Extensions.ATI_texture_compression_3dc) {
515 switch (internalFormat) {
516 case GL_COMPRESSED_LUMINANCE_ALPHA_3DC_ATI:
517 return GL_LUMINANCE_ALPHA;
518 default:
519 ; /* fallthrough */
520 }
521 }
522
523 if (ctx->Extensions.OES_compressed_ETC1_RGB8_texture) {
524 switch (internalFormat) {
525 case GL_ETC1_RGB8_OES:
526 return GL_RGB;
527 default:
528 ; /* fallthrough */
529 }
530 }
531
532 if (ctx->API == API_OPENGLES) {
533 switch (internalFormat) {
534 case GL_PALETTE4_RGB8_OES:
535 case GL_PALETTE4_R5_G6_B5_OES:
536 case GL_PALETTE8_RGB8_OES:
537 case GL_PALETTE8_R5_G6_B5_OES:
538 return GL_RGB;
539 case GL_PALETTE4_RGBA8_OES:
540 case GL_PALETTE8_RGB5_A1_OES:
541 case GL_PALETTE4_RGBA4_OES:
542 case GL_PALETTE4_RGB5_A1_OES:
543 case GL_PALETTE8_RGBA8_OES:
544 case GL_PALETTE8_RGBA4_OES:
545 return GL_RGBA;
546 default:
547 ; /* fallthrough */
548 }
549 }
550
551 return -1; /* error */
552 }
553
554
555 /**
556 * For cube map faces, return a face index in [0,5].
557 * For other targets return 0;
558 */
559 GLuint
560 _mesa_tex_target_to_face(GLenum target)
561 {
562 if (_mesa_is_cube_face(target))
563 return (GLuint) target - (GLuint) GL_TEXTURE_CUBE_MAP_POSITIVE_X;
564 else
565 return 0;
566 }
567
568
569
570 /**
571 * Install gl_texture_image in a gl_texture_object according to the target
572 * and level parameters.
573 *
574 * \param tObj texture object.
575 * \param target texture target.
576 * \param level image level.
577 * \param texImage texture image.
578 */
579 static void
580 set_tex_image(struct gl_texture_object *tObj,
581 GLenum target, GLint level,
582 struct gl_texture_image *texImage)
583 {
584 const GLuint face = _mesa_tex_target_to_face(target);
585
586 ASSERT(tObj);
587 ASSERT(texImage);
588 if (target == GL_TEXTURE_RECTANGLE_NV || target == GL_TEXTURE_EXTERNAL_OES)
589 assert(level == 0);
590
591 tObj->Image[face][level] = texImage;
592
593 /* Set the 'back' pointer */
594 texImage->TexObject = tObj;
595 texImage->Level = level;
596 texImage->Face = face;
597 }
598
599
600 /**
601 * Allocate a texture image structure.
602 *
603 * Called via ctx->Driver.NewTextureImage() unless overriden by a device
604 * driver.
605 *
606 * \return a pointer to gl_texture_image struct with all fields initialized to
607 * zero.
608 */
609 struct gl_texture_image *
610 _mesa_new_texture_image( struct gl_context *ctx )
611 {
612 (void) ctx;
613 return CALLOC_STRUCT(gl_texture_image);
614 }
615
616
617 /**
618 * Free a gl_texture_image and associated data.
619 * This function is a fallback called via ctx->Driver.DeleteTextureImage().
620 *
621 * \param texImage texture image.
622 *
623 * Free the texture image structure and the associated image data.
624 */
625 void
626 _mesa_delete_texture_image(struct gl_context *ctx,
627 struct gl_texture_image *texImage)
628 {
629 /* Free texImage->Data and/or any other driver-specific texture
630 * image storage.
631 */
632 ASSERT(ctx->Driver.FreeTextureImageBuffer);
633 ctx->Driver.FreeTextureImageBuffer( ctx, texImage );
634 free(texImage);
635 }
636
637
638 /**
639 * Test if a target is a proxy target.
640 *
641 * \param target texture target.
642 *
643 * \return GL_TRUE if the target is a proxy target, GL_FALSE otherwise.
644 */
645 GLboolean
646 _mesa_is_proxy_texture(GLenum target)
647 {
648 /*
649 * NUM_TEXTURE_TARGETS should match number of terms below, except there's no
650 * proxy for GL_TEXTURE_BUFFER and GL_TEXTURE_EXTERNAL_OES.
651 */
652 assert(NUM_TEXTURE_TARGETS == 7 + 2);
653
654 return (target == GL_PROXY_TEXTURE_1D ||
655 target == GL_PROXY_TEXTURE_2D ||
656 target == GL_PROXY_TEXTURE_3D ||
657 target == GL_PROXY_TEXTURE_CUBE_MAP_ARB ||
658 target == GL_PROXY_TEXTURE_RECTANGLE_NV ||
659 target == GL_PROXY_TEXTURE_1D_ARRAY_EXT ||
660 target == GL_PROXY_TEXTURE_2D_ARRAY_EXT);
661 }
662
663
664 /**
665 * Return the proxy target which corresponds to the given texture target
666 */
667 GLenum
668 _mesa_get_proxy_target(GLenum target)
669 {
670 switch (target) {
671 case GL_TEXTURE_1D:
672 case GL_PROXY_TEXTURE_1D:
673 return GL_PROXY_TEXTURE_1D;
674 case GL_TEXTURE_2D:
675 case GL_PROXY_TEXTURE_2D:
676 return GL_PROXY_TEXTURE_2D;
677 case GL_TEXTURE_3D:
678 case GL_PROXY_TEXTURE_3D:
679 return GL_PROXY_TEXTURE_3D;
680 case GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB:
681 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB:
682 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB:
683 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB:
684 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB:
685 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB:
686 case GL_TEXTURE_CUBE_MAP_ARB:
687 case GL_PROXY_TEXTURE_CUBE_MAP_ARB:
688 return GL_PROXY_TEXTURE_CUBE_MAP_ARB;
689 case GL_TEXTURE_RECTANGLE_NV:
690 case GL_PROXY_TEXTURE_RECTANGLE_NV:
691 return GL_PROXY_TEXTURE_RECTANGLE_NV;
692 case GL_TEXTURE_1D_ARRAY_EXT:
693 case GL_PROXY_TEXTURE_1D_ARRAY_EXT:
694 return GL_PROXY_TEXTURE_1D_ARRAY_EXT;
695 case GL_TEXTURE_2D_ARRAY_EXT:
696 case GL_PROXY_TEXTURE_2D_ARRAY_EXT:
697 return GL_PROXY_TEXTURE_2D_ARRAY_EXT;
698 default:
699 _mesa_problem(NULL, "unexpected target in _mesa_get_proxy_target()");
700 return 0;
701 }
702 }
703
704
705 /**
706 * Get the texture object that corresponds to the target of the given
707 * texture unit. The target should have already been checked for validity.
708 *
709 * \param ctx GL context.
710 * \param texUnit texture unit.
711 * \param target texture target.
712 *
713 * \return pointer to the texture object on success, or NULL on failure.
714 */
715 struct gl_texture_object *
716 _mesa_select_tex_object(struct gl_context *ctx,
717 const struct gl_texture_unit *texUnit,
718 GLenum target)
719 {
720 const GLboolean arrayTex = (ctx->Extensions.MESA_texture_array ||
721 ctx->Extensions.EXT_texture_array);
722
723 switch (target) {
724 case GL_TEXTURE_1D:
725 return texUnit->CurrentTex[TEXTURE_1D_INDEX];
726 case GL_PROXY_TEXTURE_1D:
727 return ctx->Texture.ProxyTex[TEXTURE_1D_INDEX];
728 case GL_TEXTURE_2D:
729 return texUnit->CurrentTex[TEXTURE_2D_INDEX];
730 case GL_PROXY_TEXTURE_2D:
731 return ctx->Texture.ProxyTex[TEXTURE_2D_INDEX];
732 case GL_TEXTURE_3D:
733 return texUnit->CurrentTex[TEXTURE_3D_INDEX];
734 case GL_PROXY_TEXTURE_3D:
735 return ctx->Texture.ProxyTex[TEXTURE_3D_INDEX];
736 case GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB:
737 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB:
738 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB:
739 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB:
740 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB:
741 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB:
742 case GL_TEXTURE_CUBE_MAP_ARB:
743 return ctx->Extensions.ARB_texture_cube_map
744 ? texUnit->CurrentTex[TEXTURE_CUBE_INDEX] : NULL;
745 case GL_PROXY_TEXTURE_CUBE_MAP_ARB:
746 return ctx->Extensions.ARB_texture_cube_map
747 ? ctx->Texture.ProxyTex[TEXTURE_CUBE_INDEX] : NULL;
748 case GL_TEXTURE_RECTANGLE_NV:
749 return ctx->Extensions.NV_texture_rectangle
750 ? texUnit->CurrentTex[TEXTURE_RECT_INDEX] : NULL;
751 case GL_PROXY_TEXTURE_RECTANGLE_NV:
752 return ctx->Extensions.NV_texture_rectangle
753 ? ctx->Texture.ProxyTex[TEXTURE_RECT_INDEX] : NULL;
754 case GL_TEXTURE_1D_ARRAY_EXT:
755 return arrayTex ? texUnit->CurrentTex[TEXTURE_1D_ARRAY_INDEX] : NULL;
756 case GL_PROXY_TEXTURE_1D_ARRAY_EXT:
757 return arrayTex ? ctx->Texture.ProxyTex[TEXTURE_1D_ARRAY_INDEX] : NULL;
758 case GL_TEXTURE_2D_ARRAY_EXT:
759 return arrayTex ? texUnit->CurrentTex[TEXTURE_2D_ARRAY_INDEX] : NULL;
760 case GL_PROXY_TEXTURE_2D_ARRAY_EXT:
761 return arrayTex ? ctx->Texture.ProxyTex[TEXTURE_2D_ARRAY_INDEX] : NULL;
762 case GL_TEXTURE_BUFFER:
763 return _mesa_is_desktop_gl(ctx)
764 && ctx->Extensions.ARB_texture_buffer_object
765 ? texUnit->CurrentTex[TEXTURE_BUFFER_INDEX] : NULL;
766 case GL_TEXTURE_EXTERNAL_OES:
767 return ctx->Extensions.OES_EGL_image_external
768 ? texUnit->CurrentTex[TEXTURE_EXTERNAL_INDEX] : NULL;
769 default:
770 _mesa_problem(NULL, "bad target in _mesa_select_tex_object()");
771 return NULL;
772 }
773 }
774
775
776 /**
777 * Return pointer to texture object for given target on current texture unit.
778 */
779 struct gl_texture_object *
780 _mesa_get_current_tex_object(struct gl_context *ctx, GLenum target)
781 {
782 struct gl_texture_unit *texUnit = _mesa_get_current_tex_unit(ctx);
783 return _mesa_select_tex_object(ctx, texUnit, target);
784 }
785
786
787 /**
788 * Get a texture image pointer from a texture object, given a texture
789 * target and mipmap level. The target and level parameters should
790 * have already been error-checked.
791 *
792 * \param ctx GL context.
793 * \param texObj texture unit.
794 * \param target texture target.
795 * \param level image level.
796 *
797 * \return pointer to the texture image structure, or NULL on failure.
798 */
799 struct gl_texture_image *
800 _mesa_select_tex_image(struct gl_context *ctx,
801 const struct gl_texture_object *texObj,
802 GLenum target, GLint level)
803 {
804 const GLuint face = _mesa_tex_target_to_face(target);
805
806 ASSERT(texObj);
807 ASSERT(level >= 0);
808 ASSERT(level < MAX_TEXTURE_LEVELS);
809
810 return texObj->Image[face][level];
811 }
812
813
814 /**
815 * Like _mesa_select_tex_image() but if the image doesn't exist, allocate
816 * it and install it. Only return NULL if passed a bad parameter or run
817 * out of memory.
818 */
819 struct gl_texture_image *
820 _mesa_get_tex_image(struct gl_context *ctx, struct gl_texture_object *texObj,
821 GLenum target, GLint level)
822 {
823 struct gl_texture_image *texImage;
824
825 if (!texObj)
826 return NULL;
827
828 texImage = _mesa_select_tex_image(ctx, texObj, target, level);
829 if (!texImage) {
830 texImage = ctx->Driver.NewTextureImage(ctx);
831 if (!texImage) {
832 _mesa_error(ctx, GL_OUT_OF_MEMORY, "texture image allocation");
833 return NULL;
834 }
835
836 set_tex_image(texObj, target, level, texImage);
837 }
838
839 return texImage;
840 }
841
842
843 /**
844 * Return pointer to the specified proxy texture image.
845 * Note that proxy textures are per-context, not per-texture unit.
846 * \return pointer to texture image or NULL if invalid target, invalid
847 * level, or out of memory.
848 */
849 static struct gl_texture_image *
850 get_proxy_tex_image(struct gl_context *ctx, GLenum target, GLint level)
851 {
852 struct gl_texture_image *texImage;
853 GLuint texIndex;
854
855 if (level < 0)
856 return NULL;
857
858 switch (target) {
859 case GL_PROXY_TEXTURE_1D:
860 if (level >= ctx->Const.MaxTextureLevels)
861 return NULL;
862 texIndex = TEXTURE_1D_INDEX;
863 break;
864 case GL_PROXY_TEXTURE_2D:
865 if (level >= ctx->Const.MaxTextureLevels)
866 return NULL;
867 texIndex = TEXTURE_2D_INDEX;
868 break;
869 case GL_PROXY_TEXTURE_3D:
870 if (level >= ctx->Const.Max3DTextureLevels)
871 return NULL;
872 texIndex = TEXTURE_3D_INDEX;
873 break;
874 case GL_PROXY_TEXTURE_CUBE_MAP:
875 if (level >= ctx->Const.MaxCubeTextureLevels)
876 return NULL;
877 texIndex = TEXTURE_CUBE_INDEX;
878 break;
879 case GL_PROXY_TEXTURE_RECTANGLE_NV:
880 if (level > 0)
881 return NULL;
882 texIndex = TEXTURE_RECT_INDEX;
883 break;
884 case GL_PROXY_TEXTURE_1D_ARRAY_EXT:
885 if (level >= ctx->Const.MaxTextureLevels)
886 return NULL;
887 texIndex = TEXTURE_1D_ARRAY_INDEX;
888 break;
889 case GL_PROXY_TEXTURE_2D_ARRAY_EXT:
890 if (level >= ctx->Const.MaxTextureLevels)
891 return NULL;
892 texIndex = TEXTURE_2D_ARRAY_INDEX;
893 break;
894 default:
895 return NULL;
896 }
897
898 texImage = ctx->Texture.ProxyTex[texIndex]->Image[0][level];
899 if (!texImage) {
900 texImage = ctx->Driver.NewTextureImage(ctx);
901 if (!texImage) {
902 _mesa_error(ctx, GL_OUT_OF_MEMORY, "proxy texture allocation");
903 return NULL;
904 }
905 ctx->Texture.ProxyTex[texIndex]->Image[0][level] = texImage;
906 /* Set the 'back' pointer */
907 texImage->TexObject = ctx->Texture.ProxyTex[texIndex];
908 }
909 return texImage;
910 }
911
912
913 /**
914 * Get the maximum number of allowed mipmap levels.
915 *
916 * \param ctx GL context.
917 * \param target texture target.
918 *
919 * \return the maximum number of allowed mipmap levels for the given
920 * texture target, or zero if passed a bad target.
921 *
922 * \sa gl_constants.
923 */
924 GLint
925 _mesa_max_texture_levels(struct gl_context *ctx, GLenum target)
926 {
927 switch (target) {
928 case GL_TEXTURE_1D:
929 case GL_PROXY_TEXTURE_1D:
930 case GL_TEXTURE_2D:
931 case GL_PROXY_TEXTURE_2D:
932 return ctx->Const.MaxTextureLevels;
933 case GL_TEXTURE_3D:
934 case GL_PROXY_TEXTURE_3D:
935 return ctx->Const.Max3DTextureLevels;
936 case GL_TEXTURE_CUBE_MAP:
937 case GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB:
938 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB:
939 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB:
940 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB:
941 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB:
942 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB:
943 case GL_PROXY_TEXTURE_CUBE_MAP_ARB:
944 return ctx->Extensions.ARB_texture_cube_map
945 ? ctx->Const.MaxCubeTextureLevels : 0;
946 case GL_TEXTURE_RECTANGLE_NV:
947 case GL_PROXY_TEXTURE_RECTANGLE_NV:
948 return ctx->Extensions.NV_texture_rectangle ? 1 : 0;
949 case GL_TEXTURE_1D_ARRAY_EXT:
950 case GL_PROXY_TEXTURE_1D_ARRAY_EXT:
951 case GL_TEXTURE_2D_ARRAY_EXT:
952 case GL_PROXY_TEXTURE_2D_ARRAY_EXT:
953 return (ctx->Extensions.MESA_texture_array ||
954 ctx->Extensions.EXT_texture_array)
955 ? ctx->Const.MaxTextureLevels : 0;
956 case GL_TEXTURE_BUFFER:
957 return _mesa_is_desktop_gl(ctx)
958 && ctx->Extensions.ARB_texture_buffer_object
959 ? 1 : 0;
960 case GL_TEXTURE_EXTERNAL_OES:
961 /* fall-through */
962 default:
963 return 0; /* bad target */
964 }
965 }
966
967
968 /**
969 * Return number of dimensions per mipmap level for the given texture target.
970 */
971 GLint
972 _mesa_get_texture_dimensions(GLenum target)
973 {
974 switch (target) {
975 case GL_TEXTURE_1D:
976 case GL_PROXY_TEXTURE_1D:
977 return 1;
978 case GL_TEXTURE_2D:
979 case GL_TEXTURE_RECTANGLE:
980 case GL_TEXTURE_CUBE_MAP:
981 case GL_PROXY_TEXTURE_2D:
982 case GL_PROXY_TEXTURE_RECTANGLE:
983 case GL_PROXY_TEXTURE_CUBE_MAP:
984 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
985 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
986 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
987 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
988 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
989 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
990 case GL_TEXTURE_1D_ARRAY:
991 case GL_PROXY_TEXTURE_1D_ARRAY:
992 case GL_TEXTURE_EXTERNAL_OES:
993 return 2;
994 case GL_TEXTURE_3D:
995 case GL_PROXY_TEXTURE_3D:
996 case GL_TEXTURE_2D_ARRAY:
997 case GL_PROXY_TEXTURE_2D_ARRAY:
998 return 3;
999 case GL_TEXTURE_BUFFER:
1000 /* fall-through */
1001 default:
1002 _mesa_problem(NULL, "invalid target 0x%x in get_texture_dimensions()",
1003 target);
1004 return 2;
1005 }
1006 }
1007
1008
1009
1010
1011 #if 000 /* not used anymore */
1012 /*
1013 * glTexImage[123]D can accept a NULL image pointer. In this case we
1014 * create a texture image with unspecified image contents per the OpenGL
1015 * spec.
1016 */
1017 static GLubyte *
1018 make_null_texture(GLint width, GLint height, GLint depth, GLenum format)
1019 {
1020 const GLint components = _mesa_components_in_format(format);
1021 const GLint numPixels = width * height * depth;
1022 GLubyte *data = (GLubyte *) malloc(numPixels * components * sizeof(GLubyte));
1023
1024 #ifdef DEBUG
1025 /*
1026 * Let's see if anyone finds this. If glTexImage2D() is called with
1027 * a NULL image pointer then load the texture image with something
1028 * interesting instead of leaving it indeterminate.
1029 */
1030 if (data) {
1031 static const char message[8][32] = {
1032 " X X XXXXX XXX X ",
1033 " XX XX X X X X X ",
1034 " X X X X X X X ",
1035 " X X XXXX XXX XXXXX ",
1036 " X X X X X X ",
1037 " X X X X X X X ",
1038 " X X XXXXX XXX X X ",
1039 " "
1040 };
1041
1042 GLubyte *imgPtr = data;
1043 GLint h, i, j, k;
1044 for (h = 0; h < depth; h++) {
1045 for (i = 0; i < height; i++) {
1046 GLint srcRow = 7 - (i % 8);
1047 for (j = 0; j < width; j++) {
1048 GLint srcCol = j % 32;
1049 GLubyte texel = (message[srcRow][srcCol]=='X') ? 255 : 70;
1050 for (k = 0; k < components; k++) {
1051 *imgPtr++ = texel;
1052 }
1053 }
1054 }
1055 }
1056 }
1057 #endif
1058
1059 return data;
1060 }
1061 #endif
1062
1063
1064
1065 /**
1066 * Set the size and format-related fields of a gl_texture_image struct
1067 * to zero. This is used when a proxy texture test fails.
1068 */
1069 static void
1070 clear_teximage_fields(struct gl_texture_image *img)
1071 {
1072 ASSERT(img);
1073 img->_BaseFormat = 0;
1074 img->InternalFormat = 0;
1075 img->Border = 0;
1076 img->Width = 0;
1077 img->Height = 0;
1078 img->Depth = 0;
1079 img->Width2 = 0;
1080 img->Height2 = 0;
1081 img->Depth2 = 0;
1082 img->WidthLog2 = 0;
1083 img->HeightLog2 = 0;
1084 img->DepthLog2 = 0;
1085 img->TexFormat = MESA_FORMAT_NONE;
1086 }
1087
1088
1089 /**
1090 * Initialize basic fields of the gl_texture_image struct.
1091 *
1092 * \param ctx GL context.
1093 * \param img texture image structure to be initialized.
1094 * \param width image width.
1095 * \param height image height.
1096 * \param depth image depth.
1097 * \param border image border.
1098 * \param internalFormat internal format.
1099 * \param format the actual hardware format (one of MESA_FORMAT_*)
1100 *
1101 * Fills in the fields of \p img with the given information.
1102 * Note: width, height and depth include the border.
1103 */
1104 void
1105 _mesa_init_teximage_fields(struct gl_context *ctx,
1106 struct gl_texture_image *img,
1107 GLsizei width, GLsizei height, GLsizei depth,
1108 GLint border, GLenum internalFormat,
1109 gl_format format)
1110 {
1111 GLenum target;
1112 ASSERT(img);
1113 ASSERT(width >= 0);
1114 ASSERT(height >= 0);
1115 ASSERT(depth >= 0);
1116
1117 target = img->TexObject->Target;
1118 img->_BaseFormat = _mesa_base_tex_format( ctx, internalFormat );
1119 ASSERT(img->_BaseFormat > 0);
1120 img->InternalFormat = internalFormat;
1121 img->Border = border;
1122 img->Width = width;
1123 img->Height = height;
1124 img->Depth = depth;
1125
1126 img->Width2 = width - 2 * border; /* == 1 << img->WidthLog2; */
1127 img->WidthLog2 = _mesa_logbase2(img->Width2);
1128
1129 switch(target) {
1130 case GL_TEXTURE_1D:
1131 case GL_TEXTURE_BUFFER:
1132 case GL_PROXY_TEXTURE_1D:
1133 if (height == 0)
1134 img->Height2 = 0;
1135 else
1136 img->Height2 = 1;
1137 img->HeightLog2 = 0;
1138 if (depth == 0)
1139 img->Depth2 = 0;
1140 else
1141 img->Depth2 = 1;
1142 img->DepthLog2 = 0;
1143 break;
1144 case GL_TEXTURE_1D_ARRAY:
1145 case GL_PROXY_TEXTURE_1D_ARRAY:
1146 img->Height2 = height; /* no border */
1147 img->HeightLog2 = 0; /* not used */
1148 if (depth == 0)
1149 img->Depth2 = 0;
1150 else
1151 img->Depth2 = 1;
1152 img->DepthLog2 = 0;
1153 break;
1154 case GL_TEXTURE_2D:
1155 case GL_TEXTURE_RECTANGLE:
1156 case GL_TEXTURE_CUBE_MAP:
1157 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
1158 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
1159 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
1160 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
1161 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
1162 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
1163 case GL_TEXTURE_EXTERNAL_OES:
1164 case GL_PROXY_TEXTURE_2D:
1165 case GL_PROXY_TEXTURE_RECTANGLE:
1166 case GL_PROXY_TEXTURE_CUBE_MAP:
1167 img->Height2 = height - 2 * border; /* == 1 << img->HeightLog2; */
1168 img->HeightLog2 = _mesa_logbase2(img->Height2);
1169 if (depth == 0)
1170 img->Depth2 = 0;
1171 else
1172 img->Depth2 = 1;
1173 img->DepthLog2 = 0;
1174 break;
1175 case GL_TEXTURE_2D_ARRAY:
1176 case GL_PROXY_TEXTURE_2D_ARRAY:
1177 img->Height2 = height - 2 * border; /* == 1 << img->HeightLog2; */
1178 img->HeightLog2 = _mesa_logbase2(img->Height2);
1179 img->Depth2 = depth; /* no border */
1180 img->DepthLog2 = 0; /* not used */
1181 break;
1182 case GL_TEXTURE_3D:
1183 case GL_PROXY_TEXTURE_3D:
1184 img->Height2 = height - 2 * border; /* == 1 << img->HeightLog2; */
1185 img->HeightLog2 = _mesa_logbase2(img->Height2);
1186 img->Depth2 = depth - 2 * border; /* == 1 << img->DepthLog2; */
1187 img->DepthLog2 = _mesa_logbase2(img->Depth2);
1188 break;
1189 default:
1190 _mesa_problem(NULL, "invalid target 0x%x in _mesa_init_teximage_fields()",
1191 target);
1192 }
1193
1194 img->MaxLog2 = MAX2(img->WidthLog2, img->HeightLog2);
1195 img->TexFormat = format;
1196 }
1197
1198
1199 /**
1200 * Free and clear fields of the gl_texture_image struct.
1201 *
1202 * \param ctx GL context.
1203 * \param texImage texture image structure to be cleared.
1204 *
1205 * After the call, \p texImage will have no data associated with it. Its
1206 * fields are cleared so that its parent object will test incomplete.
1207 */
1208 void
1209 _mesa_clear_texture_image(struct gl_context *ctx,
1210 struct gl_texture_image *texImage)
1211 {
1212 ctx->Driver.FreeTextureImageBuffer(ctx, texImage);
1213 clear_teximage_fields(texImage);
1214 }
1215
1216
1217 /**
1218 * Check the width, height, depth and border of a texture image are legal.
1219 * Used by all the glTexImage, glCompressedTexImage and glCopyTexImage
1220 * functions.
1221 * The target and level parameters will have already been validated.
1222 * \return GL_TRUE if size is OK, GL_FALSE otherwise.
1223 */
1224 GLboolean
1225 _mesa_legal_texture_dimensions(struct gl_context *ctx, GLenum target,
1226 GLint level, GLint width, GLint height,
1227 GLint depth, GLint border)
1228 {
1229 GLint maxSize;
1230
1231 switch (target) {
1232 case GL_TEXTURE_1D:
1233 case GL_PROXY_TEXTURE_1D:
1234 maxSize = 1 << (ctx->Const.MaxTextureLevels - 1); /* level zero size */
1235 maxSize >>= level; /* level size */
1236 if (width < 2 * border || width > 2 * border + maxSize)
1237 return GL_FALSE;
1238 if (!ctx->Extensions.ARB_texture_non_power_of_two) {
1239 if (width > 0 && !_mesa_is_pow_two(width - 2 * border))
1240 return GL_FALSE;
1241 }
1242 return GL_TRUE;
1243
1244 case GL_TEXTURE_2D:
1245 case GL_PROXY_TEXTURE_2D:
1246 maxSize = 1 << (ctx->Const.MaxTextureLevels - 1);
1247 maxSize >>= level;
1248 if (width < 2 * border || width > 2 * border + maxSize)
1249 return GL_FALSE;
1250 if (height < 2 * border || height > 2 * border + maxSize)
1251 return GL_FALSE;
1252 if (!ctx->Extensions.ARB_texture_non_power_of_two) {
1253 if (width > 0 && !_mesa_is_pow_two(width - 2 * border))
1254 return GL_FALSE;
1255 if (height > 0 && !_mesa_is_pow_two(height - 2 * border))
1256 return GL_FALSE;
1257 }
1258 return GL_TRUE;
1259
1260 case GL_TEXTURE_3D:
1261 case GL_PROXY_TEXTURE_3D:
1262 maxSize = 1 << (ctx->Const.Max3DTextureLevels - 1);
1263 maxSize >>= level;
1264 if (width < 2 * border || width > 2 * border + maxSize)
1265 return GL_FALSE;
1266 if (height < 2 * border || height > 2 * border + maxSize)
1267 return GL_FALSE;
1268 if (depth < 2 * border || depth > 2 * border + maxSize)
1269 return GL_FALSE;
1270 if (!ctx->Extensions.ARB_texture_non_power_of_two) {
1271 if (width > 0 && !_mesa_is_pow_two(width - 2 * border))
1272 return GL_FALSE;
1273 if (height > 0 && !_mesa_is_pow_two(height - 2 * border))
1274 return GL_FALSE;
1275 if (depth > 0 && !_mesa_is_pow_two(depth - 2 * border))
1276 return GL_FALSE;
1277 }
1278 return GL_TRUE;
1279
1280 case GL_TEXTURE_RECTANGLE_NV:
1281 case GL_PROXY_TEXTURE_RECTANGLE_NV:
1282 if (level != 0)
1283 return GL_FALSE;
1284 maxSize = ctx->Const.MaxTextureRectSize;
1285 if (width < 0 || width > maxSize)
1286 return GL_FALSE;
1287 if (height < 0 || height > maxSize)
1288 return GL_FALSE;
1289 return GL_TRUE;
1290
1291 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
1292 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
1293 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
1294 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
1295 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
1296 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
1297 case GL_PROXY_TEXTURE_CUBE_MAP_ARB:
1298 maxSize = 1 << (ctx->Const.MaxCubeTextureLevels - 1);
1299 maxSize >>= level;
1300 if (width < 2 * border || width > 2 * border + maxSize)
1301 return GL_FALSE;
1302 if (height < 2 * border || height > 2 * border + maxSize)
1303 return GL_FALSE;
1304 if (!ctx->Extensions.ARB_texture_non_power_of_two) {
1305 if (width > 0 && !_mesa_is_pow_two(width - 2 * border))
1306 return GL_FALSE;
1307 if (height > 0 && !_mesa_is_pow_two(height - 2 * border))
1308 return GL_FALSE;
1309 }
1310 return GL_TRUE;
1311
1312 case GL_TEXTURE_1D_ARRAY_EXT:
1313 case GL_PROXY_TEXTURE_1D_ARRAY_EXT:
1314 maxSize = 1 << (ctx->Const.MaxTextureLevels - 1);
1315 maxSize >>= level;
1316 if (width < 2 * border || width > 2 * border + maxSize)
1317 return GL_FALSE;
1318 if (height < 1 || height > ctx->Const.MaxArrayTextureLayers)
1319 return GL_FALSE;
1320 if (!ctx->Extensions.ARB_texture_non_power_of_two) {
1321 if (width > 0 && !_mesa_is_pow_two(width - 2 * border))
1322 return GL_FALSE;
1323 }
1324 return GL_TRUE;
1325
1326 case GL_TEXTURE_2D_ARRAY_EXT:
1327 case GL_PROXY_TEXTURE_2D_ARRAY_EXT:
1328 maxSize = 1 << (ctx->Const.MaxTextureLevels - 1);
1329 maxSize >>= level;
1330 if (width < 2 * border || width > 2 * border + maxSize)
1331 return GL_FALSE;
1332 if (height < 2 * border || height > 2 * border + maxSize)
1333 return GL_FALSE;
1334 if (depth < 1 || depth > ctx->Const.MaxArrayTextureLayers)
1335 return GL_FALSE;
1336 if (!ctx->Extensions.ARB_texture_non_power_of_two) {
1337 if (width > 0 && !_mesa_is_pow_two(width - 2 * border))
1338 return GL_FALSE;
1339 if (height > 0 && !_mesa_is_pow_two(height - 2 * border))
1340 return GL_FALSE;
1341 }
1342 return GL_TRUE;
1343
1344 default:
1345 _mesa_problem(ctx, "Invalid target in _mesa_legal_texture_dimensions()");
1346 return GL_FALSE;
1347 }
1348 }
1349
1350
1351 /**
1352 * Do error checking of xoffset, yoffset, zoffset, width, height and depth
1353 * for glTexSubImage, glCopyTexSubImage and glCompressedTexSubImage.
1354 * \param destImage the destination texture image.
1355 * \return GL_TRUE if error found, GL_FALSE otherwise.
1356 */
1357 static GLboolean
1358 error_check_subtexture_dimensions(struct gl_context *ctx,
1359 const char *function, GLuint dims,
1360 const struct gl_texture_image *destImage,
1361 GLint xoffset, GLint yoffset, GLint zoffset,
1362 GLsizei subWidth, GLsizei subHeight,
1363 GLsizei subDepth)
1364 {
1365 const GLenum target = destImage->TexObject->Target;
1366 GLuint bw, bh;
1367
1368 /* Check size */
1369 if (subWidth < 0) {
1370 _mesa_error(ctx, GL_INVALID_VALUE,
1371 "%s%dD(width=%d)", function, dims, subWidth);
1372 return GL_TRUE;
1373 }
1374
1375 if (dims > 1 && subHeight < 0) {
1376 _mesa_error(ctx, GL_INVALID_VALUE,
1377 "%s%dD(height=%d)", function, dims, subHeight);
1378 return GL_TRUE;
1379 }
1380
1381 if (dims > 2 && subDepth < 0) {
1382 _mesa_error(ctx, GL_INVALID_VALUE,
1383 "%s%dD(depth=%d)", function, dims, subDepth);
1384 return GL_TRUE;
1385 }
1386
1387 /* check xoffset and width */
1388 if (xoffset < -destImage->Border) {
1389 _mesa_error(ctx, GL_INVALID_VALUE, "%s%dD(xoffset)",
1390 function, dims);
1391 return GL_TRUE;
1392 }
1393
1394 if (xoffset + subWidth > destImage->Width) {
1395 _mesa_error(ctx, GL_INVALID_VALUE, "%s%dD(xoffset+width)",
1396 function, dims);
1397 return GL_TRUE;
1398 }
1399
1400 /* check yoffset and height */
1401 if (dims > 1) {
1402 GLint yBorder = (target == GL_TEXTURE_1D_ARRAY) ? 0 : destImage->Border;
1403 if (yoffset < -yBorder) {
1404 _mesa_error(ctx, GL_INVALID_VALUE, "%s%dD(yoffset)",
1405 function, dims);
1406 return GL_TRUE;
1407 }
1408 if (yoffset + subHeight > destImage->Height) {
1409 _mesa_error(ctx, GL_INVALID_VALUE, "%s%dD(yoffset+height)",
1410 function, dims);
1411 return GL_TRUE;
1412 }
1413 }
1414
1415 /* check zoffset and depth */
1416 if (dims > 2) {
1417 GLint zBorder = (target == GL_TEXTURE_2D_ARRAY) ? 0 : destImage->Border;
1418 if (zoffset < -zBorder) {
1419 _mesa_error(ctx, GL_INVALID_VALUE, "%s3D(zoffset)", function);
1420 return GL_TRUE;
1421 }
1422 if (zoffset + subDepth > (GLint) destImage->Depth) {
1423 _mesa_error(ctx, GL_INVALID_VALUE, "%s3D(zoffset+depth)", function);
1424 return GL_TRUE;
1425 }
1426 }
1427
1428 /*
1429 * The OpenGL spec (and GL_ARB_texture_compression) says only whole
1430 * compressed texture images can be updated. But, that restriction may be
1431 * relaxed for particular compressed formats. At this time, all the
1432 * compressed formats supported by Mesa allow sub-textures to be updated
1433 * along compressed block boundaries.
1434 */
1435 _mesa_get_format_block_size(destImage->TexFormat, &bw, &bh);
1436
1437 if (bw != 1 || bh != 1) {
1438 /* offset must be multiple of block size */
1439 if ((xoffset % bw != 0) || (yoffset % bh != 0)) {
1440 _mesa_error(ctx, GL_INVALID_OPERATION,
1441 "%s%dD(xoffset = %d, yoffset = %d)",
1442 function, dims, xoffset, yoffset);
1443 return GL_TRUE;
1444 }
1445
1446 /* size must be multiple of bw by bh or equal to whole texture size */
1447 if ((subWidth % bw != 0) && subWidth != destImage->Width) {
1448 _mesa_error(ctx, GL_INVALID_OPERATION,
1449 "%s%dD(width = %d)", function, dims, subWidth);
1450 return GL_TRUE;
1451 }
1452
1453 if ((subHeight % bh != 0) && subHeight != destImage->Height) {
1454 _mesa_error(ctx, GL_INVALID_OPERATION,
1455 "%s%dD(height = %d)", function, dims, subHeight);
1456 return GL_TRUE;
1457 }
1458 }
1459
1460 return GL_FALSE;
1461 }
1462
1463
1464
1465
1466 /**
1467 * This is the fallback for Driver.TestProxyTexImage() for doing device-
1468 * specific texture image size checks.
1469 *
1470 * A hardware driver might override this function if, for example, the
1471 * max 3D texture size is 512x512x64 (i.e. not a cube).
1472 *
1473 * Note that width, height, depth == 0 is not an error. However, a
1474 * texture with zero width/height/depth will be considered "incomplete"
1475 * and texturing will effectively be disabled.
1476 *
1477 * \param target any texture target/type
1478 * \param level as passed to glTexImage
1479 * \param format the MESA_FORMAT_x for the tex image
1480 * \param width as passed to glTexImage
1481 * \param height as passed to glTexImage
1482 * \param depth as passed to glTexImage
1483 * \param border as passed to glTexImage
1484 * \return GL_TRUE if the image is acceptable, GL_FALSE if not acceptable.
1485 */
1486 GLboolean
1487 _mesa_test_proxy_teximage(struct gl_context *ctx, GLenum target, GLint level,
1488 gl_format format,
1489 GLint width, GLint height, GLint depth, GLint border)
1490 {
1491 /* We just check if the image size is less than MaxTextureMbytes.
1492 * Some drivers may do more specific checks.
1493 */
1494 uint64_t bytes = _mesa_format_image_size64(format, width, height, depth);
1495 uint64_t mbytes = bytes / (1024 * 1024); /* convert to MB */
1496 mbytes *= _mesa_num_tex_faces(target);
1497 return mbytes <= (uint64_t) ctx->Const.MaxTextureMbytes;
1498 }
1499
1500
1501 /**
1502 * Return true if the format is only valid for glCompressedTexImage.
1503 */
1504 static GLboolean
1505 compressedteximage_only_format(const struct gl_context *ctx, GLenum format)
1506 {
1507 switch (format) {
1508 case GL_ETC1_RGB8_OES:
1509 case GL_PALETTE4_RGB8_OES:
1510 case GL_PALETTE4_RGBA8_OES:
1511 case GL_PALETTE4_R5_G6_B5_OES:
1512 case GL_PALETTE4_RGBA4_OES:
1513 case GL_PALETTE4_RGB5_A1_OES:
1514 case GL_PALETTE8_RGB8_OES:
1515 case GL_PALETTE8_RGBA8_OES:
1516 case GL_PALETTE8_R5_G6_B5_OES:
1517 case GL_PALETTE8_RGBA4_OES:
1518 case GL_PALETTE8_RGB5_A1_OES:
1519 return GL_TRUE;
1520 default:
1521 return GL_FALSE;
1522 }
1523 }
1524
1525
1526 /**
1527 * Helper function to determine whether a target and specific compression
1528 * format are supported.
1529 */
1530 static GLboolean
1531 target_can_be_compressed(const struct gl_context *ctx, GLenum target,
1532 GLenum intFormat)
1533 {
1534 (void) intFormat; /* not used yet */
1535
1536 switch (target) {
1537 case GL_TEXTURE_2D:
1538 case GL_PROXY_TEXTURE_2D:
1539 return GL_TRUE; /* true for any compressed format so far */
1540 case GL_PROXY_TEXTURE_CUBE_MAP:
1541 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
1542 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
1543 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
1544 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
1545 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
1546 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
1547 return ctx->Extensions.ARB_texture_cube_map;
1548 case GL_PROXY_TEXTURE_2D_ARRAY_EXT:
1549 case GL_TEXTURE_2D_ARRAY_EXT:
1550 return (ctx->Extensions.MESA_texture_array ||
1551 ctx->Extensions.EXT_texture_array);
1552 default:
1553 return GL_FALSE;
1554 }
1555 }
1556
1557
1558 /**
1559 * Check if the given texture target value is legal for a
1560 * glTexImage1/2/3D call.
1561 */
1562 static GLboolean
1563 legal_teximage_target(struct gl_context *ctx, GLuint dims, GLenum target)
1564 {
1565 switch (dims) {
1566 case 1:
1567 switch (target) {
1568 case GL_TEXTURE_1D:
1569 case GL_PROXY_TEXTURE_1D:
1570 return _mesa_is_desktop_gl(ctx);
1571 default:
1572 return GL_FALSE;
1573 }
1574 case 2:
1575 switch (target) {
1576 case GL_TEXTURE_2D:
1577 return GL_TRUE;
1578 case GL_PROXY_TEXTURE_2D:
1579 return _mesa_is_desktop_gl(ctx);
1580 case GL_PROXY_TEXTURE_CUBE_MAP:
1581 return _mesa_is_desktop_gl(ctx)
1582 && ctx->Extensions.ARB_texture_cube_map;
1583 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
1584 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
1585 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
1586 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
1587 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
1588 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
1589 return ctx->Extensions.ARB_texture_cube_map;
1590 case GL_TEXTURE_RECTANGLE_NV:
1591 case GL_PROXY_TEXTURE_RECTANGLE_NV:
1592 return _mesa_is_desktop_gl(ctx)
1593 && ctx->Extensions.NV_texture_rectangle;
1594 case GL_TEXTURE_1D_ARRAY_EXT:
1595 case GL_PROXY_TEXTURE_1D_ARRAY_EXT:
1596 return _mesa_is_desktop_gl(ctx)
1597 && (ctx->Extensions.MESA_texture_array ||
1598 ctx->Extensions.EXT_texture_array);
1599 default:
1600 return GL_FALSE;
1601 }
1602 case 3:
1603 switch (target) {
1604 case GL_TEXTURE_3D:
1605 return GL_TRUE;
1606 case GL_PROXY_TEXTURE_3D:
1607 return _mesa_is_desktop_gl(ctx);
1608 case GL_TEXTURE_2D_ARRAY_EXT:
1609 return (_mesa_is_desktop_gl(ctx)
1610 && (ctx->Extensions.MESA_texture_array ||
1611 ctx->Extensions.EXT_texture_array))
1612 || _mesa_is_gles3(ctx);
1613 case GL_PROXY_TEXTURE_2D_ARRAY_EXT:
1614 return _mesa_is_desktop_gl(ctx)
1615 && (ctx->Extensions.MESA_texture_array ||
1616 ctx->Extensions.EXT_texture_array);
1617 default:
1618 return GL_FALSE;
1619 }
1620 default:
1621 _mesa_problem(ctx, "invalid dims=%u in legal_teximage_target()", dims);
1622 return GL_FALSE;
1623 }
1624 }
1625
1626
1627 /**
1628 * Check if the given texture target value is legal for a
1629 * glTexSubImage, glCopyTexSubImage or glCopyTexImage call.
1630 * The difference compared to legal_teximage_target() above is that
1631 * proxy targets are not supported.
1632 */
1633 static GLboolean
1634 legal_texsubimage_target(struct gl_context *ctx, GLuint dims, GLenum target)
1635 {
1636 switch (dims) {
1637 case 1:
1638 return _mesa_is_desktop_gl(ctx) && target == GL_TEXTURE_1D;
1639 case 2:
1640 switch (target) {
1641 case GL_TEXTURE_2D:
1642 return GL_TRUE;
1643 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
1644 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
1645 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
1646 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
1647 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
1648 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
1649 return ctx->Extensions.ARB_texture_cube_map;
1650 case GL_TEXTURE_RECTANGLE_NV:
1651 return _mesa_is_desktop_gl(ctx)
1652 && ctx->Extensions.NV_texture_rectangle;
1653 case GL_TEXTURE_1D_ARRAY_EXT:
1654 return _mesa_is_desktop_gl(ctx)
1655 && (ctx->Extensions.MESA_texture_array ||
1656 ctx->Extensions.EXT_texture_array);
1657 default:
1658 return GL_FALSE;
1659 }
1660 case 3:
1661 switch (target) {
1662 case GL_TEXTURE_3D:
1663 return GL_TRUE;
1664 case GL_TEXTURE_2D_ARRAY_EXT:
1665 return (_mesa_is_desktop_gl(ctx)
1666 && (ctx->Extensions.MESA_texture_array ||
1667 ctx->Extensions.EXT_texture_array))
1668 || _mesa_is_gles3(ctx);
1669 default:
1670 return GL_FALSE;
1671 }
1672 default:
1673 _mesa_problem(ctx, "invalid dims=%u in legal_texsubimage_target()",
1674 dims);
1675 return GL_FALSE;
1676 }
1677 }
1678
1679
1680 /**
1681 * Helper function to determine if a texture object is mutable (in terms
1682 * of GL_ARB_texture_storage).
1683 */
1684 static GLboolean
1685 mutable_tex_object(struct gl_context *ctx, GLenum target)
1686 {
1687 if (ctx->Extensions.ARB_texture_storage) {
1688 struct gl_texture_object *texObj =
1689 _mesa_get_current_tex_object(ctx, target);
1690 return !texObj->Immutable;
1691 }
1692 return GL_TRUE;
1693 }
1694
1695
1696 /**
1697 * Return expected size of a compressed texture.
1698 */
1699 static GLuint
1700 compressed_tex_size(GLsizei width, GLsizei height, GLsizei depth,
1701 GLenum glformat)
1702 {
1703 gl_format mesaFormat = _mesa_glenum_to_compressed_format(glformat);
1704 return _mesa_format_image_size(mesaFormat, width, height, depth);
1705 }
1706
1707
1708 /**
1709 * Test the glTexImage[123]D() parameters for errors.
1710 *
1711 * \param ctx GL context.
1712 * \param dimensions texture image dimensions (must be 1, 2 or 3).
1713 * \param target texture target given by the user (already validated).
1714 * \param level image level given by the user.
1715 * \param internalFormat internal format given by the user.
1716 * \param format pixel data format given by the user.
1717 * \param type pixel data type given by the user.
1718 * \param width image width given by the user.
1719 * \param height image height given by the user.
1720 * \param depth image depth given by the user.
1721 * \param border image border given by the user.
1722 *
1723 * \return GL_TRUE if a error is found, GL_FALSE otherwise
1724 *
1725 * Verifies each of the parameters against the constants specified in
1726 * __struct gl_contextRec::Const and the supported extensions, and according
1727 * to the OpenGL specification.
1728 * Note that we don't fully error-check the width, height, depth values
1729 * here. That's done in _mesa_legal_texture_dimensions() which is used
1730 * by several other GL entrypoints. Plus, texture dims have a special
1731 * interaction with proxy textures.
1732 */
1733 static GLboolean
1734 texture_error_check( struct gl_context *ctx,
1735 GLuint dimensions, GLenum target,
1736 GLint level, GLint internalFormat,
1737 GLenum format, GLenum type,
1738 GLint width, GLint height,
1739 GLint depth, GLint border )
1740 {
1741 GLboolean colorFormat;
1742 GLenum err;
1743
1744 /* Even though there are no color-index textures, we still have to support
1745 * uploading color-index data and remapping it to RGB via the
1746 * GL_PIXEL_MAP_I_TO_[RGBA] tables.
1747 */
1748 const GLboolean indexFormat = (format == GL_COLOR_INDEX);
1749
1750 /* Note: for proxy textures, some error conditions immediately generate
1751 * a GL error in the usual way. But others do not generate a GL error.
1752 * Instead, they cause the width, height, depth, format fields of the
1753 * texture image to be zeroed-out. The GL spec seems to indicate that the
1754 * zero-out behaviour is only used in cases related to memory allocation.
1755 */
1756
1757 /* level check */
1758 if (level < 0 || level >= _mesa_max_texture_levels(ctx, target)) {
1759 _mesa_error(ctx, GL_INVALID_VALUE,
1760 "glTexImage%dD(level=%d)", dimensions, level);
1761 return GL_TRUE;
1762 }
1763
1764 /* Check border */
1765 if (border < 0 || border > 1 ||
1766 ((ctx->API != API_OPENGL ||
1767 target == GL_TEXTURE_RECTANGLE_NV ||
1768 target == GL_PROXY_TEXTURE_RECTANGLE_NV) && border != 0)) {
1769 _mesa_error(ctx, GL_INVALID_VALUE,
1770 "glTexImage%dD(border=%d)", dimensions, border);
1771 return GL_TRUE;
1772 }
1773
1774 if (width < 0 || height < 0 || depth < 0) {
1775 _mesa_error(ctx, GL_INVALID_VALUE,
1776 "glTexImage%dD(width, height or depth < 0)", dimensions);
1777 return GL_TRUE;
1778 }
1779
1780 /* OpenGL ES 1.x and OpenGL ES 2.0 impose additional restrictions on the
1781 * combinations of format, internalFormat, and type that can be used.
1782 * Formats and types that require additional extensions (e.g., GL_FLOAT
1783 * requires GL_OES_texture_float) are filtered elsewhere.
1784 */
1785 if (_mesa_is_gles(ctx) && !_mesa_is_gles3(ctx)) {
1786 if (format != internalFormat) {
1787 _mesa_error(ctx, GL_INVALID_OPERATION,
1788 "glTexImage%dD(format = %s, internalFormat = %s)",
1789 dimensions,
1790 _mesa_lookup_enum_by_nr(format),
1791 _mesa_lookup_enum_by_nr(internalFormat));
1792 return GL_TRUE;
1793 }
1794
1795 err = _mesa_es_error_check_format_and_type(format, type, dimensions);
1796 if (err != GL_NO_ERROR) {
1797 _mesa_error(ctx, err,
1798 "glTexImage%dD(format = %s, type = %s)",
1799 dimensions,
1800 _mesa_lookup_enum_by_nr(format),
1801 _mesa_lookup_enum_by_nr(type));
1802 return GL_TRUE;
1803 }
1804 }
1805
1806 if ((target == GL_PROXY_TEXTURE_CUBE_MAP_ARB ||
1807 _mesa_is_cube_face(target)) && width != height) {
1808 _mesa_error(ctx, GL_INVALID_VALUE,
1809 "glTexImage2D(cube width != height)");
1810 return GL_TRUE;
1811 }
1812
1813 /* Check internalFormat */
1814 if (_mesa_base_tex_format(ctx, internalFormat) < 0) {
1815 _mesa_error(ctx, GL_INVALID_VALUE,
1816 "glTexImage%dD(internalFormat=%s)",
1817 dimensions, _mesa_lookup_enum_by_nr(internalFormat));
1818 return GL_TRUE;
1819 }
1820
1821 /* Check incoming image format and type */
1822 err = _mesa_error_check_format_and_type(ctx, format, type);
1823 if (err != GL_NO_ERROR) {
1824 _mesa_error(ctx, err,
1825 "glTexImage%dD(incompatible format 0x%x, type 0x%x)",
1826 dimensions, format, type);
1827 return GL_TRUE;
1828 }
1829
1830 /* make sure internal format and format basically agree */
1831 colorFormat = _mesa_is_color_format(format);
1832 if ((_mesa_is_color_format(internalFormat) && !colorFormat && !indexFormat) ||
1833 (_mesa_is_depth_format(internalFormat) != _mesa_is_depth_format(format)) ||
1834 (_mesa_is_ycbcr_format(internalFormat) != _mesa_is_ycbcr_format(format)) ||
1835 (_mesa_is_depthstencil_format(internalFormat) != _mesa_is_depthstencil_format(format)) ||
1836 (_mesa_is_dudv_format(internalFormat) != _mesa_is_dudv_format(format))) {
1837 _mesa_error(ctx, GL_INVALID_OPERATION,
1838 "glTexImage%dD(incompatible internalFormat 0x%x, format 0x%x)",
1839 dimensions, internalFormat, format);
1840 return GL_TRUE;
1841 }
1842
1843 /* additional checks for ycbcr textures */
1844 if (internalFormat == GL_YCBCR_MESA) {
1845 ASSERT(ctx->Extensions.MESA_ycbcr_texture);
1846 if (type != GL_UNSIGNED_SHORT_8_8_MESA &&
1847 type != GL_UNSIGNED_SHORT_8_8_REV_MESA) {
1848 char message[100];
1849 _mesa_snprintf(message, sizeof(message),
1850 "glTexImage%dD(format/type YCBCR mismatch)",
1851 dimensions);
1852 _mesa_error(ctx, GL_INVALID_ENUM, "%s", message);
1853 return GL_TRUE; /* error */
1854 }
1855 if (target != GL_TEXTURE_2D &&
1856 target != GL_PROXY_TEXTURE_2D &&
1857 target != GL_TEXTURE_RECTANGLE_NV &&
1858 target != GL_PROXY_TEXTURE_RECTANGLE_NV) {
1859 _mesa_error(ctx, GL_INVALID_ENUM,
1860 "glTexImage%dD(bad target for YCbCr texture)",
1861 dimensions);
1862 return GL_TRUE;
1863 }
1864 if (border != 0) {
1865 char message[100];
1866 _mesa_snprintf(message, sizeof(message),
1867 "glTexImage%dD(format=GL_YCBCR_MESA and border=%d)",
1868 dimensions, border);
1869 _mesa_error(ctx, GL_INVALID_VALUE, "%s", message);
1870 return GL_TRUE;
1871 }
1872 }
1873
1874 /* additional checks for depth textures */
1875 if (_mesa_base_tex_format(ctx, internalFormat) == GL_DEPTH_COMPONENT) {
1876 /* Only 1D, 2D, rect, array and cube textures supported, not 3D
1877 * Cubemaps are only supported for GL version > 3.0 or with EXT_gpu_shader4 */
1878 if (target != GL_TEXTURE_1D &&
1879 target != GL_PROXY_TEXTURE_1D &&
1880 target != GL_TEXTURE_2D &&
1881 target != GL_PROXY_TEXTURE_2D &&
1882 target != GL_TEXTURE_1D_ARRAY &&
1883 target != GL_PROXY_TEXTURE_1D_ARRAY &&
1884 target != GL_TEXTURE_2D_ARRAY &&
1885 target != GL_PROXY_TEXTURE_2D_ARRAY &&
1886 target != GL_TEXTURE_RECTANGLE_ARB &&
1887 target != GL_PROXY_TEXTURE_RECTANGLE_ARB &&
1888 !((_mesa_is_cube_face(target) || target == GL_PROXY_TEXTURE_CUBE_MAP) &&
1889 (ctx->Version >= 30 || ctx->Extensions.EXT_gpu_shader4))) {
1890 _mesa_error(ctx, GL_INVALID_ENUM,
1891 "glTexImage%dD(bad target for depth texture)",
1892 dimensions);
1893 return GL_TRUE;
1894 }
1895 }
1896
1897 /* additional checks for compressed textures */
1898 if (_mesa_is_compressed_format(ctx, internalFormat)) {
1899 if (!target_can_be_compressed(ctx, target, internalFormat)) {
1900 _mesa_error(ctx, GL_INVALID_ENUM,
1901 "glTexImage%dD(target can't be compressed)", dimensions);
1902 return GL_TRUE;
1903 }
1904 if (compressedteximage_only_format(ctx, internalFormat)) {
1905 _mesa_error(ctx, GL_INVALID_OPERATION,
1906 "glTexImage%dD(no compression for format)", dimensions);
1907 return GL_TRUE;
1908 }
1909 if (border != 0) {
1910 _mesa_error(ctx, GL_INVALID_OPERATION,
1911 "glTexImage%dD(border!=0)", dimensions);
1912 return GL_TRUE;
1913 }
1914 }
1915
1916 /* additional checks for integer textures */
1917 if ((ctx->Version >= 30 || ctx->Extensions.EXT_texture_integer) &&
1918 (_mesa_is_enum_format_integer(format) !=
1919 _mesa_is_enum_format_integer(internalFormat))) {
1920 _mesa_error(ctx, GL_INVALID_OPERATION,
1921 "glTexImage%dD(integer/non-integer format mismatch)",
1922 dimensions);
1923 return GL_TRUE;
1924 }
1925
1926 if (!mutable_tex_object(ctx, target)) {
1927 _mesa_error(ctx, GL_INVALID_OPERATION,
1928 "glTexImage%dD(immutable texture)", dimensions);
1929 return GL_TRUE;
1930 }
1931
1932 /* if we get here, the parameters are OK */
1933 return GL_FALSE;
1934 }
1935
1936
1937 /**
1938 * Error checking for glCompressedTexImage[123]D().
1939 * Note that the width, height and depth values are not fully error checked
1940 * here.
1941 * \return GL_TRUE if a error is found, GL_FALSE otherwise
1942 */
1943 static GLenum
1944 compressed_texture_error_check(struct gl_context *ctx, GLint dimensions,
1945 GLenum target, GLint level,
1946 GLenum internalFormat, GLsizei width,
1947 GLsizei height, GLsizei depth, GLint border,
1948 GLsizei imageSize)
1949 {
1950 const GLint maxLevels = _mesa_max_texture_levels(ctx, target);
1951 GLint expectedSize;
1952 GLenum error = GL_NO_ERROR;
1953 char *reason = ""; /* no error */
1954
1955 if (!target_can_be_compressed(ctx, target, internalFormat)) {
1956 reason = "target";
1957 error = GL_INVALID_ENUM;
1958 goto error;
1959 }
1960
1961 /* This will detect any invalid internalFormat value */
1962 if (!_mesa_is_compressed_format(ctx, internalFormat)) {
1963 reason = "internalFormat";
1964 error = GL_INVALID_ENUM;
1965 goto error;
1966 }
1967
1968 switch (internalFormat) {
1969 #if FEATURE_ES
1970 case GL_PALETTE4_RGB8_OES:
1971 case GL_PALETTE4_RGBA8_OES:
1972 case GL_PALETTE4_R5_G6_B5_OES:
1973 case GL_PALETTE4_RGBA4_OES:
1974 case GL_PALETTE4_RGB5_A1_OES:
1975 case GL_PALETTE8_RGB8_OES:
1976 case GL_PALETTE8_RGBA8_OES:
1977 case GL_PALETTE8_R5_G6_B5_OES:
1978 case GL_PALETTE8_RGBA4_OES:
1979 case GL_PALETTE8_RGB5_A1_OES:
1980 _mesa_cpal_compressed_format_type(internalFormat, &choose_format,
1981 &choose_type);
1982 proxy_format = choose_format;
1983
1984 /* check level (note that level should be zero or less!) */
1985 if (level > 0 || level < -maxLevels) {
1986 reason = "level";
1987 error = GL_INVALID_VALUE;
1988 goto error;
1989 }
1990
1991 if (dimensions != 2) {
1992 reason = "compressed paletted textures must be 2D";
1993 error = GL_INVALID_OPERATION;
1994 goto error;
1995 }
1996
1997 /* Figure out the expected texture size (in bytes). This will be
1998 * checked against the actual size later.
1999 */
2000 expectedSize = _mesa_cpal_compressed_size(level, internalFormat,
2001 width, height);
2002
2003 /* This is for the benefit of the TestProxyTexImage below. It expects
2004 * level to be non-negative. OES_compressed_paletted_texture uses a
2005 * weird mechanism where the level specified to glCompressedTexImage2D
2006 * is -(n-1) number of levels in the texture, and the data specifies the
2007 * complete mipmap stack. This is done to ensure the palette is the
2008 * same for all levels.
2009 */
2010 level = -level;
2011 break;
2012 #endif
2013
2014 default:
2015 /* check level */
2016 if (level < 0 || level >= maxLevels) {
2017 reason = "level";
2018 error = GL_INVALID_VALUE;
2019 goto error;
2020 }
2021
2022 /* Figure out the expected texture size (in bytes). This will be
2023 * checked against the actual size later.
2024 */
2025 expectedSize = compressed_tex_size(width, height, depth, internalFormat);
2026 break;
2027 }
2028
2029 /* This should really never fail */
2030 if (_mesa_base_tex_format(ctx, internalFormat) < 0) {
2031 reason = "internalFormat";
2032 error = GL_INVALID_ENUM;
2033 goto error;
2034 }
2035
2036 /* No compressed formats support borders at this time */
2037 if (border != 0) {
2038 reason = "border != 0";
2039 error = GL_INVALID_VALUE;
2040 goto error;
2041 }
2042
2043 /* For cube map, width must equal height */
2044 if ((target == GL_PROXY_TEXTURE_CUBE_MAP_ARB ||
2045 _mesa_is_cube_face(target)) && width != height) {
2046 reason = "width != height";
2047 error = GL_INVALID_VALUE;
2048 goto error;
2049 }
2050
2051 /* check image size in bytes */
2052 if (expectedSize != imageSize) {
2053 /* Per GL_ARB_texture_compression: GL_INVALID_VALUE is generated [...]
2054 * if <imageSize> is not consistent with the format, dimensions, and
2055 * contents of the specified image.
2056 */
2057 reason = "imageSize inconsistant with width/height/format";
2058 error = GL_INVALID_VALUE;
2059 goto error;
2060 }
2061
2062 if (!mutable_tex_object(ctx, target)) {
2063 reason = "immutable texture";
2064 error = GL_INVALID_OPERATION;
2065 goto error;
2066 }
2067
2068 return GL_FALSE;
2069
2070 error:
2071 _mesa_error(ctx, error, "glCompressedTexImage%dD(%s)", dimensions, reason);
2072 return GL_TRUE;
2073 }
2074
2075
2076
2077 /**
2078 * Test glTexSubImage[123]D() parameters for errors.
2079 *
2080 * \param ctx GL context.
2081 * \param dimensions texture image dimensions (must be 1, 2 or 3).
2082 * \param target texture target given by the user (already validated)
2083 * \param level image level given by the user.
2084 * \param xoffset sub-image x offset given by the user.
2085 * \param yoffset sub-image y offset given by the user.
2086 * \param zoffset sub-image z offset given by the user.
2087 * \param format pixel data format given by the user.
2088 * \param type pixel data type given by the user.
2089 * \param width image width given by the user.
2090 * \param height image height given by the user.
2091 * \param depth image depth given by the user.
2092 *
2093 * \return GL_TRUE if an error was detected, or GL_FALSE if no errors.
2094 *
2095 * Verifies each of the parameters against the constants specified in
2096 * __struct gl_contextRec::Const and the supported extensions, and according
2097 * to the OpenGL specification.
2098 */
2099 static GLboolean
2100 texsubimage_error_check(struct gl_context *ctx, GLuint dimensions,
2101 GLenum target, GLint level,
2102 GLint xoffset, GLint yoffset, GLint zoffset,
2103 GLint width, GLint height, GLint depth,
2104 GLenum format, GLenum type)
2105 {
2106 struct gl_texture_object *texObj;
2107 struct gl_texture_image *texImage;
2108 GLenum err;
2109
2110 /* check target (proxies not allowed) */
2111 if (!legal_texsubimage_target(ctx, dimensions, target)) {
2112 _mesa_error(ctx, GL_INVALID_ENUM, "glTexSubImage%uD(target=%s)",
2113 dimensions, _mesa_lookup_enum_by_nr(target));
2114 return GL_TRUE;
2115 }
2116
2117 /* level check */
2118 if (level < 0 || level >= _mesa_max_texture_levels(ctx, target)) {
2119 _mesa_error(ctx, GL_INVALID_ENUM, "glTexSubImage%uD(level=%d)",
2120 dimensions, level);
2121 return GL_TRUE;
2122 }
2123
2124 /* OpenGL ES 1.x and OpenGL ES 2.0 impose additional restrictions on the
2125 * combinations of format and type that can be used. Formats and types
2126 * that require additional extensions (e.g., GL_FLOAT requires
2127 * GL_OES_texture_float) are filtered elsewhere.
2128 */
2129 if (_mesa_is_gles(ctx) && !_mesa_is_gles3(ctx)) {
2130 err = _mesa_es_error_check_format_and_type(format, type, dimensions);
2131 if (err != GL_NO_ERROR) {
2132 _mesa_error(ctx, err,
2133 "glTexSubImage%dD(format = %s, type = %s)",
2134 dimensions,
2135 _mesa_lookup_enum_by_nr(format),
2136 _mesa_lookup_enum_by_nr(type));
2137 return GL_TRUE;
2138 }
2139 }
2140
2141 err = _mesa_error_check_format_and_type(ctx, format, type);
2142 if (err != GL_NO_ERROR) {
2143 _mesa_error(ctx, err,
2144 "glTexSubImage%dD(incompatible format 0x%x, type 0x%x)",
2145 dimensions, format, type);
2146 return GL_TRUE;
2147 }
2148
2149 /* Get dest texture object / image pointers */
2150 texObj = _mesa_get_current_tex_object(ctx, target);
2151 if (!texObj) {
2152 /* must be out of memory */
2153 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glTexSubImage%dD()", dimensions);
2154 return GL_TRUE;
2155 }
2156
2157 texImage = _mesa_select_tex_image(ctx, texObj, target, level);
2158 if (!texImage) {
2159 /* non-existant texture level */
2160 _mesa_error(ctx, GL_INVALID_OPERATION,
2161 "glTexSubImage%dD(invalid texture image)", dimensions);
2162 return GL_TRUE;
2163 }
2164
2165 if (error_check_subtexture_dimensions(ctx, "glTexSubImage", dimensions,
2166 texImage, xoffset, yoffset, 0,
2167 width, height, 1)) {
2168 return GL_TRUE;
2169 }
2170
2171 if (_mesa_is_format_compressed(texImage->TexFormat)) {
2172 if (compressedteximage_only_format(ctx, texImage->InternalFormat)) {
2173 _mesa_error(ctx, GL_INVALID_OPERATION,
2174 "glTexSubImage%dD(no compression for format)", dimensions);
2175 return GL_TRUE;
2176 }
2177 }
2178
2179 if (ctx->Version >= 30 || ctx->Extensions.EXT_texture_integer) {
2180 /* both source and dest must be integer-valued, or neither */
2181 if (_mesa_is_format_integer_color(texImage->TexFormat) !=
2182 _mesa_is_enum_format_integer(format)) {
2183 _mesa_error(ctx, GL_INVALID_OPERATION,
2184 "glTexSubImage%dD(integer/non-integer format mismatch)",
2185 dimensions);
2186 return GL_TRUE;
2187 }
2188 }
2189
2190 return GL_FALSE;
2191 }
2192
2193
2194 /**
2195 * Test glCopyTexImage[12]D() parameters for errors.
2196 *
2197 * \param ctx GL context.
2198 * \param dimensions texture image dimensions (must be 1, 2 or 3).
2199 * \param target texture target given by the user.
2200 * \param level image level given by the user.
2201 * \param internalFormat internal format given by the user.
2202 * \param width image width given by the user.
2203 * \param height image height given by the user.
2204 * \param border texture border.
2205 *
2206 * \return GL_TRUE if an error was detected, or GL_FALSE if no errors.
2207 *
2208 * Verifies each of the parameters against the constants specified in
2209 * __struct gl_contextRec::Const and the supported extensions, and according
2210 * to the OpenGL specification.
2211 */
2212 static GLboolean
2213 copytexture_error_check( struct gl_context *ctx, GLuint dimensions,
2214 GLenum target, GLint level, GLint internalFormat,
2215 GLint width, GLint height, GLint border )
2216 {
2217 GLint baseFormat;
2218
2219 /* check target */
2220 if (!legal_texsubimage_target(ctx, dimensions, target)) {
2221 _mesa_error(ctx, GL_INVALID_ENUM, "glCopyTexImage%uD(target=%s)",
2222 dimensions, _mesa_lookup_enum_by_nr(target));
2223 return GL_TRUE;
2224 }
2225
2226 /* level check */
2227 if (level < 0 || level >= _mesa_max_texture_levels(ctx, target)) {
2228 _mesa_error(ctx, GL_INVALID_VALUE,
2229 "glCopyTexImage%dD(level=%d)", dimensions, level);
2230 return GL_TRUE;
2231 }
2232
2233 /* Check that the source buffer is complete */
2234 if (_mesa_is_user_fbo(ctx->ReadBuffer)) {
2235 if (ctx->ReadBuffer->_Status == 0) {
2236 _mesa_test_framebuffer_completeness(ctx, ctx->ReadBuffer);
2237 }
2238 if (ctx->ReadBuffer->_Status != GL_FRAMEBUFFER_COMPLETE_EXT) {
2239 _mesa_error(ctx, GL_INVALID_FRAMEBUFFER_OPERATION_EXT,
2240 "glCopyTexImage%dD(invalid readbuffer)", dimensions);
2241 return GL_TRUE;
2242 }
2243
2244 if (ctx->ReadBuffer->Visual.samples > 0) {
2245 _mesa_error(ctx, GL_INVALID_OPERATION,
2246 "glCopyTexImage%dD(multisample FBO)",
2247 dimensions);
2248 return GL_TRUE;
2249 }
2250 }
2251
2252 /* Check border */
2253 if (border < 0 || border > 1 ||
2254 ((ctx->API != API_OPENGL ||
2255 target == GL_TEXTURE_RECTANGLE_NV ||
2256 target == GL_PROXY_TEXTURE_RECTANGLE_NV) && border != 0)) {
2257 _mesa_error(ctx, GL_INVALID_VALUE,
2258 "glCopyTexImage%dD(border=%d)", dimensions, border);
2259 return GL_TRUE;
2260 }
2261
2262 /* OpenGL ES 1.x and OpenGL ES 2.0 impose additional restrictions on the
2263 * internalFormat.
2264 */
2265 if (_mesa_is_gles(ctx) && !_mesa_is_gles3(ctx)) {
2266 switch (internalFormat) {
2267 case GL_ALPHA:
2268 case GL_RGB:
2269 case GL_RGBA:
2270 case GL_LUMINANCE:
2271 case GL_LUMINANCE_ALPHA:
2272 break;
2273 default:
2274 _mesa_error(ctx, GL_INVALID_VALUE,
2275 "glCopyTexImage%dD(internalFormat)", dimensions);
2276 return GL_TRUE;
2277 }
2278 }
2279
2280 baseFormat = _mesa_base_tex_format(ctx, internalFormat);
2281 if (baseFormat < 0) {
2282 _mesa_error(ctx, GL_INVALID_VALUE,
2283 "glCopyTexImage%dD(internalFormat)", dimensions);
2284 return GL_TRUE;
2285 }
2286
2287 if (!_mesa_source_buffer_exists(ctx, baseFormat)) {
2288 _mesa_error(ctx, GL_INVALID_OPERATION,
2289 "glCopyTexImage%dD(missing readbuffer)", dimensions);
2290 return GL_TRUE;
2291 }
2292
2293 /* From the EXT_texture_integer spec:
2294 *
2295 * "INVALID_OPERATION is generated by CopyTexImage* and CopyTexSubImage*
2296 * if the texture internalformat is an integer format and the read color
2297 * buffer is not an integer format, or if the internalformat is not an
2298 * integer format and the read color buffer is an integer format."
2299 */
2300 if (_mesa_is_color_format(internalFormat)) {
2301 struct gl_renderbuffer *rb = ctx->ReadBuffer->_ColorReadBuffer;
2302
2303 if (_mesa_is_enum_format_integer(rb->InternalFormat) !=
2304 _mesa_is_enum_format_integer(internalFormat)) {
2305 _mesa_error(ctx, GL_INVALID_OPERATION,
2306 "glCopyTexImage%dD(integer vs non-integer)", dimensions);
2307 return GL_TRUE;
2308 }
2309 }
2310
2311 if ((target == GL_PROXY_TEXTURE_CUBE_MAP_ARB ||
2312 _mesa_is_cube_face(target)) && width != height) {
2313 _mesa_error(ctx, GL_INVALID_VALUE,
2314 "glTexImage2D(cube width != height)");
2315 return GL_TRUE;
2316 }
2317
2318 if (_mesa_is_compressed_format(ctx, internalFormat)) {
2319 if (!target_can_be_compressed(ctx, target, internalFormat)) {
2320 _mesa_error(ctx, GL_INVALID_ENUM,
2321 "glCopyTexImage%dD(target)", dimensions);
2322 return GL_TRUE;
2323 }
2324 if (compressedteximage_only_format(ctx, internalFormat)) {
2325 _mesa_error(ctx, GL_INVALID_OPERATION,
2326 "glCopyTexImage%dD(no compression for format)", dimensions);
2327 return GL_TRUE;
2328 }
2329 if (border != 0) {
2330 _mesa_error(ctx, GL_INVALID_OPERATION,
2331 "glCopyTexImage%dD(border!=0)", dimensions);
2332 return GL_TRUE;
2333 }
2334 }
2335
2336 if (!mutable_tex_object(ctx, target)) {
2337 _mesa_error(ctx, GL_INVALID_OPERATION,
2338 "glCopyTexImage%dD(immutable texture)", dimensions);
2339 return GL_TRUE;
2340 }
2341
2342 /* if we get here, the parameters are OK */
2343 return GL_FALSE;
2344 }
2345
2346
2347 /**
2348 * Test glCopyTexSubImage[12]D() parameters for errors.
2349 * \return GL_TRUE if an error was detected, or GL_FALSE if no errors.
2350 */
2351 static GLboolean
2352 copytexsubimage_error_check(struct gl_context *ctx, GLuint dimensions,
2353 GLenum target, GLint level,
2354 GLint xoffset, GLint yoffset, GLint zoffset,
2355 GLint width, GLint height)
2356 {
2357 struct gl_texture_object *texObj;
2358 struct gl_texture_image *texImage;
2359
2360 /* Check that the source buffer is complete */
2361 if (_mesa_is_user_fbo(ctx->ReadBuffer)) {
2362 if (ctx->ReadBuffer->_Status == 0) {
2363 _mesa_test_framebuffer_completeness(ctx, ctx->ReadBuffer);
2364 }
2365 if (ctx->ReadBuffer->_Status != GL_FRAMEBUFFER_COMPLETE_EXT) {
2366 _mesa_error(ctx, GL_INVALID_FRAMEBUFFER_OPERATION_EXT,
2367 "glCopyTexImage%dD(invalid readbuffer)", dimensions);
2368 return GL_TRUE;
2369 }
2370
2371 if (ctx->ReadBuffer->Visual.samples > 0) {
2372 _mesa_error(ctx, GL_INVALID_OPERATION,
2373 "glCopyTexSubImage%dD(multisample FBO)",
2374 dimensions);
2375 return GL_TRUE;
2376 }
2377 }
2378
2379 /* check target (proxies not allowed) */
2380 if (!legal_texsubimage_target(ctx, dimensions, target)) {
2381 _mesa_error(ctx, GL_INVALID_ENUM, "glCopyTexSubImage%uD(target=%s)",
2382 dimensions, _mesa_lookup_enum_by_nr(target));
2383 return GL_TRUE;
2384 }
2385
2386 /* Check level */
2387 if (level < 0 || level >= _mesa_max_texture_levels(ctx, target)) {
2388 _mesa_error(ctx, GL_INVALID_VALUE,
2389 "glCopyTexSubImage%dD(level=%d)", dimensions, level);
2390 return GL_TRUE;
2391 }
2392
2393 /* Get dest texture object / image pointers */
2394 texObj = _mesa_get_current_tex_object(ctx, target);
2395 if (!texObj) {
2396 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glCopyTexSubImage%dD()", dimensions);
2397 return GL_TRUE;
2398 }
2399
2400 texImage = _mesa_select_tex_image(ctx, texObj, target, level);
2401 if (!texImage) {
2402 /* destination image does not exist */
2403 _mesa_error(ctx, GL_INVALID_OPERATION,
2404 "glCopyTexSubImage%dD(invalid texture image)", dimensions);
2405 return GL_TRUE;
2406 }
2407
2408 if (error_check_subtexture_dimensions(ctx, "glCopyTexSubImage",
2409 dimensions, texImage,
2410 xoffset, yoffset, zoffset,
2411 width, height, 1)) {
2412 return GL_TRUE;
2413 }
2414
2415 if (_mesa_is_format_compressed(texImage->TexFormat)) {
2416 if (compressedteximage_only_format(ctx, texImage->InternalFormat)) {
2417 _mesa_error(ctx, GL_INVALID_OPERATION,
2418 "glCopyTexSubImage%dD(no compression for format)", dimensions);
2419 return GL_TRUE;
2420 }
2421 }
2422
2423 if (texImage->InternalFormat == GL_YCBCR_MESA) {
2424 _mesa_error(ctx, GL_INVALID_OPERATION, "glCopyTexSubImage2D");
2425 return GL_TRUE;
2426 }
2427
2428 if (!_mesa_source_buffer_exists(ctx, texImage->_BaseFormat)) {
2429 _mesa_error(ctx, GL_INVALID_OPERATION,
2430 "glCopyTexSubImage%dD(missing readbuffer, format=0x%x)",
2431 dimensions, texImage->_BaseFormat);
2432 return GL_TRUE;
2433 }
2434
2435 /* From the EXT_texture_integer spec:
2436 *
2437 * "INVALID_OPERATION is generated by CopyTexImage* and CopyTexSubImage*
2438 * if the texture internalformat is an integer format and the read color
2439 * buffer is not an integer format, or if the internalformat is not an
2440 * integer format and the read color buffer is an integer format."
2441 */
2442 if (_mesa_is_color_format(texImage->InternalFormat)) {
2443 struct gl_renderbuffer *rb = ctx->ReadBuffer->_ColorReadBuffer;
2444
2445 if (_mesa_is_format_integer_color(rb->Format) !=
2446 _mesa_is_format_integer_color(texImage->TexFormat)) {
2447 _mesa_error(ctx, GL_INVALID_OPERATION,
2448 "glCopyTexImage%dD(integer vs non-integer)", dimensions);
2449 return GL_TRUE;
2450 }
2451 }
2452
2453 /* if we get here, the parameters are OK */
2454 return GL_FALSE;
2455 }
2456
2457
2458 /** Callback info for walking over FBO hash table */
2459 struct cb_info
2460 {
2461 struct gl_context *ctx;
2462 struct gl_texture_object *texObj;
2463 GLuint level, face;
2464 };
2465
2466
2467 /**
2468 * Check render to texture callback. Called from _mesa_HashWalk().
2469 */
2470 static void
2471 check_rtt_cb(GLuint key, void *data, void *userData)
2472 {
2473 struct gl_framebuffer *fb = (struct gl_framebuffer *) data;
2474 const struct cb_info *info = (struct cb_info *) userData;
2475 struct gl_context *ctx = info->ctx;
2476 const struct gl_texture_object *texObj = info->texObj;
2477 const GLuint level = info->level, face = info->face;
2478
2479 /* If this is a user-created FBO */
2480 if (_mesa_is_user_fbo(fb)) {
2481 GLuint i;
2482 /* check if any of the FBO's attachments point to 'texObj' */
2483 for (i = 0; i < BUFFER_COUNT; i++) {
2484 struct gl_renderbuffer_attachment *att = fb->Attachment + i;
2485 if (att->Type == GL_TEXTURE &&
2486 att->Texture == texObj &&
2487 att->TextureLevel == level &&
2488 att->CubeMapFace == face) {
2489 ASSERT(_mesa_get_attachment_teximage(att));
2490 /* Tell driver about the new renderbuffer texture */
2491 ctx->Driver.RenderTexture(ctx, ctx->DrawBuffer, att);
2492 /* Mark fb status as indeterminate to force re-validation */
2493 fb->_Status = 0;
2494 }
2495 }
2496 }
2497 }
2498
2499
2500 /**
2501 * When a texture image is specified we have to check if it's bound to
2502 * any framebuffer objects (render to texture) in order to detect changes
2503 * in size or format since that effects FBO completeness.
2504 * Any FBOs rendering into the texture must be re-validated.
2505 */
2506 void
2507 _mesa_update_fbo_texture(struct gl_context *ctx,
2508 struct gl_texture_object *texObj,
2509 GLuint face, GLuint level)
2510 {
2511 /* Only check this texture if it's been marked as RenderToTexture */
2512 if (texObj->_RenderToTexture) {
2513 struct cb_info info;
2514 info.ctx = ctx;
2515 info.texObj = texObj;
2516 info.level = level;
2517 info.face = face;
2518 _mesa_HashWalk(ctx->Shared->FrameBuffers, check_rtt_cb, &info);
2519 }
2520 }
2521
2522
2523 /**
2524 * If the texture object's GenerateMipmap flag is set and we've
2525 * changed the texture base level image, regenerate the rest of the
2526 * mipmap levels now.
2527 */
2528 static inline void
2529 check_gen_mipmap(struct gl_context *ctx, GLenum target,
2530 struct gl_texture_object *texObj, GLint level)
2531 {
2532 ASSERT(target != GL_TEXTURE_CUBE_MAP);
2533 if (texObj->GenerateMipmap &&
2534 level == texObj->BaseLevel &&
2535 level < texObj->MaxLevel) {
2536 ASSERT(ctx->Driver.GenerateMipmap);
2537 ctx->Driver.GenerateMipmap(ctx, target, texObj);
2538 }
2539 }
2540
2541
2542 /** Debug helper: override the user-requested internal format */
2543 static GLenum
2544 override_internal_format(GLenum internalFormat, GLint width, GLint height)
2545 {
2546 #if 0
2547 if (internalFormat == GL_RGBA16F_ARB ||
2548 internalFormat == GL_RGBA32F_ARB) {
2549 printf("Convert rgba float tex to int %d x %d\n", width, height);
2550 return GL_RGBA;
2551 }
2552 else if (internalFormat == GL_RGB16F_ARB ||
2553 internalFormat == GL_RGB32F_ARB) {
2554 printf("Convert rgb float tex to int %d x %d\n", width, height);
2555 return GL_RGB;
2556 }
2557 else if (internalFormat == GL_LUMINANCE_ALPHA16F_ARB ||
2558 internalFormat == GL_LUMINANCE_ALPHA32F_ARB) {
2559 printf("Convert luminance float tex to int %d x %d\n", width, height);
2560 return GL_LUMINANCE_ALPHA;
2561 }
2562 else if (internalFormat == GL_LUMINANCE16F_ARB ||
2563 internalFormat == GL_LUMINANCE32F_ARB) {
2564 printf("Convert luminance float tex to int %d x %d\n", width, height);
2565 return GL_LUMINANCE;
2566 }
2567 else if (internalFormat == GL_ALPHA16F_ARB ||
2568 internalFormat == GL_ALPHA32F_ARB) {
2569 printf("Convert luminance float tex to int %d x %d\n", width, height);
2570 return GL_ALPHA;
2571 }
2572 /*
2573 else if (internalFormat == GL_COMPRESSED_RGBA_S3TC_DXT1_EXT) {
2574 internalFormat = GL_RGBA;
2575 }
2576 */
2577 else {
2578 return internalFormat;
2579 }
2580 #else
2581 return internalFormat;
2582 #endif
2583 }
2584
2585
2586 /**
2587 * Choose the actual hardware format for a texture image.
2588 * Try to use the same format as the previous image level when possible.
2589 * Otherwise, ask the driver for the best format.
2590 * It's important to try to choose a consistant format for all levels
2591 * for efficient texture memory layout/allocation. In particular, this
2592 * comes up during automatic mipmap generation.
2593 */
2594 gl_format
2595 _mesa_choose_texture_format(struct gl_context *ctx,
2596 struct gl_texture_object *texObj,
2597 GLenum target, GLint level,
2598 GLenum internalFormat, GLenum format, GLenum type)
2599 {
2600 gl_format f;
2601
2602 /* see if we've already chosen a format for the previous level */
2603 if (level > 0) {
2604 struct gl_texture_image *prevImage =
2605 _mesa_select_tex_image(ctx, texObj, target, level - 1);
2606 /* See if the prev level is defined and has an internal format which
2607 * matches the new internal format.
2608 */
2609 if (prevImage &&
2610 prevImage->Width > 0 &&
2611 prevImage->InternalFormat == internalFormat) {
2612 /* use the same format */
2613 ASSERT(prevImage->TexFormat != MESA_FORMAT_NONE);
2614 return prevImage->TexFormat;
2615 }
2616 }
2617
2618 /* If the application requested compression to an S3TC format but we don't
2619 * have the DTXn library, force a generic compressed format instead.
2620 */
2621 if (internalFormat != format && format != GL_NONE) {
2622 const GLenum before = internalFormat;
2623
2624 switch (internalFormat) {
2625 case GL_COMPRESSED_RGB_S3TC_DXT1_EXT:
2626 if (!ctx->Mesa_DXTn)
2627 internalFormat = GL_COMPRESSED_RGB;
2628 break;
2629 case GL_COMPRESSED_RGBA_S3TC_DXT1_EXT:
2630 case GL_COMPRESSED_RGBA_S3TC_DXT3_EXT:
2631 case GL_COMPRESSED_RGBA_S3TC_DXT5_EXT:
2632 if (!ctx->Mesa_DXTn)
2633 internalFormat = GL_COMPRESSED_RGBA;
2634 break;
2635 default:
2636 break;
2637 }
2638
2639 if (before != internalFormat) {
2640 _mesa_warning(ctx,
2641 "DXT compression requested (%s), "
2642 "but libtxc_dxtn library not installed. Using %s "
2643 "instead.",
2644 _mesa_lookup_enum_by_nr(before),
2645 _mesa_lookup_enum_by_nr(internalFormat));
2646 }
2647 }
2648
2649 /* choose format from scratch */
2650 f = ctx->Driver.ChooseTextureFormat(ctx, texObj->Target, internalFormat,
2651 format, type);
2652 ASSERT(f != MESA_FORMAT_NONE);
2653 return f;
2654 }
2655
2656 /**
2657 * Adjust pixel unpack params and image dimensions to strip off the
2658 * one-pixel texture border.
2659 *
2660 * Gallium and intel don't support texture borders. They've seldem been used
2661 * and seldom been implemented correctly anyway.
2662 *
2663 * \param unpackNew returns the new pixel unpack parameters
2664 */
2665 static void
2666 strip_texture_border(GLenum target,
2667 GLint *width, GLint *height, GLint *depth,
2668 const struct gl_pixelstore_attrib *unpack,
2669 struct gl_pixelstore_attrib *unpackNew)
2670 {
2671 assert(width);
2672 assert(height);
2673 assert(depth);
2674
2675 *unpackNew = *unpack;
2676
2677 if (unpackNew->RowLength == 0)
2678 unpackNew->RowLength = *width;
2679
2680 if (unpackNew->ImageHeight == 0)
2681 unpackNew->ImageHeight = *height;
2682
2683 assert(*width >= 3);
2684 unpackNew->SkipPixels++; /* skip the border */
2685 *width = *width - 2; /* reduce the width by two border pixels */
2686
2687 /* The min height of a texture with a border is 3 */
2688 if (*height >= 3 && target != GL_TEXTURE_1D_ARRAY) {
2689 unpackNew->SkipRows++; /* skip the border */
2690 *height = *height - 2; /* reduce the height by two border pixels */
2691 }
2692
2693 if (*depth >= 3 && target != GL_TEXTURE_2D_ARRAY) {
2694 unpackNew->SkipImages++; /* skip the border */
2695 *depth = *depth - 2; /* reduce the depth by two border pixels */
2696 }
2697 }
2698
2699
2700 /**
2701 * Common code to implement all the glTexImage1D/2D/3D functions
2702 * as well as glCompressedTexImage1D/2D/3D.
2703 * \param compressed only GL_TRUE for glCompressedTexImage1D/2D/3D calls.
2704 * \param format the user's image format (only used if !compressed)
2705 * \param type the user's image type (only used if !compressed)
2706 * \param imageSize only used for glCompressedTexImage1D/2D/3D calls.
2707 */
2708 static void
2709 teximage(struct gl_context *ctx, GLboolean compressed, GLuint dims,
2710 GLenum target, GLint level, GLint internalFormat,
2711 GLsizei width, GLsizei height, GLsizei depth,
2712 GLint border, GLenum format, GLenum type,
2713 GLsizei imageSize, const GLvoid *pixels)
2714 {
2715 const char *func = compressed ? "glCompressedTexImage" : "glTexImage";
2716 struct gl_pixelstore_attrib unpack_no_border;
2717 const struct gl_pixelstore_attrib *unpack = &ctx->Unpack;
2718 struct gl_texture_object *texObj;
2719 gl_format texFormat;
2720 GLboolean dimensionsOK, sizeOK;
2721
2722 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
2723
2724 if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE)) {
2725 if (compressed)
2726 _mesa_debug(ctx,
2727 "glCompressedTexImage%uD %s %d %s %d %d %d %d %p\n",
2728 dims,
2729 _mesa_lookup_enum_by_nr(target), level,
2730 _mesa_lookup_enum_by_nr(internalFormat),
2731 width, height, depth, border, pixels);
2732 else
2733 _mesa_debug(ctx,
2734 "glTexImage%uD %s %d %s %d %d %d %d %s %s %p\n",
2735 dims,
2736 _mesa_lookup_enum_by_nr(target), level,
2737 _mesa_lookup_enum_by_nr(internalFormat),
2738 width, height, depth, border,
2739 _mesa_lookup_enum_by_nr(format),
2740 _mesa_lookup_enum_by_nr(type), pixels);
2741 }
2742
2743 internalFormat = override_internal_format(internalFormat, width, height);
2744
2745 /* target error checking */
2746 if (!legal_teximage_target(ctx, dims, target)) {
2747 _mesa_error(ctx, GL_INVALID_ENUM, "%s%uD(target=%s)",
2748 func, dims, _mesa_lookup_enum_by_nr(target));
2749 return;
2750 }
2751
2752 /* general error checking */
2753 if (compressed) {
2754 if (compressed_texture_error_check(ctx, dims, target, level,
2755 internalFormat,
2756 width, height, depth,
2757 border, imageSize))
2758 return;
2759 }
2760 else {
2761 if (texture_error_check(ctx, dims, target, level, internalFormat,
2762 format, type, width, height, depth, border))
2763 return;
2764 }
2765
2766 /* Here we convert a cpal compressed image into a regular glTexImage2D
2767 * call by decompressing the texture. If we really want to support cpal
2768 * textures in any driver this would have to be changed.
2769 */
2770 if (ctx->API == API_OPENGLES && compressed && dims == 2) {
2771 switch (internalFormat) {
2772 case GL_PALETTE4_RGB8_OES:
2773 case GL_PALETTE4_RGBA8_OES:
2774 case GL_PALETTE4_R5_G6_B5_OES:
2775 case GL_PALETTE4_RGBA4_OES:
2776 case GL_PALETTE4_RGB5_A1_OES:
2777 case GL_PALETTE8_RGB8_OES:
2778 case GL_PALETTE8_RGBA8_OES:
2779 case GL_PALETTE8_R5_G6_B5_OES:
2780 case GL_PALETTE8_RGBA4_OES:
2781 case GL_PALETTE8_RGB5_A1_OES:
2782 _mesa_cpal_compressed_teximage2d(target, level, internalFormat,
2783 width, height, imageSize, pixels);
2784 return;
2785 }
2786 }
2787
2788 texObj = _mesa_get_current_tex_object(ctx, target);
2789 assert(texObj);
2790
2791 texFormat = _mesa_choose_texture_format(ctx, texObj, target, level,
2792 internalFormat, format, type);
2793 assert(texFormat != MESA_FORMAT_NONE);
2794
2795 /* check that width, height, depth are legal for the mipmap level */
2796 dimensionsOK = _mesa_legal_texture_dimensions(ctx, target, level, width,
2797 height, depth, border);
2798
2799 /* check that the texture won't take too much memory, etc */
2800 sizeOK = ctx->Driver.TestProxyTexImage(ctx, _mesa_get_proxy_target(target),
2801 level, texFormat,
2802 width, height, depth, border);
2803
2804 if (_mesa_is_proxy_texture(target)) {
2805 /* Proxy texture: just clear or set state depending on error checking */
2806 struct gl_texture_image *texImage =
2807 get_proxy_tex_image(ctx, target, level);
2808
2809 if (!texImage)
2810 return; /* GL_OUT_OF_MEMORY already recorded */
2811
2812 if (dimensionsOK && sizeOK) {
2813 _mesa_init_teximage_fields(ctx, texImage, width, height, depth,
2814 border, internalFormat, texFormat);
2815 }
2816 else {
2817 clear_teximage_fields(texImage);
2818 }
2819 }
2820 else {
2821 /* non-proxy target */
2822 const GLuint face = _mesa_tex_target_to_face(target);
2823 struct gl_texture_image *texImage;
2824
2825 if (!dimensionsOK) {
2826 _mesa_error(ctx, GL_INVALID_VALUE,
2827 "glTexImage%uD(invalid width or height or depth)",
2828 dims);
2829 return;
2830 }
2831
2832 if (!sizeOK) {
2833 _mesa_error(ctx, GL_OUT_OF_MEMORY,
2834 "glTexImage%uD(image too large)", dims);
2835 return;
2836 }
2837
2838 /* Allow a hardware driver to just strip out the border, to provide
2839 * reliable but slightly incorrect hardware rendering instead of
2840 * rarely-tested software fallback rendering.
2841 */
2842 if (border && ctx->Const.StripTextureBorder) {
2843 strip_texture_border(target, &width, &height, &depth, unpack,
2844 &unpack_no_border);
2845 border = 0;
2846 unpack = &unpack_no_border;
2847 }
2848
2849 if (ctx->NewState & _NEW_PIXEL)
2850 _mesa_update_state(ctx);
2851
2852 _mesa_lock_texture(ctx, texObj);
2853 {
2854 texImage = _mesa_get_tex_image(ctx, texObj, target, level);
2855
2856 if (!texImage) {
2857 _mesa_error(ctx, GL_OUT_OF_MEMORY, "%s%uD", func, dims);
2858 }
2859 else {
2860 ctx->Driver.FreeTextureImageBuffer(ctx, texImage);
2861
2862 _mesa_init_teximage_fields(ctx, texImage,
2863 width, height, depth,
2864 border, internalFormat, texFormat);
2865
2866 /* Give the texture to the driver. <pixels> may be null. */
2867 if (width > 0 && height > 0 && depth > 0) {
2868 if (compressed) {
2869 ctx->Driver.CompressedTexImage(ctx, dims, texImage,
2870 imageSize, pixels);
2871 }
2872 else {
2873 ctx->Driver.TexImage(ctx, dims, texImage, format,
2874 type, pixels, unpack);
2875 }
2876 }
2877
2878 check_gen_mipmap(ctx, target, texObj, level);
2879
2880 _mesa_update_fbo_texture(ctx, texObj, face, level);
2881
2882 _mesa_dirty_texobj(ctx, texObj, GL_TRUE);
2883 }
2884 }
2885 _mesa_unlock_texture(ctx, texObj);
2886 }
2887 }
2888
2889
2890
2891 /*
2892 * Called from the API. Note that width includes the border.
2893 */
2894 void GLAPIENTRY
2895 _mesa_TexImage1D( GLenum target, GLint level, GLint internalFormat,
2896 GLsizei width, GLint border, GLenum format,
2897 GLenum type, const GLvoid *pixels )
2898 {
2899 GET_CURRENT_CONTEXT(ctx);
2900 teximage(ctx, GL_FALSE, 1, target, level, internalFormat, width, 1, 1,
2901 border, format, type, 0, pixels);
2902 }
2903
2904
2905 void GLAPIENTRY
2906 _mesa_TexImage2D( GLenum target, GLint level, GLint internalFormat,
2907 GLsizei width, GLsizei height, GLint border,
2908 GLenum format, GLenum type,
2909 const GLvoid *pixels )
2910 {
2911 GET_CURRENT_CONTEXT(ctx);
2912 teximage(ctx, GL_FALSE, 2, target, level, internalFormat, width, height, 1,
2913 border, format, type, 0, pixels);
2914 }
2915
2916
2917 /*
2918 * Called by the API or display list executor.
2919 * Note that width and height include the border.
2920 */
2921 void GLAPIENTRY
2922 _mesa_TexImage3D( GLenum target, GLint level, GLint internalFormat,
2923 GLsizei width, GLsizei height, GLsizei depth,
2924 GLint border, GLenum format, GLenum type,
2925 const GLvoid *pixels )
2926 {
2927 GET_CURRENT_CONTEXT(ctx);
2928 teximage(ctx, GL_FALSE, 3, target, level, internalFormat,
2929 width, height, depth,
2930 border, format, type, 0, pixels);
2931 }
2932
2933
2934 void GLAPIENTRY
2935 _mesa_TexImage3DEXT( GLenum target, GLint level, GLenum internalFormat,
2936 GLsizei width, GLsizei height, GLsizei depth,
2937 GLint border, GLenum format, GLenum type,
2938 const GLvoid *pixels )
2939 {
2940 _mesa_TexImage3D(target, level, (GLint) internalFormat, width, height,
2941 depth, border, format, type, pixels);
2942 }
2943
2944
2945 void GLAPIENTRY
2946 _mesa_EGLImageTargetTexture2DOES (GLenum target, GLeglImageOES image)
2947 {
2948 struct gl_texture_object *texObj;
2949 struct gl_texture_image *texImage;
2950 bool valid_target;
2951 GET_CURRENT_CONTEXT(ctx);
2952 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
2953
2954 switch (target) {
2955 case GL_TEXTURE_2D:
2956 valid_target = ctx->Extensions.OES_EGL_image;
2957 break;
2958 case GL_TEXTURE_EXTERNAL_OES:
2959 valid_target = ctx->Extensions.OES_EGL_image_external;
2960 break;
2961 default:
2962 valid_target = false;
2963 break;
2964 }
2965
2966 if (!valid_target) {
2967 _mesa_error(ctx, GL_INVALID_ENUM,
2968 "glEGLImageTargetTexture2D(target=%d)", target);
2969 return;
2970 }
2971
2972 if (ctx->NewState & _NEW_PIXEL)
2973 _mesa_update_state(ctx);
2974
2975 texObj = _mesa_get_current_tex_object(ctx, target);
2976 _mesa_lock_texture(ctx, texObj);
2977
2978 if (texObj->Immutable) {
2979 _mesa_error(ctx, GL_INVALID_OPERATION,
2980 "glEGLImageTargetTexture2D(texture is immutable)");
2981 _mesa_unlock_texture(ctx, texObj);
2982 return;
2983 }
2984
2985 texImage = _mesa_get_tex_image(ctx, texObj, target, 0);
2986 if (!texImage) {
2987 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glEGLImageTargetTexture2D");
2988 } else {
2989 ctx->Driver.FreeTextureImageBuffer(ctx, texImage);
2990
2991 ctx->Driver.EGLImageTargetTexture2D(ctx, target,
2992 texObj, texImage, image);
2993
2994 _mesa_dirty_texobj(ctx, texObj, GL_TRUE);
2995 }
2996 _mesa_unlock_texture(ctx, texObj);
2997
2998 }
2999
3000
3001
3002 /**
3003 * Implement all the glTexSubImage1/2/3D() functions.
3004 */
3005 static void
3006 texsubimage(struct gl_context *ctx, GLuint dims, GLenum target, GLint level,
3007 GLint xoffset, GLint yoffset, GLint zoffset,
3008 GLsizei width, GLsizei height, GLsizei depth,
3009 GLenum format, GLenum type, const GLvoid *pixels )
3010 {
3011 struct gl_texture_object *texObj;
3012 struct gl_texture_image *texImage;
3013
3014 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
3015
3016 if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
3017 _mesa_debug(ctx, "glTexSubImage%uD %s %d %d %d %d %d %d %d %s %s %p\n",
3018 dims,
3019 _mesa_lookup_enum_by_nr(target), level,
3020 xoffset, yoffset, zoffset, width, height, depth,
3021 _mesa_lookup_enum_by_nr(format),
3022 _mesa_lookup_enum_by_nr(type), pixels);
3023
3024 /* check target (proxies not allowed) */
3025 if (!legal_texsubimage_target(ctx, dims, target)) {
3026 _mesa_error(ctx, GL_INVALID_ENUM, "glTexSubImage%uD(target=%s)",
3027 dims, _mesa_lookup_enum_by_nr(target));
3028 return;
3029 }
3030
3031 if (ctx->NewState & _NEW_PIXEL)
3032 _mesa_update_state(ctx);
3033
3034 if (texsubimage_error_check(ctx, dims, target, level,
3035 xoffset, yoffset, zoffset,
3036 width, height, depth, format, type)) {
3037 return; /* error was detected */
3038 }
3039
3040 texObj = _mesa_get_current_tex_object(ctx, target);
3041
3042 _mesa_lock_texture(ctx, texObj);
3043 {
3044 texImage = _mesa_select_tex_image(ctx, texObj, target, level);
3045
3046 if (width > 0 && height > 0 && depth > 0) {
3047 /* If we have a border, offset=-1 is legal. Bias by border width. */
3048 switch (dims) {
3049 case 3:
3050 if (target != GL_TEXTURE_2D_ARRAY)
3051 zoffset += texImage->Border;
3052 /* fall-through */
3053 case 2:
3054 if (target != GL_TEXTURE_1D_ARRAY)
3055 yoffset += texImage->Border;
3056 /* fall-through */
3057 case 1:
3058 xoffset += texImage->Border;
3059 }
3060
3061 ctx->Driver.TexSubImage(ctx, dims, texImage,
3062 xoffset, yoffset, zoffset,
3063 width, height, depth,
3064 format, type, pixels, &ctx->Unpack);
3065
3066 check_gen_mipmap(ctx, target, texObj, level);
3067
3068 ctx->NewState |= _NEW_TEXTURE;
3069 }
3070 }
3071 _mesa_unlock_texture(ctx, texObj);
3072 }
3073
3074
3075 void GLAPIENTRY
3076 _mesa_TexSubImage1D( GLenum target, GLint level,
3077 GLint xoffset, GLsizei width,
3078 GLenum format, GLenum type,
3079 const GLvoid *pixels )
3080 {
3081 GET_CURRENT_CONTEXT(ctx);
3082 texsubimage(ctx, 1, target, level,
3083 xoffset, 0, 0,
3084 width, 1, 1,
3085 format, type, pixels);
3086 }
3087
3088
3089 void GLAPIENTRY
3090 _mesa_TexSubImage2D( GLenum target, GLint level,
3091 GLint xoffset, GLint yoffset,
3092 GLsizei width, GLsizei height,
3093 GLenum format, GLenum type,
3094 const GLvoid *pixels )
3095 {
3096 GET_CURRENT_CONTEXT(ctx);
3097 texsubimage(ctx, 2, target, level,
3098 xoffset, yoffset, 0,
3099 width, height, 1,
3100 format, type, pixels);
3101 }
3102
3103
3104
3105 void GLAPIENTRY
3106 _mesa_TexSubImage3D( GLenum target, GLint level,
3107 GLint xoffset, GLint yoffset, GLint zoffset,
3108 GLsizei width, GLsizei height, GLsizei depth,
3109 GLenum format, GLenum type,
3110 const GLvoid *pixels )
3111 {
3112 GET_CURRENT_CONTEXT(ctx);
3113 texsubimage(ctx, 3, target, level,
3114 xoffset, yoffset, zoffset,
3115 width, height, depth,
3116 format, type, pixels);
3117 }
3118
3119
3120
3121 /**
3122 * For glCopyTexSubImage, return the source renderbuffer to copy texel data
3123 * from. This depends on whether the texture contains color or depth values.
3124 */
3125 static struct gl_renderbuffer *
3126 get_copy_tex_image_source(struct gl_context *ctx, gl_format texFormat)
3127 {
3128 if (_mesa_get_format_bits(texFormat, GL_DEPTH_BITS) > 0) {
3129 /* reading from depth/stencil buffer */
3130 return ctx->ReadBuffer->Attachment[BUFFER_DEPTH].Renderbuffer;
3131 }
3132 else {
3133 /* copying from color buffer */
3134 return ctx->ReadBuffer->_ColorReadBuffer;
3135 }
3136 }
3137
3138
3139
3140 /**
3141 * Implement the glCopyTexImage1/2D() functions.
3142 */
3143 static void
3144 copyteximage(struct gl_context *ctx, GLuint dims,
3145 GLenum target, GLint level, GLenum internalFormat,
3146 GLint x, GLint y, GLsizei width, GLsizei height, GLint border )
3147 {
3148 struct gl_texture_object *texObj;
3149 struct gl_texture_image *texImage;
3150 const GLuint face = _mesa_tex_target_to_face(target);
3151 gl_format texFormat;
3152
3153 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
3154
3155 if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
3156 _mesa_debug(ctx, "glCopyTexImage%uD %s %d %s %d %d %d %d %d\n",
3157 dims,
3158 _mesa_lookup_enum_by_nr(target), level,
3159 _mesa_lookup_enum_by_nr(internalFormat),
3160 x, y, width, height, border);
3161
3162 if (ctx->NewState & NEW_COPY_TEX_STATE)
3163 _mesa_update_state(ctx);
3164
3165 if (copytexture_error_check(ctx, dims, target, level, internalFormat,
3166 width, height, border))
3167 return;
3168
3169 if (!_mesa_legal_texture_dimensions(ctx, target, level, width, height,
3170 1, border)) {
3171 _mesa_error(ctx, GL_INVALID_VALUE,
3172 "glCopyTexImage%uD(invalid width or height)", dims);
3173 return;
3174 }
3175
3176 texObj = _mesa_get_current_tex_object(ctx, target);
3177 assert(texObj);
3178
3179 texFormat = _mesa_choose_texture_format(ctx, texObj, target, level,
3180 internalFormat, GL_NONE, GL_NONE);
3181 assert(texFormat != MESA_FORMAT_NONE);
3182
3183 if (!ctx->Driver.TestProxyTexImage(ctx, _mesa_get_proxy_target(target),
3184 level, texFormat,
3185 width, height, 1, border)) {
3186 _mesa_error(ctx, GL_OUT_OF_MEMORY,
3187 "glCopyTexImage%uD(image too large)", dims);
3188 return;
3189 }
3190
3191 if (border && ctx->Const.StripTextureBorder) {
3192 x += border;
3193 width -= border * 2;
3194 if (dims == 2) {
3195 y += border;
3196 height -= border * 2;
3197 }
3198 border = 0;
3199 }
3200
3201 _mesa_lock_texture(ctx, texObj);
3202 {
3203 texImage = _mesa_get_tex_image(ctx, texObj, target, level);
3204
3205 if (!texImage) {
3206 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glCopyTexImage%uD", dims);
3207 }
3208 else {
3209 GLint srcX = x, srcY = y, dstX = 0, dstY = 0, dstZ = 0;
3210
3211 /* Free old texture image */
3212 ctx->Driver.FreeTextureImageBuffer(ctx, texImage);
3213
3214 _mesa_init_teximage_fields(ctx, texImage, width, height, 1,
3215 border, internalFormat, texFormat);
3216
3217 /* Allocate texture memory (no pixel data yet) */
3218 ctx->Driver.TexImage(ctx, dims, texImage,
3219 GL_NONE, GL_NONE,
3220 NULL, &ctx->Unpack);
3221
3222 if (_mesa_clip_copytexsubimage(ctx, &dstX, &dstY, &srcX, &srcY,
3223 &width, &height)) {
3224 struct gl_renderbuffer *srcRb =
3225 get_copy_tex_image_source(ctx, texImage->TexFormat);
3226
3227 ctx->Driver.CopyTexSubImage(ctx, dims, texImage, dstX, dstY, dstZ,
3228 srcRb, srcX, srcY, width, height);
3229 }
3230
3231 check_gen_mipmap(ctx, target, texObj, level);
3232
3233 _mesa_update_fbo_texture(ctx, texObj, face, level);
3234
3235 _mesa_dirty_texobj(ctx, texObj, GL_TRUE);
3236 }
3237 }
3238 _mesa_unlock_texture(ctx, texObj);
3239 }
3240
3241
3242
3243 void GLAPIENTRY
3244 _mesa_CopyTexImage1D( GLenum target, GLint level,
3245 GLenum internalFormat,
3246 GLint x, GLint y,
3247 GLsizei width, GLint border )
3248 {
3249 GET_CURRENT_CONTEXT(ctx);
3250 copyteximage(ctx, 1, target, level, internalFormat, x, y, width, 1, border);
3251 }
3252
3253
3254
3255 void GLAPIENTRY
3256 _mesa_CopyTexImage2D( GLenum target, GLint level, GLenum internalFormat,
3257 GLint x, GLint y, GLsizei width, GLsizei height,
3258 GLint border )
3259 {
3260 GET_CURRENT_CONTEXT(ctx);
3261 copyteximage(ctx, 2, target, level, internalFormat,
3262 x, y, width, height, border);
3263 }
3264
3265
3266
3267 /**
3268 * Implementation for glCopyTexSubImage1/2/3D() functions.
3269 */
3270 static void
3271 copytexsubimage(struct gl_context *ctx, GLuint dims, GLenum target, GLint level,
3272 GLint xoffset, GLint yoffset, GLint zoffset,
3273 GLint x, GLint y, GLsizei width, GLsizei height)
3274 {
3275 struct gl_texture_object *texObj;
3276 struct gl_texture_image *texImage;
3277
3278 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
3279
3280 if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
3281 _mesa_debug(ctx, "glCopyTexSubImage%uD %s %d %d %d %d %d %d %d %d\n",
3282 dims,
3283 _mesa_lookup_enum_by_nr(target),
3284 level, xoffset, yoffset, zoffset, x, y, width, height);
3285
3286 if (ctx->NewState & NEW_COPY_TEX_STATE)
3287 _mesa_update_state(ctx);
3288
3289 if (copytexsubimage_error_check(ctx, dims, target, level,
3290 xoffset, yoffset, zoffset, width, height)) {
3291 return;
3292 }
3293
3294 texObj = _mesa_get_current_tex_object(ctx, target);
3295
3296 _mesa_lock_texture(ctx, texObj);
3297 {
3298 texImage = _mesa_select_tex_image(ctx, texObj, target, level);
3299
3300 /* If we have a border, offset=-1 is legal. Bias by border width. */
3301 switch (dims) {
3302 case 3:
3303 if (target != GL_TEXTURE_2D_ARRAY)
3304 zoffset += texImage->Border;
3305 /* fall-through */
3306 case 2:
3307 if (target != GL_TEXTURE_1D_ARRAY)
3308 yoffset += texImage->Border;
3309 /* fall-through */
3310 case 1:
3311 xoffset += texImage->Border;
3312 }
3313
3314 if (_mesa_clip_copytexsubimage(ctx, &xoffset, &yoffset, &x, &y,
3315 &width, &height)) {
3316 struct gl_renderbuffer *srcRb =
3317 get_copy_tex_image_source(ctx, texImage->TexFormat);
3318
3319 ctx->Driver.CopyTexSubImage(ctx, dims, texImage,
3320 xoffset, yoffset, zoffset,
3321 srcRb, x, y, width, height);
3322
3323 check_gen_mipmap(ctx, target, texObj, level);
3324
3325 ctx->NewState |= _NEW_TEXTURE;
3326 }
3327 }
3328 _mesa_unlock_texture(ctx, texObj);
3329 }
3330
3331
3332 void GLAPIENTRY
3333 _mesa_CopyTexSubImage1D( GLenum target, GLint level,
3334 GLint xoffset, GLint x, GLint y, GLsizei width )
3335 {
3336 GET_CURRENT_CONTEXT(ctx);
3337 copytexsubimage(ctx, 1, target, level, xoffset, 0, 0, x, y, width, 1);
3338 }
3339
3340
3341
3342 void GLAPIENTRY
3343 _mesa_CopyTexSubImage2D( GLenum target, GLint level,
3344 GLint xoffset, GLint yoffset,
3345 GLint x, GLint y, GLsizei width, GLsizei height )
3346 {
3347 GET_CURRENT_CONTEXT(ctx);
3348 copytexsubimage(ctx, 2, target, level, xoffset, yoffset, 0, x, y,
3349 width, height);
3350 }
3351
3352
3353
3354 void GLAPIENTRY
3355 _mesa_CopyTexSubImage3D( GLenum target, GLint level,
3356 GLint xoffset, GLint yoffset, GLint zoffset,
3357 GLint x, GLint y, GLsizei width, GLsizei height )
3358 {
3359 GET_CURRENT_CONTEXT(ctx);
3360 copytexsubimage(ctx, 3, target, level, xoffset, yoffset, zoffset,
3361 x, y, width, height);
3362 }
3363
3364
3365
3366
3367 /**********************************************************************/
3368 /****** Compressed Textures ******/
3369 /**********************************************************************/
3370
3371
3372 /**
3373 * Error checking for glCompressedTexSubImage[123]D().
3374 * \return error code or GL_NO_ERROR.
3375 */
3376 static GLenum
3377 compressed_subtexture_error_check(struct gl_context *ctx, GLint dims,
3378 GLenum target, GLint level,
3379 GLint xoffset, GLint yoffset, GLint zoffset,
3380 GLsizei width, GLsizei height, GLsizei depth,
3381 GLenum format, GLsizei imageSize)
3382 {
3383 struct gl_texture_object *texObj;
3384 struct gl_texture_image *texImage;
3385 GLint expectedSize;
3386 GLboolean targetOK;
3387
3388 if (dims == 2) {
3389 switch (target) {
3390 case GL_TEXTURE_2D:
3391 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
3392 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
3393 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
3394 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
3395 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
3396 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
3397 targetOK = GL_TRUE;
3398 break;
3399 default:
3400 targetOK = GL_FALSE;
3401 }
3402 }
3403 else {
3404 assert(dims == 1 || dims == 3);
3405 /* no 1D or 3D compressed textures at this time */
3406 targetOK = GL_FALSE;
3407 }
3408
3409 if (!targetOK) {
3410 _mesa_error(ctx, GL_INVALID_ENUM, "glCompressedTexImage%uD(target)",
3411 dims);
3412 return GL_TRUE;
3413 }
3414
3415 /* this will catch any invalid compressed format token */
3416 if (!_mesa_is_compressed_format(ctx, format)) {
3417 _mesa_error(ctx, GL_INVALID_ENUM, "glCompressedTexImage%uD(format)",
3418 dims);
3419 return GL_TRUE;
3420 }
3421
3422 if (level < 0 || level >= _mesa_max_texture_levels(ctx, target)) {
3423 _mesa_error(ctx, GL_INVALID_VALUE, "glCompressedTexImage%uD(level=%d)",
3424 dims, level);
3425 return GL_TRUE;
3426 }
3427
3428 expectedSize = compressed_tex_size(width, height, depth, format);
3429 if (expectedSize != imageSize) {
3430 _mesa_error(ctx, GL_INVALID_VALUE, "glCompressedTexImage%uD(size=%d)",
3431 dims, imageSize);
3432 return GL_TRUE;
3433 }
3434
3435 texObj = _mesa_get_current_tex_object(ctx, target);
3436 if (!texObj) {
3437 _mesa_error(ctx, GL_OUT_OF_MEMORY,
3438 "glCompressedTexSubImage%uD()", dims);
3439 return GL_TRUE;
3440 }
3441
3442 texImage = _mesa_select_tex_image(ctx, texObj, target, level);
3443 if (!texImage) {
3444 _mesa_error(ctx, GL_INVALID_OPERATION,
3445 "glCompressedTexSubImage%uD(invalid texture image)", dims);
3446 return GL_TRUE;
3447 }
3448
3449 if ((GLint) format != texImage->InternalFormat) {
3450 _mesa_error(ctx, GL_INVALID_OPERATION,
3451 "glCompressedTexSubImage%uD(format=0x%x)", dims, format);
3452 return GL_TRUE;
3453 }
3454
3455 if (compressedteximage_only_format(ctx, format)) {
3456 _mesa_error(ctx, GL_INVALID_OPERATION,
3457 "glCompressedTexSubImage%uD(format=0x%x cannot be updated)"
3458 , dims, format);
3459 return GL_TRUE;
3460 }
3461
3462 if (error_check_subtexture_dimensions(ctx, "glCompressedTexSubImage", dims,
3463 texImage, xoffset, yoffset, zoffset,
3464 width, height, depth)) {
3465 return GL_TRUE;
3466 }
3467
3468 return GL_FALSE;
3469 }
3470
3471
3472 void GLAPIENTRY
3473 _mesa_CompressedTexImage1DARB(GLenum target, GLint level,
3474 GLenum internalFormat, GLsizei width,
3475 GLint border, GLsizei imageSize,
3476 const GLvoid *data)
3477 {
3478 GET_CURRENT_CONTEXT(ctx);
3479 teximage(ctx, GL_TRUE, 1, target, level, internalFormat,
3480 width, 1, 1, border, GL_NONE, GL_NONE, imageSize, data);
3481 }
3482
3483
3484 void GLAPIENTRY
3485 _mesa_CompressedTexImage2DARB(GLenum target, GLint level,
3486 GLenum internalFormat, GLsizei width,
3487 GLsizei height, GLint border, GLsizei imageSize,
3488 const GLvoid *data)
3489 {
3490 GET_CURRENT_CONTEXT(ctx);
3491 teximage(ctx, GL_TRUE, 2, target, level, internalFormat,
3492 width, height, 1, border, GL_NONE, GL_NONE, imageSize, data);
3493 }
3494
3495
3496 void GLAPIENTRY
3497 _mesa_CompressedTexImage3DARB(GLenum target, GLint level,
3498 GLenum internalFormat, GLsizei width,
3499 GLsizei height, GLsizei depth, GLint border,
3500 GLsizei imageSize, const GLvoid *data)
3501 {
3502 GET_CURRENT_CONTEXT(ctx);
3503 teximage(ctx, GL_TRUE, 3, target, level, internalFormat,
3504 width, height, depth, border, GL_NONE, GL_NONE, imageSize, data);
3505 }
3506
3507
3508 /**
3509 * Common helper for glCompressedTexSubImage1/2/3D().
3510 */
3511 static void
3512 compressed_tex_sub_image(GLuint dims, GLenum target, GLint level,
3513 GLint xoffset, GLint yoffset, GLint zoffset,
3514 GLsizei width, GLsizei height, GLsizei depth,
3515 GLenum format, GLsizei imageSize, const GLvoid *data)
3516 {
3517 struct gl_texture_object *texObj;
3518 struct gl_texture_image *texImage;
3519 GET_CURRENT_CONTEXT(ctx);
3520 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
3521
3522 if (compressed_subtexture_error_check(ctx, dims, target, level,
3523 xoffset, yoffset, zoffset,
3524 width, height, depth,
3525 format, imageSize)) {
3526 return;
3527 }
3528
3529 texObj = _mesa_get_current_tex_object(ctx, target);
3530
3531 _mesa_lock_texture(ctx, texObj);
3532 {
3533 texImage = _mesa_select_tex_image(ctx, texObj, target, level);
3534 assert(texImage);
3535
3536 if (width > 0 && height > 0 && depth > 0) {
3537 ctx->Driver.CompressedTexSubImage(ctx, dims, texImage,
3538 xoffset, yoffset, zoffset,
3539 width, height, depth,
3540 format, imageSize, data);
3541
3542 check_gen_mipmap(ctx, target, texObj, level);
3543
3544 ctx->NewState |= _NEW_TEXTURE;
3545 }
3546 }
3547 _mesa_unlock_texture(ctx, texObj);
3548 }
3549
3550
3551 void GLAPIENTRY
3552 _mesa_CompressedTexSubImage1DARB(GLenum target, GLint level, GLint xoffset,
3553 GLsizei width, GLenum format,
3554 GLsizei imageSize, const GLvoid *data)
3555 {
3556 compressed_tex_sub_image(1, target, level, xoffset, 0, 0, width, 1, 1,
3557 format, imageSize, data);
3558 }
3559
3560
3561 void GLAPIENTRY
3562 _mesa_CompressedTexSubImage2DARB(GLenum target, GLint level, GLint xoffset,
3563 GLint yoffset, GLsizei width, GLsizei height,
3564 GLenum format, GLsizei imageSize,
3565 const GLvoid *data)
3566 {
3567 compressed_tex_sub_image(2, target, level, xoffset, yoffset, 0,
3568 width, height, 1, format, imageSize, data);
3569 }
3570
3571
3572 void GLAPIENTRY
3573 _mesa_CompressedTexSubImage3DARB(GLenum target, GLint level, GLint xoffset,
3574 GLint yoffset, GLint zoffset, GLsizei width,
3575 GLsizei height, GLsizei depth, GLenum format,
3576 GLsizei imageSize, const GLvoid *data)
3577 {
3578 compressed_tex_sub_image(3, target, level, xoffset, yoffset, zoffset,
3579 width, height, depth, format, imageSize, data);
3580 }
3581
3582 static gl_format
3583 get_texbuffer_format(const struct gl_context *ctx, GLenum internalFormat)
3584 {
3585 switch (internalFormat) {
3586 case GL_ALPHA8:
3587 return MESA_FORMAT_A8;
3588 case GL_ALPHA16:
3589 return MESA_FORMAT_A16;
3590 case GL_ALPHA16F_ARB:
3591 return MESA_FORMAT_ALPHA_FLOAT16;
3592 case GL_ALPHA32F_ARB:
3593 return MESA_FORMAT_ALPHA_FLOAT32;
3594 case GL_ALPHA8I_EXT:
3595 return MESA_FORMAT_ALPHA_INT8;
3596 case GL_ALPHA16I_EXT:
3597 return MESA_FORMAT_ALPHA_INT16;
3598 case GL_ALPHA32I_EXT:
3599 return MESA_FORMAT_ALPHA_INT32;
3600 case GL_ALPHA8UI_EXT:
3601 return MESA_FORMAT_ALPHA_UINT8;
3602 case GL_ALPHA16UI_EXT:
3603 return MESA_FORMAT_ALPHA_UINT16;
3604 case GL_ALPHA32UI_EXT:
3605 return MESA_FORMAT_ALPHA_UINT32;
3606 case GL_LUMINANCE8:
3607 return MESA_FORMAT_L8;
3608 case GL_LUMINANCE16:
3609 return MESA_FORMAT_L16;
3610 case GL_LUMINANCE16F_ARB:
3611 return MESA_FORMAT_LUMINANCE_FLOAT16;
3612 case GL_LUMINANCE32F_ARB:
3613 return MESA_FORMAT_LUMINANCE_FLOAT32;
3614 case GL_LUMINANCE8I_EXT:
3615 return MESA_FORMAT_LUMINANCE_INT8;
3616 case GL_LUMINANCE16I_EXT:
3617 return MESA_FORMAT_LUMINANCE_INT16;
3618 case GL_LUMINANCE32I_EXT:
3619 return MESA_FORMAT_LUMINANCE_INT32;
3620 case GL_LUMINANCE8UI_EXT:
3621 return MESA_FORMAT_LUMINANCE_UINT8;
3622 case GL_LUMINANCE16UI_EXT:
3623 return MESA_FORMAT_LUMINANCE_UINT16;
3624 case GL_LUMINANCE32UI_EXT:
3625 return MESA_FORMAT_LUMINANCE_UINT32;
3626 case GL_LUMINANCE8_ALPHA8:
3627 return MESA_FORMAT_AL88;
3628 case GL_LUMINANCE16_ALPHA16:
3629 return MESA_FORMAT_AL1616;
3630 case GL_LUMINANCE_ALPHA16F_ARB:
3631 return MESA_FORMAT_LUMINANCE_ALPHA_FLOAT16;
3632 case GL_LUMINANCE_ALPHA32F_ARB:
3633 return MESA_FORMAT_LUMINANCE_ALPHA_FLOAT32;
3634 case GL_LUMINANCE_ALPHA8I_EXT:
3635 return MESA_FORMAT_LUMINANCE_ALPHA_INT8;
3636 case GL_LUMINANCE_ALPHA16I_EXT:
3637 return MESA_FORMAT_LUMINANCE_ALPHA_INT8;
3638 case GL_LUMINANCE_ALPHA32I_EXT:
3639 return MESA_FORMAT_LUMINANCE_ALPHA_INT16;
3640 case GL_LUMINANCE_ALPHA8UI_EXT:
3641 return MESA_FORMAT_LUMINANCE_ALPHA_UINT8;
3642 case GL_LUMINANCE_ALPHA16UI_EXT:
3643 return MESA_FORMAT_LUMINANCE_ALPHA_UINT16;
3644 case GL_LUMINANCE_ALPHA32UI_EXT:
3645 return MESA_FORMAT_LUMINANCE_ALPHA_UINT32;
3646 case GL_INTENSITY8:
3647 return MESA_FORMAT_I8;
3648 case GL_INTENSITY16:
3649 return MESA_FORMAT_I16;
3650 case GL_INTENSITY16F_ARB:
3651 return MESA_FORMAT_INTENSITY_FLOAT16;
3652 case GL_INTENSITY32F_ARB:
3653 return MESA_FORMAT_INTENSITY_FLOAT32;
3654 case GL_INTENSITY8I_EXT:
3655 return MESA_FORMAT_INTENSITY_INT8;
3656 case GL_INTENSITY16I_EXT:
3657 return MESA_FORMAT_INTENSITY_INT16;
3658 case GL_INTENSITY32I_EXT:
3659 return MESA_FORMAT_INTENSITY_INT32;
3660 case GL_INTENSITY8UI_EXT:
3661 return MESA_FORMAT_INTENSITY_UINT8;
3662 case GL_INTENSITY16UI_EXT:
3663 return MESA_FORMAT_INTENSITY_UINT16;
3664 case GL_INTENSITY32UI_EXT:
3665 return MESA_FORMAT_INTENSITY_UINT32;
3666 case GL_RGBA8:
3667 return MESA_FORMAT_RGBA8888_REV;
3668 case GL_RGBA16:
3669 return MESA_FORMAT_RGBA_16;
3670 case GL_RGBA16F_ARB:
3671 return MESA_FORMAT_RGBA_FLOAT16;
3672 case GL_RGBA32F_ARB:
3673 return MESA_FORMAT_RGBA_FLOAT32;
3674 case GL_RGBA8I_EXT:
3675 return MESA_FORMAT_RGBA_INT8;
3676 case GL_RGBA16I_EXT:
3677 return MESA_FORMAT_RGBA_INT16;
3678 case GL_RGBA32I_EXT:
3679 return MESA_FORMAT_RGBA_INT32;
3680 case GL_RGBA8UI_EXT:
3681 return MESA_FORMAT_RGBA_UINT8;
3682 case GL_RGBA16UI_EXT:
3683 return MESA_FORMAT_RGBA_UINT16;
3684 case GL_RGBA32UI_EXT:
3685 return MESA_FORMAT_RGBA_UINT32;
3686
3687 case GL_RG8:
3688 return MESA_FORMAT_GR88;
3689 case GL_RG16:
3690 return MESA_FORMAT_RG1616;
3691 case GL_RG16F:
3692 return MESA_FORMAT_RG_FLOAT16;
3693 case GL_RG32F:
3694 return MESA_FORMAT_RG_FLOAT32;
3695 case GL_RG8I:
3696 return MESA_FORMAT_RG_INT8;
3697 case GL_RG16I:
3698 return MESA_FORMAT_RG_INT16;
3699 case GL_RG32I:
3700 return MESA_FORMAT_RG_INT32;
3701 case GL_RG8UI:
3702 return MESA_FORMAT_RG_UINT8;
3703 case GL_RG16UI:
3704 return MESA_FORMAT_RG_UINT16;
3705 case GL_RG32UI:
3706 return MESA_FORMAT_RG_UINT32;
3707
3708 case GL_R8:
3709 return MESA_FORMAT_R8;
3710 case GL_R16:
3711 return MESA_FORMAT_R16;
3712 case GL_R16F:
3713 return MESA_FORMAT_R_FLOAT16;
3714 case GL_R32F:
3715 return MESA_FORMAT_R_FLOAT32;
3716 case GL_R8I:
3717 return MESA_FORMAT_R_INT8;
3718 case GL_R16I:
3719 return MESA_FORMAT_R_INT16;
3720 case GL_R32I:
3721 return MESA_FORMAT_R_INT32;
3722 case GL_R8UI:
3723 return MESA_FORMAT_R_UINT8;
3724 case GL_R16UI:
3725 return MESA_FORMAT_R_UINT16;
3726 case GL_R32UI:
3727 return MESA_FORMAT_R_UINT32;
3728
3729 default:
3730 return MESA_FORMAT_NONE;
3731 }
3732 }
3733
3734 static gl_format
3735 validate_texbuffer_format(const struct gl_context *ctx, GLenum internalFormat)
3736 {
3737 gl_format format = get_texbuffer_format(ctx, internalFormat);
3738 GLenum datatype;
3739
3740 if (format == MESA_FORMAT_NONE)
3741 return MESA_FORMAT_NONE;
3742
3743 datatype = _mesa_get_format_datatype(format);
3744 if (datatype == GL_FLOAT && !ctx->Extensions.ARB_texture_float)
3745 return MESA_FORMAT_NONE;
3746
3747 if (datatype == GL_HALF_FLOAT && !ctx->Extensions.ARB_half_float_pixel)
3748 return MESA_FORMAT_NONE;
3749
3750 /* The GL_ARB_texture_rg and GL_ARB_texture_buffer_object specs don't make
3751 * any mention of R/RG formats, but they appear in the GL 3.1 core
3752 * specification.
3753 */
3754 if (ctx->Version <= 30) {
3755 GLenum base_format = _mesa_get_format_base_format(format);
3756
3757 if (base_format == GL_R || base_format == GL_RG)
3758 return MESA_FORMAT_NONE;
3759 }
3760 return format;
3761 }
3762
3763
3764 /** GL_ARB_texture_buffer_object */
3765 void GLAPIENTRY
3766 _mesa_TexBuffer(GLenum target, GLenum internalFormat, GLuint buffer)
3767 {
3768 struct gl_texture_object *texObj;
3769 struct gl_buffer_object *bufObj;
3770 gl_format format;
3771
3772 GET_CURRENT_CONTEXT(ctx);
3773 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
3774
3775 if (!(ctx->Extensions.ARB_texture_buffer_object
3776 && _mesa_is_desktop_gl(ctx))) {
3777 _mesa_error(ctx, GL_INVALID_OPERATION, "glTexBuffer");
3778 return;
3779 }
3780
3781 if (target != GL_TEXTURE_BUFFER_ARB) {
3782 _mesa_error(ctx, GL_INVALID_ENUM, "glTexBuffer(target)");
3783 return;
3784 }
3785
3786 format = validate_texbuffer_format(ctx, internalFormat);
3787 if (format == MESA_FORMAT_NONE) {
3788 _mesa_error(ctx, GL_INVALID_ENUM, "glTexBuffer(internalFormat 0x%x)",
3789 internalFormat);
3790 return;
3791 }
3792
3793 bufObj = _mesa_lookup_bufferobj(ctx, buffer);
3794 if (buffer && !bufObj) {
3795 _mesa_error(ctx, GL_INVALID_OPERATION, "glTexBuffer(buffer %u)", buffer);
3796 return;
3797 }
3798
3799 texObj = _mesa_get_current_tex_object(ctx, target);
3800
3801 _mesa_lock_texture(ctx, texObj);
3802 {
3803 _mesa_reference_buffer_object(ctx, &texObj->BufferObject, bufObj);
3804 texObj->BufferObjectFormat = internalFormat;
3805 texObj->_BufferObjectFormat = format;
3806 }
3807 _mesa_unlock_texture(ctx, texObj);
3808 }