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