mesa: recover target_check before get_current_tex_objects
[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 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
21 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
22 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23 * OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26
27 /**
28 * \file teximage.c
29 * Texture image-related functions.
30 */
31
32 #include <stdbool.h>
33 #include "glheader.h"
34 #include "bufferobj.h"
35 #include "context.h"
36 #include "enums.h"
37 #include "fbobject.h"
38 #include "framebuffer.h"
39 #include "hash.h"
40 #include "image.h"
41 #include "imports.h"
42 #include "macros.h"
43 #include "mipmap.h"
44 #include "multisample.h"
45 #include "pixelstore.h"
46 #include "state.h"
47 #include "texcompress.h"
48 #include "texcompress_cpal.h"
49 #include "teximage.h"
50 #include "texobj.h"
51 #include "texstate.h"
52 #include "texstorage.h"
53 #include "textureview.h"
54 #include "mtypes.h"
55 #include "glformats.h"
56 #include "texstore.h"
57 #include "pbo.h"
58
59
60 /**
61 * State changes which we care about for glCopyTex[Sub]Image() calls.
62 * In particular, we care about pixel transfer state and buffer state
63 * (such as glReadBuffer to make sure we read from the right renderbuffer).
64 */
65 #define NEW_COPY_TEX_STATE (_NEW_BUFFERS | _NEW_PIXEL)
66
67 /**
68 * Returns a corresponding internal floating point format for a given base
69 * format as specifed by OES_texture_float. In case of GL_FLOAT, the internal
70 * format needs to be a 32 bit component and in case of GL_HALF_FLOAT_OES it
71 * needs to be a 16 bit component.
72 *
73 * For example, given base format GL_RGBA, type GL_FLOAT return GL_RGBA32F_ARB.
74 */
75 static GLenum
76 adjust_for_oes_float_texture(const struct gl_context *ctx,
77 GLenum format, GLenum type)
78 {
79 switch (type) {
80 case GL_FLOAT:
81 if (ctx->Extensions.OES_texture_float) {
82 switch (format) {
83 case GL_RGBA:
84 return GL_RGBA32F;
85 case GL_RGB:
86 return GL_RGB32F;
87 case GL_ALPHA:
88 return GL_ALPHA32F_ARB;
89 case GL_LUMINANCE:
90 return GL_LUMINANCE32F_ARB;
91 case GL_LUMINANCE_ALPHA:
92 return GL_LUMINANCE_ALPHA32F_ARB;
93 default:
94 break;
95 }
96 }
97 break;
98
99 case GL_HALF_FLOAT_OES:
100 if (ctx->Extensions.OES_texture_half_float) {
101 switch (format) {
102 case GL_RGBA:
103 return GL_RGBA16F;
104 case GL_RGB:
105 return GL_RGB16F;
106 case GL_ALPHA:
107 return GL_ALPHA16F_ARB;
108 case GL_LUMINANCE:
109 return GL_LUMINANCE16F_ARB;
110 case GL_LUMINANCE_ALPHA:
111 return GL_LUMINANCE_ALPHA16F_ARB;
112 default:
113 break;
114 }
115 }
116 break;
117
118 default:
119 break;
120 }
121
122 return format;
123 }
124
125 /**
126 * Returns a corresponding base format for a given internal floating point
127 * format as specifed by OES_texture_float.
128 */
129 static GLenum
130 oes_float_internal_format(const struct gl_context *ctx,
131 GLenum format, GLenum type)
132 {
133 switch (type) {
134 case GL_FLOAT:
135 if (ctx->Extensions.OES_texture_float) {
136 switch (format) {
137 case GL_RGBA32F:
138 return GL_RGBA;
139 case GL_RGB32F:
140 return GL_RGB;
141 case GL_ALPHA32F_ARB:
142 return GL_ALPHA;
143 case GL_LUMINANCE32F_ARB:
144 return GL_LUMINANCE;
145 case GL_LUMINANCE_ALPHA32F_ARB:
146 return GL_LUMINANCE_ALPHA;
147 default:
148 break;
149 }
150 }
151 break;
152
153 case GL_HALF_FLOAT_OES:
154 if (ctx->Extensions.OES_texture_half_float) {
155 switch (format) {
156 case GL_RGBA16F:
157 return GL_RGBA;
158 case GL_RGB16F:
159 return GL_RGB;
160 case GL_ALPHA16F_ARB:
161 return GL_ALPHA;
162 case GL_LUMINANCE16F_ARB:
163 return GL_LUMINANCE;
164 case GL_LUMINANCE_ALPHA16F_ARB:
165 return GL_LUMINANCE_ALPHA;
166 default:
167 break;
168 }
169 }
170 break;
171 }
172 return format;
173 }
174
175
176 /**
177 * Install gl_texture_image in a gl_texture_object according to the target
178 * and level parameters.
179 *
180 * \param tObj texture object.
181 * \param target texture target.
182 * \param level image level.
183 * \param texImage texture image.
184 */
185 static void
186 set_tex_image(struct gl_texture_object *tObj,
187 GLenum target, GLint level,
188 struct gl_texture_image *texImage)
189 {
190 const GLuint face = _mesa_tex_target_to_face(target);
191
192 assert(tObj);
193 assert(texImage);
194 if (target == GL_TEXTURE_RECTANGLE_NV || target == GL_TEXTURE_EXTERNAL_OES)
195 assert(level == 0);
196
197 tObj->Image[face][level] = texImage;
198
199 /* Set the 'back' pointer */
200 texImage->TexObject = tObj;
201 texImage->Level = level;
202 texImage->Face = face;
203 }
204
205
206 /**
207 * Free a gl_texture_image and associated data.
208 * This function is a fallback called via ctx->Driver.DeleteTextureImage().
209 *
210 * \param texImage texture image.
211 *
212 * Free the texture image structure and the associated image data.
213 */
214 void
215 _mesa_delete_texture_image(struct gl_context *ctx,
216 struct gl_texture_image *texImage)
217 {
218 /* Free texImage->Data and/or any other driver-specific texture
219 * image storage.
220 */
221 assert(ctx->Driver.FreeTextureImageBuffer);
222 ctx->Driver.FreeTextureImageBuffer( ctx, texImage );
223 free(texImage);
224 }
225
226
227 /**
228 * Test if a target is a proxy target.
229 *
230 * \param target texture target.
231 *
232 * \return GL_TRUE if the target is a proxy target, GL_FALSE otherwise.
233 */
234 GLboolean
235 _mesa_is_proxy_texture(GLenum target)
236 {
237 unsigned i;
238 static const GLenum targets[] = {
239 GL_PROXY_TEXTURE_1D,
240 GL_PROXY_TEXTURE_2D,
241 GL_PROXY_TEXTURE_3D,
242 GL_PROXY_TEXTURE_CUBE_MAP,
243 GL_PROXY_TEXTURE_RECTANGLE,
244 GL_PROXY_TEXTURE_1D_ARRAY,
245 GL_PROXY_TEXTURE_2D_ARRAY,
246 GL_PROXY_TEXTURE_CUBE_MAP_ARRAY,
247 GL_PROXY_TEXTURE_2D_MULTISAMPLE,
248 GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY
249 };
250 /*
251 * NUM_TEXTURE_TARGETS should match number of terms above, except there's no
252 * proxy for GL_TEXTURE_BUFFER and GL_TEXTURE_EXTERNAL_OES.
253 */
254 STATIC_ASSERT(NUM_TEXTURE_TARGETS == ARRAY_SIZE(targets) + 2);
255
256 for (i = 0; i < ARRAY_SIZE(targets); ++i)
257 if (target == targets[i])
258 return GL_TRUE;
259 return GL_FALSE;
260 }
261
262
263 /**
264 * Test if a target is an array target.
265 *
266 * \param target texture target.
267 *
268 * \return true if the target is an array target, false otherwise.
269 */
270 bool
271 _mesa_is_array_texture(GLenum target)
272 {
273 switch (target) {
274 case GL_TEXTURE_1D_ARRAY:
275 case GL_TEXTURE_2D_ARRAY:
276 case GL_TEXTURE_CUBE_MAP_ARRAY:
277 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
278 return true;
279 default:
280 return false;
281 };
282 }
283
284 /**
285 * Test if a target is a cube map.
286 *
287 * \param target texture target.
288 *
289 * \return true if the target is a cube map, false otherwise.
290 */
291 bool
292 _mesa_is_cube_map_texture(GLenum target)
293 {
294 switch(target) {
295 case GL_TEXTURE_CUBE_MAP:
296 case GL_TEXTURE_CUBE_MAP_ARRAY:
297 return true;
298 default:
299 return false;
300 }
301 }
302
303 /**
304 * Return the proxy target which corresponds to the given texture target
305 */
306 static GLenum
307 proxy_target(GLenum target)
308 {
309 switch (target) {
310 case GL_TEXTURE_1D:
311 case GL_PROXY_TEXTURE_1D:
312 return GL_PROXY_TEXTURE_1D;
313 case GL_TEXTURE_2D:
314 case GL_PROXY_TEXTURE_2D:
315 return GL_PROXY_TEXTURE_2D;
316 case GL_TEXTURE_3D:
317 case GL_PROXY_TEXTURE_3D:
318 return GL_PROXY_TEXTURE_3D;
319 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
320 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
321 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
322 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
323 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
324 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
325 case GL_TEXTURE_CUBE_MAP:
326 case GL_PROXY_TEXTURE_CUBE_MAP:
327 return GL_PROXY_TEXTURE_CUBE_MAP;
328 case GL_TEXTURE_RECTANGLE_NV:
329 case GL_PROXY_TEXTURE_RECTANGLE_NV:
330 return GL_PROXY_TEXTURE_RECTANGLE_NV;
331 case GL_TEXTURE_1D_ARRAY_EXT:
332 case GL_PROXY_TEXTURE_1D_ARRAY_EXT:
333 return GL_PROXY_TEXTURE_1D_ARRAY_EXT;
334 case GL_TEXTURE_2D_ARRAY_EXT:
335 case GL_PROXY_TEXTURE_2D_ARRAY_EXT:
336 return GL_PROXY_TEXTURE_2D_ARRAY_EXT;
337 case GL_TEXTURE_CUBE_MAP_ARRAY:
338 case GL_PROXY_TEXTURE_CUBE_MAP_ARRAY:
339 return GL_PROXY_TEXTURE_CUBE_MAP_ARRAY;
340 case GL_TEXTURE_2D_MULTISAMPLE:
341 case GL_PROXY_TEXTURE_2D_MULTISAMPLE:
342 return GL_PROXY_TEXTURE_2D_MULTISAMPLE;
343 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
344 case GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY:
345 return GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY;
346 default:
347 _mesa_problem(NULL, "unexpected target in proxy_target()");
348 return 0;
349 }
350 }
351
352
353
354
355 /**
356 * Get a texture image pointer from a texture object, given a texture
357 * target and mipmap level. The target and level parameters should
358 * have already been error-checked.
359 *
360 * \param texObj texture unit.
361 * \param target texture target.
362 * \param level image level.
363 *
364 * \return pointer to the texture image structure, or NULL on failure.
365 */
366 struct gl_texture_image *
367 _mesa_select_tex_image(const struct gl_texture_object *texObj,
368 GLenum target, GLint level)
369 {
370 const GLuint face = _mesa_tex_target_to_face(target);
371
372 assert(texObj);
373 assert(level >= 0);
374 assert(level < MAX_TEXTURE_LEVELS);
375
376 return texObj->Image[face][level];
377 }
378
379
380 /**
381 * Like _mesa_select_tex_image() but if the image doesn't exist, allocate
382 * it and install it. Only return NULL if passed a bad parameter or run
383 * out of memory.
384 */
385 struct gl_texture_image *
386 _mesa_get_tex_image(struct gl_context *ctx, struct gl_texture_object *texObj,
387 GLenum target, GLint level)
388 {
389 struct gl_texture_image *texImage;
390
391 if (!texObj)
392 return NULL;
393
394 texImage = _mesa_select_tex_image(texObj, target, level);
395 if (!texImage) {
396 texImage = ctx->Driver.NewTextureImage(ctx);
397 if (!texImage) {
398 _mesa_error(ctx, GL_OUT_OF_MEMORY, "texture image allocation");
399 return NULL;
400 }
401
402 set_tex_image(texObj, target, level, texImage);
403 }
404
405 return texImage;
406 }
407
408
409 /**
410 * Return pointer to the specified proxy texture image.
411 * Note that proxy textures are per-context, not per-texture unit.
412 * \return pointer to texture image or NULL if invalid target, invalid
413 * level, or out of memory.
414 */
415 static struct gl_texture_image *
416 get_proxy_tex_image(struct gl_context *ctx, GLenum target, GLint level)
417 {
418 struct gl_texture_image *texImage;
419 GLuint texIndex;
420
421 if (level < 0)
422 return NULL;
423
424 switch (target) {
425 case GL_PROXY_TEXTURE_1D:
426 texIndex = TEXTURE_1D_INDEX;
427 break;
428 case GL_PROXY_TEXTURE_2D:
429 texIndex = TEXTURE_2D_INDEX;
430 break;
431 case GL_PROXY_TEXTURE_3D:
432 texIndex = TEXTURE_3D_INDEX;
433 break;
434 case GL_PROXY_TEXTURE_CUBE_MAP:
435 texIndex = TEXTURE_CUBE_INDEX;
436 break;
437 case GL_PROXY_TEXTURE_RECTANGLE_NV:
438 if (level > 0)
439 return NULL;
440 texIndex = TEXTURE_RECT_INDEX;
441 break;
442 case GL_PROXY_TEXTURE_1D_ARRAY_EXT:
443 texIndex = TEXTURE_1D_ARRAY_INDEX;
444 break;
445 case GL_PROXY_TEXTURE_2D_ARRAY_EXT:
446 texIndex = TEXTURE_2D_ARRAY_INDEX;
447 break;
448 case GL_PROXY_TEXTURE_CUBE_MAP_ARRAY:
449 texIndex = TEXTURE_CUBE_ARRAY_INDEX;
450 break;
451 case GL_PROXY_TEXTURE_2D_MULTISAMPLE:
452 texIndex = TEXTURE_2D_MULTISAMPLE_INDEX;
453 break;
454 case GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY:
455 texIndex = TEXTURE_2D_MULTISAMPLE_ARRAY_INDEX;
456 break;
457 default:
458 return NULL;
459 }
460
461 texImage = ctx->Texture.ProxyTex[texIndex]->Image[0][level];
462 if (!texImage) {
463 texImage = ctx->Driver.NewTextureImage(ctx);
464 if (!texImage) {
465 _mesa_error(ctx, GL_OUT_OF_MEMORY, "proxy texture allocation");
466 return NULL;
467 }
468 ctx->Texture.ProxyTex[texIndex]->Image[0][level] = texImage;
469 /* Set the 'back' pointer */
470 texImage->TexObject = ctx->Texture.ProxyTex[texIndex];
471 }
472 return texImage;
473 }
474
475
476 /**
477 * Get the maximum number of allowed mipmap levels.
478 *
479 * \param ctx GL context.
480 * \param target texture target.
481 *
482 * \return the maximum number of allowed mipmap levels for the given
483 * texture target, or zero if passed a bad target.
484 *
485 * \sa gl_constants.
486 */
487 GLint
488 _mesa_max_texture_levels(const struct gl_context *ctx, GLenum target)
489 {
490 switch (target) {
491 case GL_TEXTURE_1D:
492 case GL_PROXY_TEXTURE_1D:
493 case GL_TEXTURE_2D:
494 case GL_PROXY_TEXTURE_2D:
495 return ffs(util_next_power_of_two(ctx->Const.MaxTextureSize));
496 case GL_TEXTURE_3D:
497 case GL_PROXY_TEXTURE_3D:
498 return ctx->Const.Max3DTextureLevels;
499 case GL_TEXTURE_CUBE_MAP:
500 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
501 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
502 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
503 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
504 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
505 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
506 case GL_PROXY_TEXTURE_CUBE_MAP:
507 return ctx->Extensions.ARB_texture_cube_map
508 ? ctx->Const.MaxCubeTextureLevels : 0;
509 case GL_TEXTURE_RECTANGLE_NV:
510 case GL_PROXY_TEXTURE_RECTANGLE_NV:
511 return ctx->Extensions.NV_texture_rectangle ? 1 : 0;
512 case GL_TEXTURE_1D_ARRAY_EXT:
513 case GL_PROXY_TEXTURE_1D_ARRAY_EXT:
514 case GL_TEXTURE_2D_ARRAY_EXT:
515 case GL_PROXY_TEXTURE_2D_ARRAY_EXT:
516 return ctx->Extensions.EXT_texture_array
517 ? ffs(util_next_power_of_two(ctx->Const.MaxTextureSize)) : 0;
518 case GL_TEXTURE_CUBE_MAP_ARRAY:
519 case GL_PROXY_TEXTURE_CUBE_MAP_ARRAY:
520 return _mesa_has_texture_cube_map_array(ctx)
521 ? ctx->Const.MaxCubeTextureLevels : 0;
522 case GL_TEXTURE_BUFFER:
523 return (_mesa_has_ARB_texture_buffer_object(ctx) ||
524 _mesa_has_OES_texture_buffer(ctx)) ? 1 : 0;
525 case GL_TEXTURE_2D_MULTISAMPLE:
526 case GL_PROXY_TEXTURE_2D_MULTISAMPLE:
527 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
528 case GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY:
529 return (_mesa_is_desktop_gl(ctx) || _mesa_is_gles31(ctx))
530 && ctx->Extensions.ARB_texture_multisample
531 ? 1 : 0;
532 case GL_TEXTURE_EXTERNAL_OES:
533 return _mesa_has_OES_EGL_image_external(ctx) ? 1 : 0;
534 default:
535 return 0; /* bad target */
536 }
537 }
538
539
540 /**
541 * Return number of dimensions per mipmap level for the given texture target.
542 */
543 GLint
544 _mesa_get_texture_dimensions(GLenum target)
545 {
546 switch (target) {
547 case GL_TEXTURE_1D:
548 case GL_PROXY_TEXTURE_1D:
549 return 1;
550 case GL_TEXTURE_2D:
551 case GL_TEXTURE_RECTANGLE:
552 case GL_TEXTURE_CUBE_MAP:
553 case GL_PROXY_TEXTURE_2D:
554 case GL_PROXY_TEXTURE_RECTANGLE:
555 case GL_PROXY_TEXTURE_CUBE_MAP:
556 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
557 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
558 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
559 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
560 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
561 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
562 case GL_TEXTURE_1D_ARRAY:
563 case GL_PROXY_TEXTURE_1D_ARRAY:
564 case GL_TEXTURE_EXTERNAL_OES:
565 case GL_TEXTURE_2D_MULTISAMPLE:
566 case GL_PROXY_TEXTURE_2D_MULTISAMPLE:
567 return 2;
568 case GL_TEXTURE_3D:
569 case GL_PROXY_TEXTURE_3D:
570 case GL_TEXTURE_2D_ARRAY:
571 case GL_PROXY_TEXTURE_2D_ARRAY:
572 case GL_TEXTURE_CUBE_MAP_ARRAY:
573 case GL_PROXY_TEXTURE_CUBE_MAP_ARRAY:
574 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
575 case GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY:
576 return 3;
577 case GL_TEXTURE_BUFFER:
578 /* fall-through */
579 default:
580 _mesa_problem(NULL, "invalid target 0x%x in get_texture_dimensions()",
581 target);
582 return 2;
583 }
584 }
585
586
587 /**
588 * Check if a texture target can have more than one layer.
589 */
590 GLboolean
591 _mesa_tex_target_is_layered(GLenum target)
592 {
593 switch (target) {
594 case GL_TEXTURE_1D:
595 case GL_PROXY_TEXTURE_1D:
596 case GL_TEXTURE_2D:
597 case GL_PROXY_TEXTURE_2D:
598 case GL_TEXTURE_RECTANGLE:
599 case GL_PROXY_TEXTURE_RECTANGLE:
600 case GL_TEXTURE_2D_MULTISAMPLE:
601 case GL_PROXY_TEXTURE_2D_MULTISAMPLE:
602 case GL_TEXTURE_BUFFER:
603 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
604 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
605 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
606 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
607 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
608 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
609 case GL_TEXTURE_EXTERNAL_OES:
610 return GL_FALSE;
611
612 case GL_TEXTURE_3D:
613 case GL_PROXY_TEXTURE_3D:
614 case GL_TEXTURE_CUBE_MAP:
615 case GL_PROXY_TEXTURE_CUBE_MAP:
616 case GL_TEXTURE_1D_ARRAY:
617 case GL_PROXY_TEXTURE_1D_ARRAY:
618 case GL_TEXTURE_2D_ARRAY:
619 case GL_PROXY_TEXTURE_2D_ARRAY:
620 case GL_TEXTURE_CUBE_MAP_ARRAY:
621 case GL_PROXY_TEXTURE_CUBE_MAP_ARRAY:
622 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
623 case GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY:
624 return GL_TRUE;
625
626 default:
627 assert(!"Invalid texture target.");
628 return GL_FALSE;
629 }
630 }
631
632
633 /**
634 * Return the number of layers present in the given level of an array,
635 * cubemap or 3D texture. If the texture is not layered return zero.
636 */
637 GLuint
638 _mesa_get_texture_layers(const struct gl_texture_object *texObj, GLint level)
639 {
640 assert(level >= 0 && level < MAX_TEXTURE_LEVELS);
641
642 switch (texObj->Target) {
643 case GL_TEXTURE_1D:
644 case GL_TEXTURE_2D:
645 case GL_TEXTURE_RECTANGLE:
646 case GL_TEXTURE_2D_MULTISAMPLE:
647 case GL_TEXTURE_BUFFER:
648 case GL_TEXTURE_EXTERNAL_OES:
649 return 0;
650
651 case GL_TEXTURE_CUBE_MAP:
652 return 6;
653
654 case GL_TEXTURE_1D_ARRAY: {
655 struct gl_texture_image *img = texObj->Image[0][level];
656 return img ? img->Height : 0;
657 }
658
659 case GL_TEXTURE_3D:
660 case GL_TEXTURE_2D_ARRAY:
661 case GL_TEXTURE_CUBE_MAP_ARRAY:
662 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY: {
663 struct gl_texture_image *img = texObj->Image[0][level];
664 return img ? img->Depth : 0;
665 }
666
667 default:
668 assert(!"Invalid texture target.");
669 return 0;
670 }
671 }
672
673
674 /**
675 * Return the maximum number of mipmap levels for the given target
676 * and the dimensions.
677 * The dimensions are expected not to include the border.
678 */
679 GLsizei
680 _mesa_get_tex_max_num_levels(GLenum target, GLsizei width, GLsizei height,
681 GLsizei depth)
682 {
683 GLsizei size;
684
685 switch (target) {
686 case GL_TEXTURE_1D:
687 case GL_TEXTURE_1D_ARRAY:
688 case GL_PROXY_TEXTURE_1D:
689 case GL_PROXY_TEXTURE_1D_ARRAY:
690 size = width;
691 break;
692 case GL_TEXTURE_CUBE_MAP:
693 case GL_TEXTURE_CUBE_MAP_ARRAY:
694 case GL_PROXY_TEXTURE_CUBE_MAP:
695 case GL_PROXY_TEXTURE_CUBE_MAP_ARRAY:
696 size = width;
697 break;
698 case GL_TEXTURE_2D:
699 case GL_TEXTURE_2D_ARRAY:
700 case GL_PROXY_TEXTURE_2D:
701 case GL_PROXY_TEXTURE_2D_ARRAY:
702 size = MAX2(width, height);
703 break;
704 case GL_TEXTURE_3D:
705 case GL_PROXY_TEXTURE_3D:
706 size = MAX3(width, height, depth);
707 break;
708 case GL_TEXTURE_RECTANGLE:
709 case GL_TEXTURE_EXTERNAL_OES:
710 case GL_TEXTURE_2D_MULTISAMPLE:
711 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
712 case GL_PROXY_TEXTURE_RECTANGLE:
713 case GL_PROXY_TEXTURE_2D_MULTISAMPLE:
714 case GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY:
715 return 1;
716 default:
717 assert(0);
718 return 1;
719 }
720
721 return _mesa_logbase2(size) + 1;
722 }
723
724
725 #if 000 /* not used anymore */
726 /*
727 * glTexImage[123]D can accept a NULL image pointer. In this case we
728 * create a texture image with unspecified image contents per the OpenGL
729 * spec.
730 */
731 static GLubyte *
732 make_null_texture(GLint width, GLint height, GLint depth, GLenum format)
733 {
734 const GLint components = _mesa_components_in_format(format);
735 const GLint numPixels = width * height * depth;
736 GLubyte *data = (GLubyte *) malloc(numPixels * components * sizeof(GLubyte));
737
738 #ifdef DEBUG
739 /*
740 * Let's see if anyone finds this. If glTexImage2D() is called with
741 * a NULL image pointer then load the texture image with something
742 * interesting instead of leaving it indeterminate.
743 */
744 if (data) {
745 static const char message[8][32] = {
746 " X X XXXXX XXX X ",
747 " XX XX X X X X X ",
748 " X X X X X X X ",
749 " X X XXXX XXX XXXXX ",
750 " X X X X X X ",
751 " X X X X X X X ",
752 " X X XXXXX XXX X X ",
753 " "
754 };
755
756 GLubyte *imgPtr = data;
757 GLint h, i, j, k;
758 for (h = 0; h < depth; h++) {
759 for (i = 0; i < height; i++) {
760 GLint srcRow = 7 - (i % 8);
761 for (j = 0; j < width; j++) {
762 GLint srcCol = j % 32;
763 GLubyte texel = (message[srcRow][srcCol]=='X') ? 255 : 70;
764 for (k = 0; k < components; k++) {
765 *imgPtr++ = texel;
766 }
767 }
768 }
769 }
770 }
771 #endif
772
773 return data;
774 }
775 #endif
776
777
778
779 /**
780 * Set the size and format-related fields of a gl_texture_image struct
781 * to zero. This is used when a proxy texture test fails.
782 */
783 static void
784 clear_teximage_fields(struct gl_texture_image *img)
785 {
786 assert(img);
787 img->_BaseFormat = 0;
788 img->InternalFormat = 0;
789 img->Border = 0;
790 img->Width = 0;
791 img->Height = 0;
792 img->Depth = 0;
793 img->Width2 = 0;
794 img->Height2 = 0;
795 img->Depth2 = 0;
796 img->WidthLog2 = 0;
797 img->HeightLog2 = 0;
798 img->DepthLog2 = 0;
799 img->TexFormat = MESA_FORMAT_NONE;
800 img->NumSamples = 0;
801 img->FixedSampleLocations = GL_TRUE;
802 }
803
804
805 /**
806 * Initialize basic fields of the gl_texture_image struct.
807 *
808 * \param ctx GL context.
809 * \param img texture image structure to be initialized.
810 * \param width image width.
811 * \param height image height.
812 * \param depth image depth.
813 * \param border image border.
814 * \param internalFormat internal format.
815 * \param format the actual hardware format (one of MESA_FORMAT_*)
816 * \param numSamples number of samples per texel, or zero for non-MS.
817 * \param fixedSampleLocations are sample locations fixed?
818 *
819 * Fills in the fields of \p img with the given information.
820 * Note: width, height and depth include the border.
821 */
822 void
823 _mesa_init_teximage_fields_ms(struct gl_context *ctx,
824 struct gl_texture_image *img,
825 GLsizei width, GLsizei height, GLsizei depth,
826 GLint border, GLenum internalFormat,
827 mesa_format format,
828 GLuint numSamples, GLboolean fixedSampleLocations)
829 {
830 const GLint base_format =_mesa_base_tex_format(ctx, internalFormat);
831 GLenum target;
832 assert(img);
833 assert(width >= 0);
834 assert(height >= 0);
835 assert(depth >= 0);
836
837 target = img->TexObject->Target;
838 assert(base_format != -1);
839 img->_BaseFormat = (GLenum16)base_format;
840 img->InternalFormat = internalFormat;
841 img->Border = border;
842 img->Width = width;
843 img->Height = height;
844 img->Depth = depth;
845
846 img->Width2 = width - 2 * border; /* == 1 << img->WidthLog2; */
847 img->WidthLog2 = _mesa_logbase2(img->Width2);
848
849 switch(target) {
850 case GL_TEXTURE_1D:
851 case GL_TEXTURE_BUFFER:
852 case GL_PROXY_TEXTURE_1D:
853 if (height == 0)
854 img->Height2 = 0;
855 else
856 img->Height2 = 1;
857 img->HeightLog2 = 0;
858 if (depth == 0)
859 img->Depth2 = 0;
860 else
861 img->Depth2 = 1;
862 img->DepthLog2 = 0;
863 break;
864 case GL_TEXTURE_1D_ARRAY:
865 case GL_PROXY_TEXTURE_1D_ARRAY:
866 img->Height2 = height; /* no border */
867 img->HeightLog2 = 0; /* not used */
868 if (depth == 0)
869 img->Depth2 = 0;
870 else
871 img->Depth2 = 1;
872 img->DepthLog2 = 0;
873 break;
874 case GL_TEXTURE_2D:
875 case GL_TEXTURE_RECTANGLE:
876 case GL_TEXTURE_CUBE_MAP:
877 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
878 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
879 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
880 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
881 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
882 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
883 case GL_TEXTURE_EXTERNAL_OES:
884 case GL_PROXY_TEXTURE_2D:
885 case GL_PROXY_TEXTURE_RECTANGLE:
886 case GL_PROXY_TEXTURE_CUBE_MAP:
887 case GL_TEXTURE_2D_MULTISAMPLE:
888 case GL_PROXY_TEXTURE_2D_MULTISAMPLE:
889 img->Height2 = height - 2 * border; /* == 1 << img->HeightLog2; */
890 img->HeightLog2 = _mesa_logbase2(img->Height2);
891 if (depth == 0)
892 img->Depth2 = 0;
893 else
894 img->Depth2 = 1;
895 img->DepthLog2 = 0;
896 break;
897 case GL_TEXTURE_2D_ARRAY:
898 case GL_PROXY_TEXTURE_2D_ARRAY:
899 case GL_TEXTURE_CUBE_MAP_ARRAY:
900 case GL_PROXY_TEXTURE_CUBE_MAP_ARRAY:
901 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
902 case GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY:
903 img->Height2 = height - 2 * border; /* == 1 << img->HeightLog2; */
904 img->HeightLog2 = _mesa_logbase2(img->Height2);
905 img->Depth2 = depth; /* no border */
906 img->DepthLog2 = 0; /* not used */
907 break;
908 case GL_TEXTURE_3D:
909 case GL_PROXY_TEXTURE_3D:
910 img->Height2 = height - 2 * border; /* == 1 << img->HeightLog2; */
911 img->HeightLog2 = _mesa_logbase2(img->Height2);
912 img->Depth2 = depth - 2 * border; /* == 1 << img->DepthLog2; */
913 img->DepthLog2 = _mesa_logbase2(img->Depth2);
914 break;
915 default:
916 _mesa_problem(NULL, "invalid target 0x%x in _mesa_init_teximage_fields()",
917 target);
918 }
919
920 img->MaxNumLevels =
921 _mesa_get_tex_max_num_levels(target,
922 img->Width2, img->Height2, img->Depth2);
923 img->TexFormat = format;
924 img->NumSamples = numSamples;
925 img->FixedSampleLocations = fixedSampleLocations;
926 }
927
928
929 void
930 _mesa_init_teximage_fields(struct gl_context *ctx,
931 struct gl_texture_image *img,
932 GLsizei width, GLsizei height, GLsizei depth,
933 GLint border, GLenum internalFormat,
934 mesa_format format)
935 {
936 _mesa_init_teximage_fields_ms(ctx, img, width, height, depth, border,
937 internalFormat, format, 0, GL_TRUE);
938 }
939
940
941 /**
942 * Free and clear fields of the gl_texture_image struct.
943 *
944 * \param ctx GL context.
945 * \param texImage texture image structure to be cleared.
946 *
947 * After the call, \p texImage will have no data associated with it. Its
948 * fields are cleared so that its parent object will test incomplete.
949 */
950 void
951 _mesa_clear_texture_image(struct gl_context *ctx,
952 struct gl_texture_image *texImage)
953 {
954 ctx->Driver.FreeTextureImageBuffer(ctx, texImage);
955 clear_teximage_fields(texImage);
956 }
957
958
959 /**
960 * Check the width, height, depth and border of a texture image are legal.
961 * Used by all the glTexImage, glCompressedTexImage and glCopyTexImage
962 * functions.
963 * The target and level parameters will have already been validated.
964 * \return GL_TRUE if size is OK, GL_FALSE otherwise.
965 */
966 GLboolean
967 _mesa_legal_texture_dimensions(struct gl_context *ctx, GLenum target,
968 GLint level, GLint width, GLint height,
969 GLint depth, GLint border)
970 {
971 GLint maxSize;
972
973 switch (target) {
974 case GL_TEXTURE_1D:
975 case GL_PROXY_TEXTURE_1D:
976 maxSize = ctx->Const.MaxTextureSize >> level;
977 if (width < 2 * border || width > 2 * border + maxSize)
978 return GL_FALSE;
979 if (!ctx->Extensions.ARB_texture_non_power_of_two) {
980 if (width > 0 && !_mesa_is_pow_two(width - 2 * border))
981 return GL_FALSE;
982 }
983 return GL_TRUE;
984
985 case GL_TEXTURE_2D:
986 case GL_PROXY_TEXTURE_2D:
987 case GL_TEXTURE_2D_MULTISAMPLE:
988 case GL_PROXY_TEXTURE_2D_MULTISAMPLE:
989 maxSize = ctx->Const.MaxTextureSize >> level;
990 if (width < 2 * border || width > 2 * border + maxSize)
991 return GL_FALSE;
992 if (height < 2 * border || height > 2 * border + maxSize)
993 return GL_FALSE;
994 if (!ctx->Extensions.ARB_texture_non_power_of_two) {
995 if (width > 0 && !_mesa_is_pow_two(width - 2 * border))
996 return GL_FALSE;
997 if (height > 0 && !_mesa_is_pow_two(height - 2 * border))
998 return GL_FALSE;
999 }
1000 return GL_TRUE;
1001
1002 case GL_TEXTURE_3D:
1003 case GL_PROXY_TEXTURE_3D:
1004 maxSize = 1 << (ctx->Const.Max3DTextureLevels - 1);
1005 maxSize >>= level;
1006 if (width < 2 * border || width > 2 * border + maxSize)
1007 return GL_FALSE;
1008 if (height < 2 * border || height > 2 * border + maxSize)
1009 return GL_FALSE;
1010 if (depth < 2 * border || depth > 2 * border + maxSize)
1011 return GL_FALSE;
1012 if (!ctx->Extensions.ARB_texture_non_power_of_two) {
1013 if (width > 0 && !_mesa_is_pow_two(width - 2 * border))
1014 return GL_FALSE;
1015 if (height > 0 && !_mesa_is_pow_two(height - 2 * border))
1016 return GL_FALSE;
1017 if (depth > 0 && !_mesa_is_pow_two(depth - 2 * border))
1018 return GL_FALSE;
1019 }
1020 return GL_TRUE;
1021
1022 case GL_TEXTURE_RECTANGLE_NV:
1023 case GL_PROXY_TEXTURE_RECTANGLE_NV:
1024 if (level != 0)
1025 return GL_FALSE;
1026 maxSize = ctx->Const.MaxTextureRectSize;
1027 if (width < 0 || width > maxSize)
1028 return GL_FALSE;
1029 if (height < 0 || height > maxSize)
1030 return GL_FALSE;
1031 return GL_TRUE;
1032
1033 case GL_TEXTURE_CUBE_MAP:
1034 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
1035 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
1036 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
1037 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
1038 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
1039 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
1040 case GL_PROXY_TEXTURE_CUBE_MAP:
1041 maxSize = 1 << (ctx->Const.MaxCubeTextureLevels - 1);
1042 maxSize >>= level;
1043 if (width != height)
1044 return GL_FALSE;
1045 if (width < 2 * border || width > 2 * border + maxSize)
1046 return GL_FALSE;
1047 if (height < 2 * border || height > 2 * border + maxSize)
1048 return GL_FALSE;
1049 if (!ctx->Extensions.ARB_texture_non_power_of_two) {
1050 if (width > 0 && !_mesa_is_pow_two(width - 2 * border))
1051 return GL_FALSE;
1052 if (height > 0 && !_mesa_is_pow_two(height - 2 * border))
1053 return GL_FALSE;
1054 }
1055 return GL_TRUE;
1056
1057 case GL_TEXTURE_1D_ARRAY_EXT:
1058 case GL_PROXY_TEXTURE_1D_ARRAY_EXT:
1059 maxSize = ctx->Const.MaxTextureSize >> level;
1060 if (width < 2 * border || width > 2 * border + maxSize)
1061 return GL_FALSE;
1062 if (height < 0 || height > ctx->Const.MaxArrayTextureLayers)
1063 return GL_FALSE;
1064 if (!ctx->Extensions.ARB_texture_non_power_of_two) {
1065 if (width > 0 && !_mesa_is_pow_two(width - 2 * border))
1066 return GL_FALSE;
1067 }
1068 return GL_TRUE;
1069
1070 case GL_TEXTURE_2D_ARRAY_EXT:
1071 case GL_PROXY_TEXTURE_2D_ARRAY_EXT:
1072 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
1073 case GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY:
1074 maxSize = ctx->Const.MaxTextureSize >> level;
1075 if (width < 2 * border || width > 2 * border + maxSize)
1076 return GL_FALSE;
1077 if (height < 2 * border || height > 2 * border + maxSize)
1078 return GL_FALSE;
1079 if (depth < 0 || depth > ctx->Const.MaxArrayTextureLayers)
1080 return GL_FALSE;
1081 if (!ctx->Extensions.ARB_texture_non_power_of_two) {
1082 if (width > 0 && !_mesa_is_pow_two(width - 2 * border))
1083 return GL_FALSE;
1084 if (height > 0 && !_mesa_is_pow_two(height - 2 * border))
1085 return GL_FALSE;
1086 }
1087 return GL_TRUE;
1088
1089 case GL_TEXTURE_CUBE_MAP_ARRAY:
1090 case GL_PROXY_TEXTURE_CUBE_MAP_ARRAY:
1091 maxSize = 1 << (ctx->Const.MaxCubeTextureLevels - 1);
1092 if (width < 2 * border || width > 2 * border + maxSize)
1093 return GL_FALSE;
1094 if (height < 2 * border || height > 2 * border + maxSize)
1095 return GL_FALSE;
1096 if (depth < 0 || depth > ctx->Const.MaxArrayTextureLayers || depth % 6)
1097 return GL_FALSE;
1098 if (width != height)
1099 return GL_FALSE;
1100 if (level >= ctx->Const.MaxCubeTextureLevels)
1101 return GL_FALSE;
1102 if (!ctx->Extensions.ARB_texture_non_power_of_two) {
1103 if (width > 0 && !_mesa_is_pow_two(width - 2 * border))
1104 return GL_FALSE;
1105 if (height > 0 && !_mesa_is_pow_two(height - 2 * border))
1106 return GL_FALSE;
1107 }
1108 return GL_TRUE;
1109 default:
1110 _mesa_problem(ctx, "Invalid target in _mesa_legal_texture_dimensions()");
1111 return GL_FALSE;
1112 }
1113 }
1114
1115 static bool
1116 error_check_subtexture_negative_dimensions(struct gl_context *ctx,
1117 GLuint dims,
1118 GLsizei subWidth,
1119 GLsizei subHeight,
1120 GLsizei subDepth,
1121 const char *func)
1122 {
1123 /* Check size */
1124 if (subWidth < 0) {
1125 _mesa_error(ctx, GL_INVALID_VALUE, "%s(width=%d)", func, subWidth);
1126 return true;
1127 }
1128
1129 if (dims > 1 && subHeight < 0) {
1130 _mesa_error(ctx, GL_INVALID_VALUE, "%s(height=%d)", func, subHeight);
1131 return true;
1132 }
1133
1134 if (dims > 2 && subDepth < 0) {
1135 _mesa_error(ctx, GL_INVALID_VALUE, "%s(depth=%d)", func, subDepth);
1136 return true;
1137 }
1138
1139 return false;
1140 }
1141
1142 /**
1143 * Do error checking of xoffset, yoffset, zoffset, width, height and depth
1144 * for glTexSubImage, glCopyTexSubImage and glCompressedTexSubImage.
1145 * \param destImage the destination texture image.
1146 * \return GL_TRUE if error found, GL_FALSE otherwise.
1147 */
1148 static GLboolean
1149 error_check_subtexture_dimensions(struct gl_context *ctx, GLuint dims,
1150 const struct gl_texture_image *destImage,
1151 GLint xoffset, GLint yoffset, GLint zoffset,
1152 GLsizei subWidth, GLsizei subHeight,
1153 GLsizei subDepth, const char *func)
1154 {
1155 const GLenum target = destImage->TexObject->Target;
1156 GLuint bw, bh, bd;
1157
1158 /* check xoffset and width */
1159 if (xoffset < - (GLint) destImage->Border) {
1160 _mesa_error(ctx, GL_INVALID_VALUE, "%s(xoffset)", func);
1161 return GL_TRUE;
1162 }
1163
1164 if (xoffset + subWidth > (GLint) destImage->Width) {
1165 _mesa_error(ctx, GL_INVALID_VALUE, "%s(xoffset %d + width %d > %u)", func,
1166 xoffset, subWidth, destImage->Width);
1167 return GL_TRUE;
1168 }
1169
1170 /* check yoffset and height */
1171 if (dims > 1) {
1172 GLint yBorder = (target == GL_TEXTURE_1D_ARRAY) ? 0 : destImage->Border;
1173 if (yoffset < -yBorder) {
1174 _mesa_error(ctx, GL_INVALID_VALUE, "%s(yoffset)", func);
1175 return GL_TRUE;
1176 }
1177 if (yoffset + subHeight > (GLint) destImage->Height) {
1178 _mesa_error(ctx, GL_INVALID_VALUE, "%s(yoffset %d + height %d > %u)",
1179 func, yoffset, subHeight, destImage->Height);
1180 return GL_TRUE;
1181 }
1182 }
1183
1184 /* check zoffset and depth */
1185 if (dims > 2) {
1186 GLint depth;
1187 GLint zBorder = (target == GL_TEXTURE_2D_ARRAY ||
1188 target == GL_TEXTURE_CUBE_MAP_ARRAY) ?
1189 0 : destImage->Border;
1190
1191 if (zoffset < -zBorder) {
1192 _mesa_error(ctx, GL_INVALID_VALUE, "%s(zoffset)", func);
1193 return GL_TRUE;
1194 }
1195
1196 depth = (GLint) destImage->Depth;
1197 if (target == GL_TEXTURE_CUBE_MAP)
1198 depth = 6;
1199 if (zoffset + subDepth > depth) {
1200 _mesa_error(ctx, GL_INVALID_VALUE, "%s(zoffset %d + depth %d > %u)",
1201 func, zoffset, subDepth, depth);
1202 return GL_TRUE;
1203 }
1204 }
1205
1206 /*
1207 * The OpenGL spec (and GL_ARB_texture_compression) says only whole
1208 * compressed texture images can be updated. But, that restriction may be
1209 * relaxed for particular compressed formats. At this time, all the
1210 * compressed formats supported by Mesa allow sub-textures to be updated
1211 * along compressed block boundaries.
1212 */
1213 _mesa_get_format_block_size_3d(destImage->TexFormat, &bw, &bh, &bd);
1214
1215 if (bw != 1 || bh != 1 || bd != 1) {
1216 /* offset must be multiple of block size */
1217 if ((xoffset % bw != 0) || (yoffset % bh != 0) || (zoffset % bd != 0)) {
1218 _mesa_error(ctx, GL_INVALID_OPERATION,
1219 "%s(xoffset = %d, yoffset = %d, zoffset = %d)",
1220 func, xoffset, yoffset, zoffset);
1221 return GL_TRUE;
1222 }
1223
1224 /* The size must be a multiple of bw x bh, or we must be using a
1225 * offset+size that exactly hits the edge of the image. This
1226 * is important for small mipmap levels (1x1, 2x1, etc) and for
1227 * NPOT textures.
1228 */
1229 if ((subWidth % bw != 0) &&
1230 (xoffset + subWidth != (GLint) destImage->Width)) {
1231 _mesa_error(ctx, GL_INVALID_OPERATION,
1232 "%s(width = %d)", func, subWidth);
1233 return GL_TRUE;
1234 }
1235
1236 if ((subHeight % bh != 0) &&
1237 (yoffset + subHeight != (GLint) destImage->Height)) {
1238 _mesa_error(ctx, GL_INVALID_OPERATION,
1239 "%s(height = %d)", func, subHeight);
1240 return GL_TRUE;
1241 }
1242
1243 if ((subDepth % bd != 0) &&
1244 (zoffset + subDepth != (GLint) destImage->Depth)) {
1245 _mesa_error(ctx, GL_INVALID_OPERATION,
1246 "%s(depth = %d)", func, subDepth);
1247 return GL_TRUE;
1248 }
1249 }
1250
1251 return GL_FALSE;
1252 }
1253
1254
1255
1256
1257 /**
1258 * This is the fallback for Driver.TestProxyTexImage() for doing device-
1259 * specific texture image size checks.
1260 *
1261 * A hardware driver might override this function if, for example, the
1262 * max 3D texture size is 512x512x64 (i.e. not a cube).
1263 *
1264 * Note that width, height, depth == 0 is not an error. However, a
1265 * texture with zero width/height/depth will be considered "incomplete"
1266 * and texturing will effectively be disabled.
1267 *
1268 * \param target any texture target/type
1269 * \param numLevels number of mipmap levels in the texture or 0 if not known
1270 * \param level as passed to glTexImage
1271 * \param format the MESA_FORMAT_x for the tex image
1272 * \param numSamples number of samples per texel
1273 * \param width as passed to glTexImage
1274 * \param height as passed to glTexImage
1275 * \param depth as passed to glTexImage
1276 * \return GL_TRUE if the image is acceptable, GL_FALSE if not acceptable.
1277 */
1278 GLboolean
1279 _mesa_test_proxy_teximage(struct gl_context *ctx, GLenum target,
1280 GLuint numLevels, ASSERTED GLint level,
1281 mesa_format format, GLuint numSamples,
1282 GLint width, GLint height, GLint depth)
1283 {
1284 uint64_t bytes, mbytes;
1285
1286 if (numLevels > 0) {
1287 /* Compute total memory for a whole mipmap. This is the path
1288 * taken for glTexStorage(GL_PROXY_TEXTURE_x).
1289 */
1290 unsigned l;
1291
1292 assert(level == 0);
1293
1294 bytes = 0;
1295
1296 for (l = 0; l < numLevels; l++) {
1297 GLint nextWidth, nextHeight, nextDepth;
1298
1299 bytes += _mesa_format_image_size64(format, width, height, depth);
1300
1301 if (_mesa_next_mipmap_level_size(target, 0, width, height, depth,
1302 &nextWidth, &nextHeight,
1303 &nextDepth)) {
1304 width = nextWidth;
1305 height = nextHeight;
1306 depth = nextDepth;
1307 } else {
1308 break;
1309 }
1310 }
1311 } else {
1312 /* We just compute the size of one mipmap level. This is the path
1313 * taken for glTexImage(GL_PROXY_TEXTURE_x).
1314 */
1315 bytes = _mesa_format_image_size64(format, width, height, depth);
1316 }
1317
1318 bytes *= _mesa_num_tex_faces(target);
1319 bytes *= MAX2(1, numSamples);
1320
1321 mbytes = bytes / (1024 * 1024); /* convert to MB */
1322
1323 /* We just check if the image size is less than MaxTextureMbytes.
1324 * Some drivers may do more specific checks.
1325 */
1326 return mbytes <= (uint64_t) ctx->Const.MaxTextureMbytes;
1327 }
1328
1329
1330 /**
1331 * Return true if the format is only valid for glCompressedTexImage.
1332 */
1333 static bool
1334 compressedteximage_only_format(GLenum format)
1335 {
1336 switch (format) {
1337 case GL_PALETTE4_RGB8_OES:
1338 case GL_PALETTE4_RGBA8_OES:
1339 case GL_PALETTE4_R5_G6_B5_OES:
1340 case GL_PALETTE4_RGBA4_OES:
1341 case GL_PALETTE4_RGB5_A1_OES:
1342 case GL_PALETTE8_RGB8_OES:
1343 case GL_PALETTE8_RGBA8_OES:
1344 case GL_PALETTE8_R5_G6_B5_OES:
1345 case GL_PALETTE8_RGBA4_OES:
1346 case GL_PALETTE8_RGB5_A1_OES:
1347 case GL_ATC_RGB_AMD:
1348 case GL_ATC_RGBA_EXPLICIT_ALPHA_AMD:
1349 case GL_ATC_RGBA_INTERPOLATED_ALPHA_AMD:
1350 return true;
1351 default:
1352 return false;
1353 }
1354 }
1355
1356 /**
1357 * Return true if the format doesn't support online compression.
1358 */
1359 bool
1360 _mesa_format_no_online_compression(GLenum format)
1361 {
1362 return _mesa_is_astc_format(format) ||
1363 _mesa_is_etc2_format(format) ||
1364 compressedteximage_only_format(format);
1365 }
1366
1367 /* Writes to an GL error pointer if non-null and returns whether or not the
1368 * error is GL_NO_ERROR */
1369 static bool
1370 write_error(GLenum *err_ptr, GLenum error)
1371 {
1372 if (err_ptr)
1373 *err_ptr = error;
1374
1375 return error == GL_NO_ERROR;
1376 }
1377
1378 /**
1379 * Helper function to determine whether a target and specific compression
1380 * format are supported. The error parameter returns GL_NO_ERROR if the
1381 * target can be compressed. Otherwise it returns either GL_INVALID_OPERATION
1382 * or GL_INVALID_ENUM, whichever is more appropriate.
1383 */
1384 GLboolean
1385 _mesa_target_can_be_compressed(const struct gl_context *ctx, GLenum target,
1386 GLenum intFormat, GLenum *error)
1387 {
1388 GLboolean target_can_be_compresed = GL_FALSE;
1389 mesa_format format = _mesa_glenum_to_compressed_format(intFormat);
1390 enum mesa_format_layout layout = _mesa_get_format_layout(format);
1391
1392 switch (target) {
1393 case GL_TEXTURE_2D:
1394 case GL_PROXY_TEXTURE_2D:
1395 target_can_be_compresed = GL_TRUE; /* true for any compressed format so far */
1396 break;
1397 case GL_PROXY_TEXTURE_CUBE_MAP:
1398 case GL_TEXTURE_CUBE_MAP:
1399 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
1400 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
1401 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
1402 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
1403 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
1404 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
1405 target_can_be_compresed = ctx->Extensions.ARB_texture_cube_map;
1406 break;
1407 case GL_PROXY_TEXTURE_2D_ARRAY_EXT:
1408 case GL_TEXTURE_2D_ARRAY_EXT:
1409 target_can_be_compresed = ctx->Extensions.EXT_texture_array;
1410 break;
1411 case GL_PROXY_TEXTURE_CUBE_MAP_ARRAY:
1412 case GL_TEXTURE_CUBE_MAP_ARRAY:
1413 /* From the KHR_texture_compression_astc_hdr spec:
1414 *
1415 * Add a second new column "3D Tex." which is empty for all non-ASTC
1416 * formats. If only the LDR profile is supported by the
1417 * implementation, this column is also empty for all ASTC formats. If
1418 * both the LDR and HDR profiles are supported only, this column is
1419 * checked for all ASTC formats.
1420 *
1421 * Add a third new column "Cube Map Array Tex." which is empty for all
1422 * non-ASTC formats, and checked for all ASTC formats.
1423 *
1424 * and,
1425 *
1426 * 'An INVALID_OPERATION error is generated by CompressedTexImage3D
1427 * if <internalformat> is TEXTURE_CUBE_MAP_ARRAY and the
1428 * "Cube Map Array" column of table 8.19 is *not* checked, or if
1429 * <internalformat> is TEXTURE_3D and the "3D Tex." column of table
1430 * 8.19 is *not* checked'
1431 *
1432 * The instances of <internalformat> above should say <target>.
1433 *
1434 * ETC2/EAC formats are the only alternative in GLES and thus such errors
1435 * have already been handled by normal ETC2/EAC behavior.
1436 */
1437
1438 /* From section 3.8.6, page 146 of OpenGL ES 3.0 spec:
1439 *
1440 * "The ETC2/EAC texture compression algorithm supports only
1441 * two-dimensional images. If internalformat is an ETC2/EAC format,
1442 * glCompressedTexImage3D will generate an INVALID_OPERATION error if
1443 * target is not TEXTURE_2D_ARRAY."
1444 *
1445 * This should also be applicable for glTexStorage3D(). Other available
1446 * targets for these functions are: TEXTURE_3D and TEXTURE_CUBE_MAP_ARRAY.
1447 *
1448 * Section 8.7, page 179 of OpenGL ES 3.2 adds:
1449 *
1450 * An INVALID_OPERATION error is generated by CompressedTexImage3D
1451 * if internalformat is one of the the formats in table 8.17 and target is
1452 * not TEXTURE_2D_ARRAY, TEXTURE_CUBE_MAP_ARRAY or TEXTURE_3D.
1453 *
1454 * An INVALID_OPERATION error is generated by CompressedTexImage3D
1455 * if internalformat is TEXTURE_CUBE_MAP_ARRAY and the “Cube Map
1456 * Array” column of table 8.17 is not checked, or if internalformat
1457 * is TEXTURE_- 3D and the “3D Tex.” column of table 8.17 is not
1458 * checked.
1459 *
1460 * The instances of <internalformat> above should say <target>.
1461 *
1462 * Such table 8.17 has checked "Cube Map Array" column for all the
1463 * cases. So in practice, TEXTURE_CUBE_MAP_ARRAY is now valid for OpenGL ES 3.2
1464 */
1465 if (layout == MESA_FORMAT_LAYOUT_ETC2 && _mesa_is_gles3(ctx) &&
1466 !_mesa_is_gles32(ctx))
1467 return write_error(error, GL_INVALID_OPERATION);
1468 target_can_be_compresed = _mesa_has_texture_cube_map_array(ctx);
1469 break;
1470 case GL_TEXTURE_3D:
1471 switch (layout) {
1472 case MESA_FORMAT_LAYOUT_ETC2:
1473 /* See ETC2/EAC comment in case GL_TEXTURE_CUBE_MAP_ARRAY. */
1474 if (_mesa_is_gles3(ctx))
1475 return write_error(error, GL_INVALID_OPERATION);
1476 break;
1477 case MESA_FORMAT_LAYOUT_BPTC:
1478 target_can_be_compresed = ctx->Extensions.ARB_texture_compression_bptc;
1479 break;
1480 case MESA_FORMAT_LAYOUT_ASTC:
1481 target_can_be_compresed =
1482 ctx->Extensions.KHR_texture_compression_astc_hdr ||
1483 ctx->Extensions.KHR_texture_compression_astc_sliced_3d;
1484
1485 /* Throw an INVALID_OPERATION error if the target is TEXTURE_3D and
1486 * neither of the above extensions are supported. See comment in
1487 * switch case GL_TEXTURE_CUBE_MAP_ARRAY for more info.
1488 */
1489 if (!target_can_be_compresed)
1490 return write_error(error, GL_INVALID_OPERATION);
1491 break;
1492 default:
1493 break;
1494 }
1495 default:
1496 break;
1497 }
1498 return write_error(error,
1499 target_can_be_compresed ? GL_NO_ERROR : GL_INVALID_ENUM);
1500 }
1501
1502
1503 /**
1504 * Check if the given texture target value is legal for a
1505 * glTexImage1/2/3D call.
1506 */
1507 static GLboolean
1508 legal_teximage_target(struct gl_context *ctx, GLuint dims, GLenum target)
1509 {
1510 switch (dims) {
1511 case 1:
1512 switch (target) {
1513 case GL_TEXTURE_1D:
1514 case GL_PROXY_TEXTURE_1D:
1515 return _mesa_is_desktop_gl(ctx);
1516 default:
1517 return GL_FALSE;
1518 }
1519 case 2:
1520 switch (target) {
1521 case GL_TEXTURE_2D:
1522 return GL_TRUE;
1523 case GL_PROXY_TEXTURE_2D:
1524 return _mesa_is_desktop_gl(ctx);
1525 case GL_PROXY_TEXTURE_CUBE_MAP:
1526 return _mesa_is_desktop_gl(ctx)
1527 && ctx->Extensions.ARB_texture_cube_map;
1528 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
1529 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
1530 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
1531 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
1532 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
1533 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
1534 return ctx->Extensions.ARB_texture_cube_map;
1535 case GL_TEXTURE_RECTANGLE_NV:
1536 case GL_PROXY_TEXTURE_RECTANGLE_NV:
1537 return _mesa_is_desktop_gl(ctx)
1538 && ctx->Extensions.NV_texture_rectangle;
1539 case GL_TEXTURE_1D_ARRAY_EXT:
1540 case GL_PROXY_TEXTURE_1D_ARRAY_EXT:
1541 return _mesa_is_desktop_gl(ctx) && ctx->Extensions.EXT_texture_array;
1542 default:
1543 return GL_FALSE;
1544 }
1545 case 3:
1546 switch (target) {
1547 case GL_TEXTURE_3D:
1548 return GL_TRUE;
1549 case GL_PROXY_TEXTURE_3D:
1550 return _mesa_is_desktop_gl(ctx);
1551 case GL_TEXTURE_2D_ARRAY_EXT:
1552 return (_mesa_is_desktop_gl(ctx) && ctx->Extensions.EXT_texture_array)
1553 || _mesa_is_gles3(ctx);
1554 case GL_PROXY_TEXTURE_2D_ARRAY_EXT:
1555 return _mesa_is_desktop_gl(ctx) && ctx->Extensions.EXT_texture_array;
1556 case GL_TEXTURE_CUBE_MAP_ARRAY:
1557 case GL_PROXY_TEXTURE_CUBE_MAP_ARRAY:
1558 return _mesa_has_texture_cube_map_array(ctx);
1559 default:
1560 return GL_FALSE;
1561 }
1562 default:
1563 _mesa_problem(ctx, "invalid dims=%u in legal_teximage_target()", dims);
1564 return GL_FALSE;
1565 }
1566 }
1567
1568
1569 /**
1570 * Check if the given texture target value is legal for a
1571 * glTexSubImage, glCopyTexSubImage or glCopyTexImage call.
1572 * The difference compared to legal_teximage_target() above is that
1573 * proxy targets are not supported.
1574 */
1575 static GLboolean
1576 legal_texsubimage_target(struct gl_context *ctx, GLuint dims, GLenum target,
1577 bool dsa)
1578 {
1579 switch (dims) {
1580 case 1:
1581 return _mesa_is_desktop_gl(ctx) && target == GL_TEXTURE_1D;
1582 case 2:
1583 switch (target) {
1584 case GL_TEXTURE_2D:
1585 return GL_TRUE;
1586 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
1587 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
1588 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
1589 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
1590 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
1591 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
1592 return ctx->Extensions.ARB_texture_cube_map;
1593 case GL_TEXTURE_RECTANGLE_NV:
1594 return _mesa_is_desktop_gl(ctx)
1595 && ctx->Extensions.NV_texture_rectangle;
1596 case GL_TEXTURE_1D_ARRAY_EXT:
1597 return _mesa_is_desktop_gl(ctx) && ctx->Extensions.EXT_texture_array;
1598 default:
1599 return GL_FALSE;
1600 }
1601 case 3:
1602 switch (target) {
1603 case GL_TEXTURE_3D:
1604 return GL_TRUE;
1605 case GL_TEXTURE_2D_ARRAY_EXT:
1606 return (_mesa_is_desktop_gl(ctx) && ctx->Extensions.EXT_texture_array)
1607 || _mesa_is_gles3(ctx);
1608 case GL_TEXTURE_CUBE_MAP_ARRAY:
1609 case GL_PROXY_TEXTURE_CUBE_MAP_ARRAY:
1610 return _mesa_has_texture_cube_map_array(ctx);
1611
1612 /* Table 8.15 of the OpenGL 4.5 core profile spec
1613 * (20141030) says that TEXTURE_CUBE_MAP is valid for TextureSubImage3D
1614 * and CopyTextureSubImage3D.
1615 */
1616 case GL_TEXTURE_CUBE_MAP:
1617 return dsa;
1618 default:
1619 return GL_FALSE;
1620 }
1621 default:
1622 _mesa_problem(ctx, "invalid dims=%u in legal_texsubimage_target()",
1623 dims);
1624 return GL_FALSE;
1625 }
1626 }
1627
1628
1629 /**
1630 * Helper function to determine if a texture object is mutable (in terms
1631 * of GL_ARB_texture_storage/GL_ARB_bindless_texture).
1632 */
1633 static GLboolean
1634 mutable_tex_object(struct gl_texture_object *texObj)
1635 {
1636 if (!texObj)
1637 return GL_FALSE;
1638
1639 if (texObj->HandleAllocated) {
1640 /* The ARB_bindless_texture spec says:
1641 *
1642 * "The error INVALID_OPERATION is generated by TexImage*, CopyTexImage*,
1643 * CompressedTexImage*, TexBuffer*, TexParameter*, as well as other
1644 * functions defined in terms of these, if the texture object to be
1645 * modified is referenced by one or more texture or image handles."
1646 */
1647 return GL_FALSE;
1648 }
1649
1650 return !texObj->Immutable;
1651 }
1652
1653
1654 /**
1655 * Return expected size of a compressed texture.
1656 */
1657 static GLuint
1658 compressed_tex_size(GLsizei width, GLsizei height, GLsizei depth,
1659 GLenum glformat)
1660 {
1661 mesa_format mesaFormat = _mesa_glenum_to_compressed_format(glformat);
1662 return _mesa_format_image_size(mesaFormat, width, height, depth);
1663 }
1664
1665 /**
1666 * Verify that a texture format is valid with a particular target
1667 *
1668 * In particular, textures with base format of \c GL_DEPTH_COMPONENT or
1669 * \c GL_DEPTH_STENCIL are only valid with certain, context dependent texture
1670 * targets.
1671 *
1672 * \param ctx GL context
1673 * \param target Texture target
1674 * \param internalFormat Internal format of the texture image
1675 *
1676 * \returns true if the combination is legal, false otherwise.
1677 */
1678 bool
1679 _mesa_legal_texture_base_format_for_target(struct gl_context *ctx,
1680 GLenum target, GLenum internalFormat)
1681 {
1682 if (_mesa_base_tex_format(ctx, internalFormat) == GL_DEPTH_COMPONENT
1683 || _mesa_base_tex_format(ctx, internalFormat) == GL_DEPTH_STENCIL
1684 || _mesa_base_tex_format(ctx, internalFormat) == GL_STENCIL_INDEX) {
1685 /* Section 3.8.3 (Texture Image Specification) of the OpenGL 3.3 Core
1686 * Profile spec says:
1687 *
1688 * "Textures with a base internal format of DEPTH_COMPONENT or
1689 * DEPTH_STENCIL are supported by texture image specification
1690 * commands only if target is TEXTURE_1D, TEXTURE_2D,
1691 * TEXTURE_1D_ARRAY, TEXTURE_2D_ARRAY, TEXTURE_RECTANGLE,
1692 * TEXTURE_CUBE_MAP, PROXY_TEXTURE_1D, PROXY_TEXTURE_2D,
1693 * PROXY_TEXTURE_1D_ARRAY, PROXY_TEXTURE_2D_ARRAY,
1694 * PROXY_TEXTURE_RECTANGLE, or PROXY_TEXTURE_CUBE_MAP. Using these
1695 * formats in conjunction with any other target will result in an
1696 * INVALID_OPERATION error."
1697 *
1698 * Cubemaps are only supported with desktop OpenGL version >= 3.0,
1699 * EXT_gpu_shader4, or, on OpenGL ES 2.0+, OES_depth_texture_cube_map.
1700 */
1701 if (target != GL_TEXTURE_1D &&
1702 target != GL_PROXY_TEXTURE_1D &&
1703 target != GL_TEXTURE_2D &&
1704 target != GL_PROXY_TEXTURE_2D &&
1705 target != GL_TEXTURE_1D_ARRAY &&
1706 target != GL_PROXY_TEXTURE_1D_ARRAY &&
1707 target != GL_TEXTURE_2D_ARRAY &&
1708 target != GL_PROXY_TEXTURE_2D_ARRAY &&
1709 target != GL_TEXTURE_RECTANGLE_ARB &&
1710 target != GL_PROXY_TEXTURE_RECTANGLE_ARB &&
1711 !((_mesa_is_cube_face(target) ||
1712 target == GL_TEXTURE_CUBE_MAP ||
1713 target == GL_PROXY_TEXTURE_CUBE_MAP) &&
1714 (ctx->Version >= 30 || ctx->Extensions.EXT_gpu_shader4
1715 || (ctx->API == API_OPENGLES2 && ctx->Extensions.OES_depth_texture_cube_map))) &&
1716 !((target == GL_TEXTURE_CUBE_MAP_ARRAY ||
1717 target == GL_PROXY_TEXTURE_CUBE_MAP_ARRAY) &&
1718 _mesa_has_texture_cube_map_array(ctx))) {
1719 return false;
1720 }
1721 }
1722
1723 return true;
1724 }
1725
1726 static bool
1727 texture_formats_agree(GLenum internalFormat,
1728 GLenum format)
1729 {
1730 GLboolean colorFormat;
1731 GLboolean is_format_depth_or_depthstencil;
1732 GLboolean is_internalFormat_depth_or_depthstencil;
1733
1734 /* Even though there are no color-index textures, we still have to support
1735 * uploading color-index data and remapping it to RGB via the
1736 * GL_PIXEL_MAP_I_TO_[RGBA] tables.
1737 */
1738 const GLboolean indexFormat = (format == GL_COLOR_INDEX);
1739
1740 is_internalFormat_depth_or_depthstencil =
1741 _mesa_is_depth_format(internalFormat) ||
1742 _mesa_is_depthstencil_format(internalFormat);
1743
1744 is_format_depth_or_depthstencil =
1745 _mesa_is_depth_format(format) ||
1746 _mesa_is_depthstencil_format(format);
1747
1748 colorFormat = _mesa_is_color_format(format);
1749
1750 if (_mesa_is_color_format(internalFormat) && !colorFormat && !indexFormat)
1751 return false;
1752
1753 if (is_internalFormat_depth_or_depthstencil !=
1754 is_format_depth_or_depthstencil)
1755 return false;
1756
1757 if (_mesa_is_ycbcr_format(internalFormat) != _mesa_is_ycbcr_format(format))
1758 return false;
1759
1760 return true;
1761 }
1762
1763 /**
1764 * Test the combination of format, type and internal format arguments of
1765 * different texture operations on GLES.
1766 *
1767 * \param ctx GL context.
1768 * \param format pixel data format given by the user.
1769 * \param type pixel data type given by the user.
1770 * \param internalFormat internal format given by the user.
1771 * \param callerName name of the caller function to print in the error message
1772 *
1773 * \return true if a error is found, false otherwise
1774 *
1775 * Currently, it is used by texture_error_check() and texsubimage_error_check().
1776 */
1777 static bool
1778 texture_format_error_check_gles(struct gl_context *ctx, GLenum format,
1779 GLenum type, GLenum internalFormat, const char *callerName)
1780 {
1781 GLenum err = _mesa_gles_error_check_format_and_type(ctx, format, type,
1782 internalFormat);
1783 if (err != GL_NO_ERROR) {
1784 _mesa_error(ctx, err,
1785 "%s(format = %s, type = %s, internalformat = %s)",
1786 callerName, _mesa_enum_to_string(format),
1787 _mesa_enum_to_string(type),
1788 _mesa_enum_to_string(internalFormat));
1789 return true;
1790 }
1791
1792 return false;
1793 }
1794
1795 /**
1796 * Test the glTexImage[123]D() parameters for errors.
1797 *
1798 * \param ctx GL context.
1799 * \param dimensions texture image dimensions (must be 1, 2 or 3).
1800 * \param target texture target given by the user (already validated).
1801 * \param level image level given by the user.
1802 * \param internalFormat internal format given by the user.
1803 * \param format pixel data format given by the user.
1804 * \param type pixel data type given by the user.
1805 * \param width image width given by the user.
1806 * \param height image height given by the user.
1807 * \param depth image depth given by the user.
1808 * \param border image border given by the user.
1809 *
1810 * \return GL_TRUE if a error is found, GL_FALSE otherwise
1811 *
1812 * Verifies each of the parameters against the constants specified in
1813 * __struct gl_contextRec::Const and the supported extensions, and according
1814 * to the OpenGL specification.
1815 * Note that we don't fully error-check the width, height, depth values
1816 * here. That's done in _mesa_legal_texture_dimensions() which is used
1817 * by several other GL entrypoints. Plus, texture dims have a special
1818 * interaction with proxy textures.
1819 */
1820 static GLboolean
1821 texture_error_check( struct gl_context *ctx,
1822 GLuint dimensions, GLenum target,
1823 struct gl_texture_object* texObj,
1824 GLint level, GLint internalFormat,
1825 GLenum format, GLenum type,
1826 GLint width, GLint height,
1827 GLint depth, GLint border,
1828 const GLvoid *pixels )
1829 {
1830 GLenum err;
1831
1832 /* Note: for proxy textures, some error conditions immediately generate
1833 * a GL error in the usual way. But others do not generate a GL error.
1834 * Instead, they cause the width, height, depth, format fields of the
1835 * texture image to be zeroed-out. The GL spec seems to indicate that the
1836 * zero-out behaviour is only used in cases related to memory allocation.
1837 */
1838
1839 /* level check */
1840 if (level < 0 || level >= _mesa_max_texture_levels(ctx, target)) {
1841 _mesa_error(ctx, GL_INVALID_VALUE,
1842 "glTexImage%dD(level=%d)", dimensions, level);
1843 return GL_TRUE;
1844 }
1845
1846 /* Check border */
1847 if (border < 0 || border > 1 ||
1848 ((ctx->API != API_OPENGL_COMPAT ||
1849 target == GL_TEXTURE_RECTANGLE_NV ||
1850 target == GL_PROXY_TEXTURE_RECTANGLE_NV) && border != 0)) {
1851 _mesa_error(ctx, GL_INVALID_VALUE,
1852 "glTexImage%dD(border=%d)", dimensions, border);
1853 return GL_TRUE;
1854 }
1855
1856 if (width < 0 || height < 0 || depth < 0) {
1857 _mesa_error(ctx, GL_INVALID_VALUE,
1858 "glTexImage%dD(width, height or depth < 0)", dimensions);
1859 return GL_TRUE;
1860 }
1861
1862 /* Check incoming image format and type */
1863 err = _mesa_error_check_format_and_type(ctx, format, type);
1864 if (err != GL_NO_ERROR) {
1865 /* Prior to OpenGL-ES 2.0, an INVALID_VALUE is expected instead of
1866 * INVALID_ENUM. From page 73 OpenGL ES 1.1 spec:
1867 *
1868 * "Specifying a value for internalformat that is not one of the
1869 * above (acceptable) values generates the error INVALID VALUE."
1870 */
1871 if (err == GL_INVALID_ENUM && _mesa_is_gles(ctx) && ctx->Version < 20)
1872 err = GL_INVALID_VALUE;
1873
1874 _mesa_error(ctx, err,
1875 "glTexImage%dD(incompatible format = %s, type = %s)",
1876 dimensions, _mesa_enum_to_string(format),
1877 _mesa_enum_to_string(type));
1878 return GL_TRUE;
1879 }
1880
1881 /* Check internalFormat */
1882 if (_mesa_base_tex_format(ctx, internalFormat) < 0) {
1883 _mesa_error(ctx, GL_INVALID_VALUE,
1884 "glTexImage%dD(internalFormat=%s)",
1885 dimensions, _mesa_enum_to_string(internalFormat));
1886 return GL_TRUE;
1887 }
1888
1889 /* OpenGL ES 1.x and OpenGL ES 2.0 impose additional restrictions on the
1890 * combinations of format, internalFormat, and type that can be used.
1891 * Formats and types that require additional extensions (e.g., GL_FLOAT
1892 * requires GL_OES_texture_float) are filtered elsewhere.
1893 */
1894 char bufCallerName[20];
1895 _mesa_snprintf(bufCallerName, 20, "glTexImage%dD", dimensions);
1896 if (_mesa_is_gles(ctx) &&
1897 texture_format_error_check_gles(ctx, format, type,
1898 internalFormat, bufCallerName)) {
1899 return GL_TRUE;
1900 }
1901
1902 /* validate the bound PBO, if any */
1903 if (!_mesa_validate_pbo_source(ctx, dimensions, &ctx->Unpack,
1904 width, height, depth, format, type,
1905 INT_MAX, pixels, "glTexImage")) {
1906 return GL_TRUE;
1907 }
1908
1909 /* make sure internal format and format basically agree */
1910 if (!texture_formats_agree(internalFormat, format)) {
1911 _mesa_error(ctx, GL_INVALID_OPERATION,
1912 "glTexImage%dD(incompatible internalFormat = %s, format = %s)",
1913 dimensions, _mesa_enum_to_string(internalFormat),
1914 _mesa_enum_to_string(format));
1915 return GL_TRUE;
1916 }
1917
1918 /* additional checks for ycbcr textures */
1919 if (internalFormat == GL_YCBCR_MESA) {
1920 assert(ctx->Extensions.MESA_ycbcr_texture);
1921 if (type != GL_UNSIGNED_SHORT_8_8_MESA &&
1922 type != GL_UNSIGNED_SHORT_8_8_REV_MESA) {
1923 char message[100];
1924 _mesa_snprintf(message, sizeof(message),
1925 "glTexImage%dD(format/type YCBCR mismatch)",
1926 dimensions);
1927 _mesa_error(ctx, GL_INVALID_ENUM, "%s", message);
1928 return GL_TRUE; /* error */
1929 }
1930 if (target != GL_TEXTURE_2D &&
1931 target != GL_PROXY_TEXTURE_2D &&
1932 target != GL_TEXTURE_RECTANGLE_NV &&
1933 target != GL_PROXY_TEXTURE_RECTANGLE_NV) {
1934 _mesa_error(ctx, GL_INVALID_ENUM,
1935 "glTexImage%dD(bad target for YCbCr texture)",
1936 dimensions);
1937 return GL_TRUE;
1938 }
1939 if (border != 0) {
1940 char message[100];
1941 _mesa_snprintf(message, sizeof(message),
1942 "glTexImage%dD(format=GL_YCBCR_MESA and border=%d)",
1943 dimensions, border);
1944 _mesa_error(ctx, GL_INVALID_VALUE, "%s", message);
1945 return GL_TRUE;
1946 }
1947 }
1948
1949 /* additional checks for depth textures */
1950 if (!_mesa_legal_texture_base_format_for_target(ctx, target, internalFormat)) {
1951 _mesa_error(ctx, GL_INVALID_OPERATION,
1952 "glTexImage%dD(bad target for texture)", dimensions);
1953 return GL_TRUE;
1954 }
1955
1956 /* additional checks for compressed textures */
1957 if (_mesa_is_compressed_format(ctx, internalFormat)) {
1958 GLenum err;
1959 if (!_mesa_target_can_be_compressed(ctx, target, internalFormat, &err)) {
1960 _mesa_error(ctx, err,
1961 "glTexImage%dD(target can't be compressed)", dimensions);
1962 return GL_TRUE;
1963 }
1964 if (_mesa_format_no_online_compression(internalFormat)) {
1965 _mesa_error(ctx, GL_INVALID_OPERATION,
1966 "glTexImage%dD(no compression for format)", dimensions);
1967 return GL_TRUE;
1968 }
1969 if (border != 0) {
1970 _mesa_error(ctx, GL_INVALID_OPERATION,
1971 "glTexImage%dD(border!=0)", dimensions);
1972 return GL_TRUE;
1973 }
1974 }
1975
1976 /* additional checks for integer textures */
1977 if ((ctx->Version >= 30 || ctx->Extensions.EXT_texture_integer) &&
1978 (_mesa_is_enum_format_integer(format) !=
1979 _mesa_is_enum_format_integer(internalFormat))) {
1980 _mesa_error(ctx, GL_INVALID_OPERATION,
1981 "glTexImage%dD(integer/non-integer format mismatch)",
1982 dimensions);
1983 return GL_TRUE;
1984 }
1985
1986 if (!mutable_tex_object(texObj)) {
1987 _mesa_error(ctx, GL_INVALID_OPERATION,
1988 "glTexImage%dD(immutable texture)", dimensions);
1989 return GL_TRUE;
1990 }
1991
1992 /* if we get here, the parameters are OK */
1993 return GL_FALSE;
1994 }
1995
1996
1997 /**
1998 * Error checking for glCompressedTexImage[123]D().
1999 * Note that the width, height and depth values are not fully error checked
2000 * here.
2001 * \return GL_TRUE if a error is found, GL_FALSE otherwise
2002 */
2003 static GLenum
2004 compressed_texture_error_check(struct gl_context *ctx, GLint dimensions,
2005 GLenum target, struct gl_texture_object* texObj,
2006 GLint level, GLenum internalFormat, GLsizei width,
2007 GLsizei height, GLsizei depth, GLint border,
2008 GLsizei imageSize, const GLvoid *data)
2009 {
2010 const GLint maxLevels = _mesa_max_texture_levels(ctx, target);
2011 GLint expectedSize;
2012 GLenum error = GL_NO_ERROR;
2013 char *reason = ""; /* no error */
2014
2015 if (!_mesa_target_can_be_compressed(ctx, target, internalFormat, &error)) {
2016 reason = "target";
2017 goto error;
2018 }
2019
2020 /* This will detect any invalid internalFormat value */
2021 if (!_mesa_is_compressed_format(ctx, internalFormat)) {
2022 _mesa_error(ctx, GL_INVALID_ENUM,
2023 "glCompressedTexImage%dD(internalFormat=%s)",
2024 dimensions, _mesa_enum_to_string(internalFormat));
2025 return GL_TRUE;
2026 }
2027
2028 /* validate the bound PBO, if any */
2029 if (!_mesa_validate_pbo_source_compressed(ctx, dimensions, &ctx->Unpack,
2030 imageSize, data,
2031 "glCompressedTexImage")) {
2032 return GL_TRUE;
2033 }
2034
2035 switch (internalFormat) {
2036 case GL_PALETTE4_RGB8_OES:
2037 case GL_PALETTE4_RGBA8_OES:
2038 case GL_PALETTE4_R5_G6_B5_OES:
2039 case GL_PALETTE4_RGBA4_OES:
2040 case GL_PALETTE4_RGB5_A1_OES:
2041 case GL_PALETTE8_RGB8_OES:
2042 case GL_PALETTE8_RGBA8_OES:
2043 case GL_PALETTE8_R5_G6_B5_OES:
2044 case GL_PALETTE8_RGBA4_OES:
2045 case GL_PALETTE8_RGB5_A1_OES:
2046 /* check level (note that level should be zero or less!) */
2047 if (level > 0 || level < -maxLevels) {
2048 reason = "level";
2049 error = GL_INVALID_VALUE;
2050 goto error;
2051 }
2052
2053 if (dimensions != 2) {
2054 reason = "compressed paletted textures must be 2D";
2055 error = GL_INVALID_OPERATION;
2056 goto error;
2057 }
2058
2059 /* Figure out the expected texture size (in bytes). This will be
2060 * checked against the actual size later.
2061 */
2062 expectedSize = _mesa_cpal_compressed_size(level, internalFormat,
2063 width, height);
2064
2065 /* This is for the benefit of the TestProxyTexImage below. It expects
2066 * level to be non-negative. OES_compressed_paletted_texture uses a
2067 * weird mechanism where the level specified to glCompressedTexImage2D
2068 * is -(n-1) number of levels in the texture, and the data specifies the
2069 * complete mipmap stack. This is done to ensure the palette is the
2070 * same for all levels.
2071 */
2072 level = -level;
2073 break;
2074
2075 default:
2076 /* check level */
2077 if (level < 0 || level >= maxLevels) {
2078 reason = "level";
2079 error = GL_INVALID_VALUE;
2080 goto error;
2081 }
2082
2083 /* Figure out the expected texture size (in bytes). This will be
2084 * checked against the actual size later.
2085 */
2086 expectedSize = compressed_tex_size(width, height, depth, internalFormat);
2087 break;
2088 }
2089
2090 /* This should really never fail */
2091 if (_mesa_base_tex_format(ctx, internalFormat) < 0) {
2092 reason = "internalFormat";
2093 error = GL_INVALID_ENUM;
2094 goto error;
2095 }
2096
2097 /* No compressed formats support borders at this time */
2098 if (border != 0) {
2099 reason = "border != 0";
2100 error = GL_INVALID_VALUE;
2101 goto error;
2102 }
2103
2104 /* Check for invalid pixel storage modes */
2105 if (!_mesa_compressed_pixel_storage_error_check(ctx, dimensions,
2106 &ctx->Unpack,
2107 "glCompressedTexImage")) {
2108 return GL_FALSE;
2109 }
2110
2111 /* check image size in bytes */
2112 if (expectedSize != imageSize) {
2113 /* Per GL_ARB_texture_compression: GL_INVALID_VALUE is generated [...]
2114 * if <imageSize> is not consistent with the format, dimensions, and
2115 * contents of the specified image.
2116 */
2117 reason = "imageSize inconsistent with width/height/format";
2118 error = GL_INVALID_VALUE;
2119 goto error;
2120 }
2121
2122 if (!mutable_tex_object(texObj)) {
2123 reason = "immutable texture";
2124 error = GL_INVALID_OPERATION;
2125 goto error;
2126 }
2127
2128 return GL_FALSE;
2129
2130 error:
2131 /* Note: not all error paths exit through here. */
2132 _mesa_error(ctx, error, "glCompressedTexImage%dD(%s)",
2133 dimensions, reason);
2134 return GL_TRUE;
2135 }
2136
2137
2138
2139 /**
2140 * Test glTexSubImage[123]D() parameters for errors.
2141 *
2142 * \param ctx GL context.
2143 * \param dimensions texture image dimensions (must be 1, 2 or 3).
2144 * \param target texture target given by the user (already validated)
2145 * \param level image level given by the user.
2146 * \param xoffset sub-image x offset given by the user.
2147 * \param yoffset sub-image y offset given by the user.
2148 * \param zoffset sub-image z offset given by the user.
2149 * \param format pixel data format given by the user.
2150 * \param type pixel data type given by the user.
2151 * \param width image width given by the user.
2152 * \param height image height given by the user.
2153 * \param depth image depth given by the user.
2154 *
2155 * \return GL_TRUE if an error was detected, or GL_FALSE if no errors.
2156 *
2157 * Verifies each of the parameters against the constants specified in
2158 * __struct gl_contextRec::Const and the supported extensions, and according
2159 * to the OpenGL specification.
2160 */
2161 static GLboolean
2162 texsubimage_error_check(struct gl_context *ctx, GLuint dimensions,
2163 struct gl_texture_object *texObj,
2164 GLenum target, GLint level,
2165 GLint xoffset, GLint yoffset, GLint zoffset,
2166 GLint width, GLint height, GLint depth,
2167 GLenum format, GLenum type, const GLvoid *pixels,
2168 const char *callerName)
2169 {
2170 struct gl_texture_image *texImage;
2171 GLenum err;
2172
2173 if (!texObj) {
2174 /* must be out of memory */
2175 _mesa_error(ctx, GL_OUT_OF_MEMORY, "%s()", callerName);
2176 return GL_TRUE;
2177 }
2178
2179 /* level check */
2180 if (level < 0 || level >= _mesa_max_texture_levels(ctx, target)) {
2181 _mesa_error(ctx, GL_INVALID_VALUE, "%s(level=%d)", callerName, level);
2182 return GL_TRUE;
2183 }
2184
2185 if (error_check_subtexture_negative_dimensions(ctx, dimensions,
2186 width, height, depth,
2187 callerName)) {
2188 return GL_TRUE;
2189 }
2190
2191 texImage = _mesa_select_tex_image(texObj, target, level);
2192 if (!texImage) {
2193 /* non-existant texture level */
2194 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(invalid texture level %d)",
2195 callerName, level);
2196 return GL_TRUE;
2197 }
2198
2199 err = _mesa_error_check_format_and_type(ctx, format, type);
2200 if (err != GL_NO_ERROR) {
2201 _mesa_error(ctx, err,
2202 "%s(incompatible format = %s, type = %s)",
2203 callerName, _mesa_enum_to_string(format),
2204 _mesa_enum_to_string(type));
2205 return GL_TRUE;
2206 }
2207
2208 GLenum internalFormat = _mesa_is_gles(ctx) ?
2209 oes_float_internal_format(ctx, texImage->InternalFormat, type) :
2210 texImage->InternalFormat;
2211
2212 /* OpenGL ES 1.x and OpenGL ES 2.0 impose additional restrictions on the
2213 * combinations of format, internalFormat, and type that can be used.
2214 * Formats and types that require additional extensions (e.g., GL_FLOAT
2215 * requires GL_OES_texture_float) are filtered elsewhere.
2216 */
2217 if (_mesa_is_gles(ctx) &&
2218 texture_format_error_check_gles(ctx, format, type,
2219 internalFormat, callerName)) {
2220 return GL_TRUE;
2221 }
2222
2223 /* validate the bound PBO, if any */
2224 if (!_mesa_validate_pbo_source(ctx, dimensions, &ctx->Unpack,
2225 width, height, depth, format, type,
2226 INT_MAX, pixels, callerName)) {
2227 return GL_TRUE;
2228 }
2229
2230 if (error_check_subtexture_dimensions(ctx, dimensions,
2231 texImage, xoffset, yoffset, zoffset,
2232 width, height, depth, callerName)) {
2233 return GL_TRUE;
2234 }
2235
2236 if (_mesa_is_format_compressed(texImage->TexFormat)) {
2237 if (_mesa_format_no_online_compression(texImage->InternalFormat)) {
2238 _mesa_error(ctx, GL_INVALID_OPERATION,
2239 "%s(no compression for format)", callerName);
2240 return GL_TRUE;
2241 }
2242 }
2243
2244 if (ctx->Version >= 30 || ctx->Extensions.EXT_texture_integer) {
2245 /* both source and dest must be integer-valued, or neither */
2246 if (_mesa_is_format_integer_color(texImage->TexFormat) !=
2247 _mesa_is_enum_format_integer(format)) {
2248 _mesa_error(ctx, GL_INVALID_OPERATION,
2249 "%s(integer/non-integer format mismatch)", callerName);
2250 return GL_TRUE;
2251 }
2252 }
2253
2254 return GL_FALSE;
2255 }
2256
2257
2258 /**
2259 * Test glCopyTexImage[12]D() parameters for errors.
2260 *
2261 * \param ctx GL context.
2262 * \param dimensions texture image dimensions (must be 1, 2 or 3).
2263 * \param target texture target given by the user.
2264 * \param level image level given by the user.
2265 * \param internalFormat internal format given by the user.
2266 * \param width image width given by the user.
2267 * \param height image height given by the user.
2268 * \param border texture border.
2269 *
2270 * \return GL_TRUE if an error was detected, or GL_FALSE if no errors.
2271 *
2272 * Verifies each of the parameters against the constants specified in
2273 * __struct gl_contextRec::Const and the supported extensions, and according
2274 * to the OpenGL specification.
2275 */
2276 static GLboolean
2277 copytexture_error_check( struct gl_context *ctx, GLuint dimensions,
2278 GLenum target, struct gl_texture_object* texObj,
2279 GLint level, GLint internalFormat, GLint border )
2280 {
2281 GLint baseFormat;
2282 GLint rb_base_format;
2283 struct gl_renderbuffer *rb;
2284 GLenum rb_internal_format;
2285
2286 /* check target */
2287 if (!legal_texsubimage_target(ctx, dimensions, target, false)) {
2288 _mesa_error(ctx, GL_INVALID_ENUM, "glCopyTexImage%uD(target=%s)",
2289 dimensions, _mesa_enum_to_string(target));
2290 return GL_TRUE;
2291 }
2292
2293 /* level check */
2294 if (level < 0 || level >= _mesa_max_texture_levels(ctx, target)) {
2295 _mesa_error(ctx, GL_INVALID_VALUE,
2296 "glCopyTexImage%dD(level=%d)", dimensions, level);
2297 return GL_TRUE;
2298 }
2299
2300 /* Check that the source buffer is complete */
2301 if (_mesa_is_user_fbo(ctx->ReadBuffer)) {
2302 if (ctx->ReadBuffer->_Status == 0) {
2303 _mesa_test_framebuffer_completeness(ctx, ctx->ReadBuffer);
2304 }
2305 if (ctx->ReadBuffer->_Status != GL_FRAMEBUFFER_COMPLETE_EXT) {
2306 _mesa_error(ctx, GL_INVALID_FRAMEBUFFER_OPERATION_EXT,
2307 "glCopyTexImage%dD(invalid readbuffer)", dimensions);
2308 return GL_TRUE;
2309 }
2310
2311 if (ctx->ReadBuffer->Visual.samples > 0) {
2312 _mesa_error(ctx, GL_INVALID_OPERATION,
2313 "glCopyTexImage%dD(multisample FBO)", dimensions);
2314 return GL_TRUE;
2315 }
2316 }
2317
2318 /* Check border */
2319 if (border < 0 || border > 1 ||
2320 ((ctx->API != API_OPENGL_COMPAT ||
2321 target == GL_TEXTURE_RECTANGLE_NV ||
2322 target == GL_PROXY_TEXTURE_RECTANGLE_NV) && border != 0)) {
2323 _mesa_error(ctx, GL_INVALID_VALUE,
2324 "glCopyTexImage%dD(border=%d)", dimensions, border);
2325 return GL_TRUE;
2326 }
2327
2328 /* OpenGL ES 1.x and OpenGL ES 2.0 impose additional restrictions on the
2329 * internalFormat.
2330 */
2331 if (_mesa_is_gles(ctx) && !_mesa_is_gles3(ctx)) {
2332 switch (internalFormat) {
2333 case GL_ALPHA:
2334 case GL_RGB:
2335 case GL_RGBA:
2336 case GL_LUMINANCE:
2337 case GL_LUMINANCE_ALPHA:
2338 break;
2339 default:
2340 _mesa_error(ctx, GL_INVALID_ENUM,
2341 "glCopyTexImage%dD(internalFormat=%s)", dimensions,
2342 _mesa_enum_to_string(internalFormat));
2343 return GL_TRUE;
2344 }
2345 } else {
2346 /*
2347 * Section 8.6 (Alternate Texture Image Specification Commands) of the
2348 * OpenGL 4.5 (Compatibility Profile) spec says:
2349 *
2350 * "Parameters level, internalformat, and border are specified using
2351 * the same values, with the same meanings, as the corresponding
2352 * arguments of TexImage2D, except that internalformat may not be
2353 * specified as 1, 2, 3, or 4."
2354 */
2355 if (internalFormat >= 1 && internalFormat <= 4) {
2356 _mesa_error(ctx, GL_INVALID_ENUM,
2357 "glCopyTexImage%dD(internalFormat=%d)", dimensions,
2358 internalFormat);
2359 return GL_TRUE;
2360 }
2361 }
2362
2363 baseFormat = _mesa_base_tex_format(ctx, internalFormat);
2364 if (baseFormat < 0) {
2365 _mesa_error(ctx, GL_INVALID_ENUM,
2366 "glCopyTexImage%dD(internalFormat=%s)", dimensions,
2367 _mesa_enum_to_string(internalFormat));
2368 return GL_TRUE;
2369 }
2370
2371 rb = _mesa_get_read_renderbuffer_for_format(ctx, internalFormat);
2372 if (rb == NULL) {
2373 _mesa_error(ctx, GL_INVALID_OPERATION,
2374 "glCopyTexImage%dD(read buffer)", dimensions);
2375 return GL_TRUE;
2376 }
2377
2378 rb_internal_format = rb->InternalFormat;
2379 rb_base_format = _mesa_base_tex_format(ctx, rb->InternalFormat);
2380 if (_mesa_is_color_format(internalFormat)) {
2381 if (rb_base_format < 0) {
2382 _mesa_error(ctx, GL_INVALID_VALUE,
2383 "glCopyTexImage%dD(internalFormat=%s)", dimensions,
2384 _mesa_enum_to_string(internalFormat));
2385 return GL_TRUE;
2386 }
2387 }
2388
2389 if (_mesa_is_gles(ctx)) {
2390 bool valid = true;
2391 if (_mesa_components_in_format(baseFormat) >
2392 _mesa_components_in_format(rb_base_format)) {
2393 valid = false;
2394 }
2395 if (baseFormat == GL_DEPTH_COMPONENT ||
2396 baseFormat == GL_DEPTH_STENCIL ||
2397 baseFormat == GL_STENCIL_INDEX ||
2398 rb_base_format == GL_DEPTH_COMPONENT ||
2399 rb_base_format == GL_DEPTH_STENCIL ||
2400 rb_base_format == GL_STENCIL_INDEX ||
2401 ((baseFormat == GL_LUMINANCE_ALPHA ||
2402 baseFormat == GL_ALPHA) &&
2403 rb_base_format != GL_RGBA) ||
2404 internalFormat == GL_RGB9_E5) {
2405 valid = false;
2406 }
2407 if (internalFormat == GL_RGB9_E5) {
2408 valid = false;
2409 }
2410 if (!valid) {
2411 _mesa_error(ctx, GL_INVALID_OPERATION,
2412 "glCopyTexImage%dD(internalFormat=%s)", dimensions,
2413 _mesa_enum_to_string(internalFormat));
2414 return GL_TRUE;
2415 }
2416 }
2417
2418 if (_mesa_is_gles3(ctx)) {
2419 bool rb_is_srgb = (ctx->Extensions.EXT_sRGB &&
2420 _mesa_is_format_srgb(rb->Format));
2421 bool dst_is_srgb = false;
2422
2423 if (_mesa_get_linear_internalformat(internalFormat) != internalFormat) {
2424 dst_is_srgb = true;
2425 }
2426
2427 if (rb_is_srgb != dst_is_srgb) {
2428 /* Page 137 (page 149 of the PDF) in section 3.8.5 of the
2429 * OpenGLES 3.0.0 spec says:
2430 *
2431 * "The error INVALID_OPERATION is also generated if the
2432 * value of FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING for the
2433 * framebuffer attachment corresponding to the read buffer
2434 * is LINEAR (see section 6.1.13) and internalformat is
2435 * one of the sRGB formats described in section 3.8.16, or
2436 * if the value of FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING is
2437 * SRGB and internalformat is not one of the sRGB formats."
2438 */
2439 _mesa_error(ctx, GL_INVALID_OPERATION,
2440 "glCopyTexImage%dD(srgb usage mismatch)", dimensions);
2441 return GL_TRUE;
2442 }
2443
2444 /* Page 139, Table 3.15 of OpenGL ES 3.0 spec does not define ReadPixels
2445 * types for SNORM formats. Also, conversion to SNORM formats is not
2446 * allowed by Table 3.2 on Page 110.
2447 */
2448 if (!_mesa_has_EXT_render_snorm(ctx) &&
2449 _mesa_is_enum_format_snorm(internalFormat)) {
2450 _mesa_error(ctx, GL_INVALID_OPERATION,
2451 "glCopyTexImage%dD(internalFormat=%s)", dimensions,
2452 _mesa_enum_to_string(internalFormat));
2453 return GL_TRUE;
2454 }
2455 }
2456
2457 if (!_mesa_source_buffer_exists(ctx, baseFormat)) {
2458 _mesa_error(ctx, GL_INVALID_OPERATION,
2459 "glCopyTexImage%dD(missing readbuffer)", dimensions);
2460 return GL_TRUE;
2461 }
2462
2463 /* From the EXT_texture_integer spec:
2464 *
2465 * "INVALID_OPERATION is generated by CopyTexImage* and CopyTexSubImage*
2466 * if the texture internalformat is an integer format and the read color
2467 * buffer is not an integer format, or if the internalformat is not an
2468 * integer format and the read color buffer is an integer format."
2469 */
2470 if (_mesa_is_color_format(internalFormat)) {
2471 bool is_int = _mesa_is_enum_format_integer(internalFormat);
2472 bool is_rbint = _mesa_is_enum_format_integer(rb_internal_format);
2473 bool is_unorm = _mesa_is_enum_format_unorm(internalFormat);
2474 bool is_rbunorm = _mesa_is_enum_format_unorm(rb_internal_format);
2475 if (is_int || is_rbint) {
2476 if (is_int != is_rbint) {
2477 _mesa_error(ctx, GL_INVALID_OPERATION,
2478 "glCopyTexImage%dD(integer vs non-integer)", dimensions);
2479 return GL_TRUE;
2480 } else if (_mesa_is_gles(ctx) &&
2481 _mesa_is_enum_format_unsigned_int(internalFormat) !=
2482 _mesa_is_enum_format_unsigned_int(rb_internal_format)) {
2483 _mesa_error(ctx, GL_INVALID_OPERATION,
2484 "glCopyTexImage%dD(signed vs unsigned integer)",
2485 dimensions);
2486 return GL_TRUE;
2487 }
2488 }
2489
2490 /* From page 138 of OpenGL ES 3.0 spec:
2491 * "The error INVALID_OPERATION is generated if floating-point RGBA
2492 * data is required; if signed integer RGBA data is required and the
2493 * format of the current color buffer is not signed integer; if
2494 * unsigned integer RGBA data is required and the format of the
2495 * current color buffer is not unsigned integer; or if fixed-point
2496 * RGBA data is required and the format of the current color buffer
2497 * is not fixed-point.
2498 */
2499 if (_mesa_is_gles(ctx) && is_unorm != is_rbunorm)
2500 _mesa_error(ctx, GL_INVALID_OPERATION,
2501 "glCopyTexImage%dD(unorm vs non-unorm)", dimensions);
2502 }
2503
2504 if (_mesa_is_compressed_format(ctx, internalFormat)) {
2505 GLenum err;
2506 if (!_mesa_target_can_be_compressed(ctx, target, internalFormat, &err)) {
2507 _mesa_error(ctx, err,
2508 "glCopyTexImage%dD(target can't be compressed)", dimensions);
2509 return GL_TRUE;
2510 }
2511 if (_mesa_format_no_online_compression(internalFormat)) {
2512 _mesa_error(ctx, GL_INVALID_OPERATION,
2513 "glCopyTexImage%dD(no compression for format)", dimensions);
2514 return GL_TRUE;
2515 }
2516 if (border != 0) {
2517 _mesa_error(ctx, GL_INVALID_OPERATION,
2518 "glCopyTexImage%dD(border!=0)", dimensions);
2519 return GL_TRUE;
2520 }
2521 }
2522
2523 if (!mutable_tex_object(texObj)) {
2524 _mesa_error(ctx, GL_INVALID_OPERATION,
2525 "glCopyTexImage%dD(immutable texture)", dimensions);
2526 return GL_TRUE;
2527 }
2528
2529 /* if we get here, the parameters are OK */
2530 return GL_FALSE;
2531 }
2532
2533
2534 /**
2535 * Test glCopyTexSubImage[12]D() parameters for errors.
2536 * \return GL_TRUE if an error was detected, or GL_FALSE if no errors.
2537 */
2538 static GLboolean
2539 copytexsubimage_error_check(struct gl_context *ctx, GLuint dimensions,
2540 const struct gl_texture_object *texObj,
2541 GLenum target, GLint level,
2542 GLint xoffset, GLint yoffset, GLint zoffset,
2543 GLint width, GLint height, const char *caller)
2544 {
2545 assert(texObj);
2546
2547 struct gl_texture_image *texImage;
2548
2549 /* Check that the source buffer is complete */
2550 if (_mesa_is_user_fbo(ctx->ReadBuffer)) {
2551 if (ctx->ReadBuffer->_Status == 0) {
2552 _mesa_test_framebuffer_completeness(ctx, ctx->ReadBuffer);
2553 }
2554 if (ctx->ReadBuffer->_Status != GL_FRAMEBUFFER_COMPLETE_EXT) {
2555 _mesa_error(ctx, GL_INVALID_FRAMEBUFFER_OPERATION_EXT,
2556 "%s(invalid readbuffer)", caller);
2557 return GL_TRUE;
2558 }
2559
2560 if (ctx->ReadBuffer->Visual.samples > 0) {
2561 _mesa_error(ctx, GL_INVALID_OPERATION,
2562 "%s(multisample FBO)", caller);
2563 return GL_TRUE;
2564 }
2565 }
2566
2567 /* Check level */
2568 if (level < 0 || level >= _mesa_max_texture_levels(ctx, target)) {
2569 _mesa_error(ctx, GL_INVALID_VALUE, "%s(level=%d)", caller, level);
2570 return GL_TRUE;
2571 }
2572
2573 texImage = _mesa_select_tex_image(texObj, target, level);
2574 if (!texImage) {
2575 /* destination image does not exist */
2576 _mesa_error(ctx, GL_INVALID_OPERATION,
2577 "%s(invalid texture level %d)", caller, level);
2578 return GL_TRUE;
2579 }
2580
2581 if (error_check_subtexture_negative_dimensions(ctx, dimensions,
2582 width, height, 1, caller)) {
2583 return GL_TRUE;
2584 }
2585
2586 if (error_check_subtexture_dimensions(ctx, dimensions, texImage,
2587 xoffset, yoffset, zoffset,
2588 width, height, 1, caller)) {
2589 return GL_TRUE;
2590 }
2591
2592 if (_mesa_is_format_compressed(texImage->TexFormat)) {
2593 if (_mesa_format_no_online_compression(texImage->InternalFormat)) {
2594 _mesa_error(ctx, GL_INVALID_OPERATION,
2595 "%s(no compression for format)", caller);
2596 return GL_TRUE;
2597 }
2598 }
2599
2600 if (texImage->InternalFormat == GL_YCBCR_MESA) {
2601 _mesa_error(ctx, GL_INVALID_OPERATION, "%s()", caller);
2602 return GL_TRUE;
2603 }
2604
2605 /* From OpenGL ES 3.2 spec, section 8.6:
2606 *
2607 * "An INVALID_OPERATION error is generated by CopyTexSubImage3D,
2608 * CopyTexImage2D, or CopyTexSubImage2D if the internalformat of the
2609 * texture image being (re)specified is RGB9_E5"
2610 */
2611 if (texImage->InternalFormat == GL_RGB9_E5 &&
2612 !_mesa_is_desktop_gl(ctx)) {
2613 _mesa_error(ctx, GL_INVALID_OPERATION,
2614 "%s(invalid internal format %s)", caller,
2615 _mesa_enum_to_string(texImage->InternalFormat));
2616 return GL_TRUE;
2617 }
2618
2619 if (!_mesa_source_buffer_exists(ctx, texImage->_BaseFormat)) {
2620 _mesa_error(ctx, GL_INVALID_OPERATION,
2621 "%s(missing readbuffer, format=%s)", caller,
2622 _mesa_enum_to_string(texImage->_BaseFormat));
2623 return GL_TRUE;
2624 }
2625
2626 /* From the EXT_texture_integer spec:
2627 *
2628 * "INVALID_OPERATION is generated by CopyTexImage* and
2629 * CopyTexSubImage* if the texture internalformat is an integer format
2630 * and the read color buffer is not an integer format, or if the
2631 * internalformat is not an integer format and the read color buffer
2632 * is an integer format."
2633 */
2634 if (_mesa_is_color_format(texImage->InternalFormat)) {
2635 struct gl_renderbuffer *rb = ctx->ReadBuffer->_ColorReadBuffer;
2636
2637 if (_mesa_is_format_integer_color(rb->Format) !=
2638 _mesa_is_format_integer_color(texImage->TexFormat)) {
2639 _mesa_error(ctx, GL_INVALID_OPERATION,
2640 "%s(integer vs non-integer)", caller);
2641 return GL_TRUE;
2642 }
2643 }
2644
2645 /* In the ES 3.2 specification's Table 8.13 (Valid CopyTexImage source
2646 * framebuffer/destination texture base internal format combinations),
2647 * all the entries for stencil are left blank (unsupported).
2648 */
2649 if (_mesa_is_gles(ctx) && _mesa_is_stencil_format(texImage->_BaseFormat)) {
2650 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(stencil disallowed)", caller);
2651 return GL_TRUE;
2652 }
2653
2654 /* if we get here, the parameters are OK */
2655 return GL_FALSE;
2656 }
2657
2658
2659 /** Callback info for walking over FBO hash table */
2660 struct cb_info
2661 {
2662 struct gl_context *ctx;
2663 struct gl_texture_object *texObj;
2664 GLuint level, face;
2665 };
2666
2667
2668 /**
2669 * Check render to texture callback. Called from _mesa_HashWalk().
2670 */
2671 static void
2672 check_rtt_cb(UNUSED GLuint key, void *data, void *userData)
2673 {
2674 struct gl_framebuffer *fb = (struct gl_framebuffer *) data;
2675 const struct cb_info *info = (struct cb_info *) userData;
2676 struct gl_context *ctx = info->ctx;
2677 const struct gl_texture_object *texObj = info->texObj;
2678 const GLuint level = info->level, face = info->face;
2679
2680 /* If this is a user-created FBO */
2681 if (_mesa_is_user_fbo(fb)) {
2682 GLuint i;
2683 /* check if any of the FBO's attachments point to 'texObj' */
2684 for (i = 0; i < BUFFER_COUNT; i++) {
2685 struct gl_renderbuffer_attachment *att = fb->Attachment + i;
2686 if (att->Type == GL_TEXTURE &&
2687 att->Texture == texObj &&
2688 att->TextureLevel == level &&
2689 att->CubeMapFace == face) {
2690 _mesa_update_texture_renderbuffer(ctx, fb, att);
2691 assert(att->Renderbuffer->TexImage);
2692 /* Mark fb status as indeterminate to force re-validation */
2693 fb->_Status = 0;
2694
2695 /* Make sure that the revalidation actually happens if this is
2696 * being done to currently-bound buffers.
2697 */
2698 if (fb == ctx->DrawBuffer || fb == ctx->ReadBuffer)
2699 ctx->NewState |= _NEW_BUFFERS;
2700 }
2701 }
2702 }
2703 }
2704
2705
2706 /**
2707 * When a texture image is specified we have to check if it's bound to
2708 * any framebuffer objects (render to texture) in order to detect changes
2709 * in size or format since that effects FBO completeness.
2710 * Any FBOs rendering into the texture must be re-validated.
2711 */
2712 void
2713 _mesa_update_fbo_texture(struct gl_context *ctx,
2714 struct gl_texture_object *texObj,
2715 GLuint face, GLuint level)
2716 {
2717 /* Only check this texture if it's been marked as RenderToTexture */
2718 if (texObj->_RenderToTexture) {
2719 struct cb_info info;
2720 info.ctx = ctx;
2721 info.texObj = texObj;
2722 info.level = level;
2723 info.face = face;
2724 _mesa_HashWalk(ctx->Shared->FrameBuffers, check_rtt_cb, &info);
2725 }
2726 }
2727
2728
2729 /**
2730 * If the texture object's GenerateMipmap flag is set and we've
2731 * changed the texture base level image, regenerate the rest of the
2732 * mipmap levels now.
2733 */
2734 static inline void
2735 check_gen_mipmap(struct gl_context *ctx, GLenum target,
2736 struct gl_texture_object *texObj, GLint level)
2737 {
2738 if (texObj->GenerateMipmap &&
2739 level == texObj->BaseLevel &&
2740 level < texObj->MaxLevel) {
2741 assert(ctx->Driver.GenerateMipmap);
2742 ctx->Driver.GenerateMipmap(ctx, target, texObj);
2743 }
2744 }
2745
2746
2747 /** Debug helper: override the user-requested internal format */
2748 static GLenum
2749 override_internal_format(GLenum internalFormat, UNUSED GLint width,
2750 UNUSED GLint height)
2751 {
2752 #if 0
2753 if (internalFormat == GL_RGBA16F_ARB ||
2754 internalFormat == GL_RGBA32F_ARB) {
2755 printf("Convert rgba float tex to int %d x %d\n", width, height);
2756 return GL_RGBA;
2757 }
2758 else if (internalFormat == GL_RGB16F_ARB ||
2759 internalFormat == GL_RGB32F_ARB) {
2760 printf("Convert rgb float tex to int %d x %d\n", width, height);
2761 return GL_RGB;
2762 }
2763 else if (internalFormat == GL_LUMINANCE_ALPHA16F_ARB ||
2764 internalFormat == GL_LUMINANCE_ALPHA32F_ARB) {
2765 printf("Convert luminance float tex to int %d x %d\n", width, height);
2766 return GL_LUMINANCE_ALPHA;
2767 }
2768 else if (internalFormat == GL_LUMINANCE16F_ARB ||
2769 internalFormat == GL_LUMINANCE32F_ARB) {
2770 printf("Convert luminance float tex to int %d x %d\n", width, height);
2771 return GL_LUMINANCE;
2772 }
2773 else if (internalFormat == GL_ALPHA16F_ARB ||
2774 internalFormat == GL_ALPHA32F_ARB) {
2775 printf("Convert luminance float tex to int %d x %d\n", width, height);
2776 return GL_ALPHA;
2777 }
2778 /*
2779 else if (internalFormat == GL_COMPRESSED_RGBA_S3TC_DXT1_EXT) {
2780 internalFormat = GL_RGBA;
2781 }
2782 */
2783 else {
2784 return internalFormat;
2785 }
2786 #else
2787 return internalFormat;
2788 #endif
2789 }
2790
2791
2792 /**
2793 * Choose the actual hardware format for a texture image.
2794 * Try to use the same format as the previous image level when possible.
2795 * Otherwise, ask the driver for the best format.
2796 * It's important to try to choose a consistant format for all levels
2797 * for efficient texture memory layout/allocation. In particular, this
2798 * comes up during automatic mipmap generation.
2799 */
2800 mesa_format
2801 _mesa_choose_texture_format(struct gl_context *ctx,
2802 struct gl_texture_object *texObj,
2803 GLenum target, GLint level,
2804 GLenum internalFormat, GLenum format, GLenum type)
2805 {
2806 mesa_format f;
2807
2808 /* see if we've already chosen a format for the previous level */
2809 if (level > 0) {
2810 struct gl_texture_image *prevImage =
2811 _mesa_select_tex_image(texObj, target, level - 1);
2812 /* See if the prev level is defined and has an internal format which
2813 * matches the new internal format.
2814 */
2815 if (prevImage &&
2816 prevImage->Width > 0 &&
2817 prevImage->InternalFormat == internalFormat) {
2818 /* use the same format */
2819 assert(prevImage->TexFormat != MESA_FORMAT_NONE);
2820 return prevImage->TexFormat;
2821 }
2822 }
2823
2824 f = ctx->Driver.ChooseTextureFormat(ctx, target, internalFormat,
2825 format, type);
2826 assert(f != MESA_FORMAT_NONE);
2827 return f;
2828 }
2829
2830
2831 /**
2832 * Adjust pixel unpack params and image dimensions to strip off the
2833 * one-pixel texture border.
2834 *
2835 * Gallium and intel don't support texture borders. They've seldem been used
2836 * and seldom been implemented correctly anyway.
2837 *
2838 * \param unpackNew returns the new pixel unpack parameters
2839 */
2840 static void
2841 strip_texture_border(GLenum target,
2842 GLint *width, GLint *height, GLint *depth,
2843 const struct gl_pixelstore_attrib *unpack,
2844 struct gl_pixelstore_attrib *unpackNew)
2845 {
2846 assert(width);
2847 assert(height);
2848 assert(depth);
2849
2850 *unpackNew = *unpack;
2851
2852 if (unpackNew->RowLength == 0)
2853 unpackNew->RowLength = *width;
2854
2855 if (unpackNew->ImageHeight == 0)
2856 unpackNew->ImageHeight = *height;
2857
2858 assert(*width >= 3);
2859 unpackNew->SkipPixels++; /* skip the border */
2860 *width = *width - 2; /* reduce the width by two border pixels */
2861
2862 /* The min height of a texture with a border is 3 */
2863 if (*height >= 3 && target != GL_TEXTURE_1D_ARRAY) {
2864 unpackNew->SkipRows++; /* skip the border */
2865 *height = *height - 2; /* reduce the height by two border pixels */
2866 }
2867
2868 if (*depth >= 3 &&
2869 target != GL_TEXTURE_2D_ARRAY &&
2870 target != GL_TEXTURE_CUBE_MAP_ARRAY) {
2871 unpackNew->SkipImages++; /* skip the border */
2872 *depth = *depth - 2; /* reduce the depth by two border pixels */
2873 }
2874 }
2875
2876 static struct gl_texture_object *
2877 lookup_texture_ext_dsa(struct gl_context *ctx, GLenum target, GLuint texture,
2878 const char *caller)
2879 {
2880 GLenum boundTarget;
2881 switch (target) {
2882 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
2883 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
2884 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
2885 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
2886 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
2887 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
2888 boundTarget = GL_TEXTURE_CUBE_MAP;
2889 break;
2890 default:
2891 boundTarget = target;
2892 break;
2893 }
2894
2895 int targetIndex = _mesa_tex_target_to_index(ctx, boundTarget);
2896 if (targetIndex < 0) {
2897 _mesa_error(ctx, GL_INVALID_ENUM, "%s(target = %s)", caller,
2898 _mesa_enum_to_string(target));
2899 return NULL;
2900 }
2901 assert(targetIndex < NUM_TEXTURE_TARGETS);
2902
2903 struct gl_texture_object *texObj;
2904 if (texture == 0) {
2905 /* Use a default texture object */
2906 texObj = ctx->Shared->DefaultTex[targetIndex];
2907 assert(texObj);
2908 } else {
2909 texObj = _mesa_lookup_texture(ctx, texture);
2910 if (!texObj && ctx->API == API_OPENGL_CORE) {
2911 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(non-gen name)", caller);
2912 return NULL;
2913 }
2914
2915 if (!texObj) {
2916 texObj = ctx->Driver.NewTextureObject(ctx, texture, boundTarget);
2917 if (!texObj) {
2918 _mesa_error(ctx, GL_OUT_OF_MEMORY, "%s", caller);
2919 return NULL;
2920 }
2921
2922 /* insert into hash table */
2923 _mesa_HashInsert(ctx->Shared->TexObjects, texObj->Name, texObj);
2924 }
2925
2926 if (texObj->Target != boundTarget) {
2927 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(%s != %s)",
2928 caller, _mesa_enum_to_string(texObj->Target),
2929 _mesa_enum_to_string(target));
2930 return NULL;
2931 }
2932 }
2933
2934 return texObj;
2935 }
2936
2937 /**
2938 * Common code to implement all the glTexImage1D/2D/3D functions,
2939 * glCompressedTexImage1D/2D/3D and glTextureImage1D/2D/3DEXT
2940 * \param compressed only GL_TRUE for glCompressedTexImage1D/2D/3D calls.
2941 * \param format the user's image format (only used if !compressed)
2942 * \param type the user's image type (only used if !compressed)
2943 * \param imageSize only used for glCompressedTexImage1D/2D/3D calls.
2944 */
2945 static ALWAYS_INLINE void
2946 teximage(struct gl_context *ctx, GLboolean compressed, GLuint dims,
2947 struct gl_texture_object *texObj,
2948 GLenum target, GLint level, GLint internalFormat,
2949 GLsizei width, GLsizei height, GLsizei depth,
2950 GLint border, GLenum format, GLenum type,
2951 GLsizei imageSize, const GLvoid *pixels, bool no_error)
2952 {
2953 const char *func = compressed ? "glCompressedTexImage" : "glTexImage";
2954 struct gl_pixelstore_attrib unpack_no_border;
2955 const struct gl_pixelstore_attrib *unpack = &ctx->Unpack;
2956 mesa_format texFormat;
2957 bool dimensionsOK = true, sizeOK = true;
2958
2959 FLUSH_VERTICES(ctx, 0);
2960
2961 if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE)) {
2962 if (compressed)
2963 _mesa_debug(ctx,
2964 "glCompressedTexImage%uD %s %d %s %d %d %d %d %p\n",
2965 dims,
2966 _mesa_enum_to_string(target), level,
2967 _mesa_enum_to_string(internalFormat),
2968 width, height, depth, border, pixels);
2969 else
2970 _mesa_debug(ctx,
2971 "glTexImage%uD %s %d %s %d %d %d %d %s %s %p\n",
2972 dims,
2973 _mesa_enum_to_string(target), level,
2974 _mesa_enum_to_string(internalFormat),
2975 width, height, depth, border,
2976 _mesa_enum_to_string(format),
2977 _mesa_enum_to_string(type), pixels);
2978 }
2979
2980 internalFormat = override_internal_format(internalFormat, width, height);
2981
2982 if (!texObj)
2983 texObj = _mesa_get_current_tex_object(ctx, target);
2984
2985 if (!no_error) {
2986 /* target error checking */
2987 if (!legal_teximage_target(ctx, dims, target)) {
2988 _mesa_error(ctx, GL_INVALID_ENUM, "%s%uD(target=%s)",
2989 func, dims, _mesa_enum_to_string(target));
2990 return;
2991 }
2992
2993 /* general error checking */
2994 if (compressed) {
2995 if (compressed_texture_error_check(ctx, dims, target, texObj,
2996 level, internalFormat,
2997 width, height, depth,
2998 border, imageSize, pixels))
2999 return;
3000 } else {
3001 if (texture_error_check(ctx, dims, target, texObj, level, internalFormat,
3002 format, type, width, height, depth, border,
3003 pixels))
3004 return;
3005 }
3006 }
3007 assert(texObj);
3008
3009 /* Here we convert a cpal compressed image into a regular glTexImage2D
3010 * call by decompressing the texture. If we really want to support cpal
3011 * textures in any driver this would have to be changed.
3012 */
3013 if (ctx->API == API_OPENGLES && compressed && dims == 2) {
3014 switch (internalFormat) {
3015 case GL_PALETTE4_RGB8_OES:
3016 case GL_PALETTE4_RGBA8_OES:
3017 case GL_PALETTE4_R5_G6_B5_OES:
3018 case GL_PALETTE4_RGBA4_OES:
3019 case GL_PALETTE4_RGB5_A1_OES:
3020 case GL_PALETTE8_RGB8_OES:
3021 case GL_PALETTE8_RGBA8_OES:
3022 case GL_PALETTE8_R5_G6_B5_OES:
3023 case GL_PALETTE8_RGBA4_OES:
3024 case GL_PALETTE8_RGB5_A1_OES:
3025 _mesa_cpal_compressed_teximage2d(target, level, internalFormat,
3026 width, height, imageSize, pixels);
3027 return;
3028 }
3029 }
3030
3031 if (compressed) {
3032 /* For glCompressedTexImage() the driver has no choice about the
3033 * texture format since we'll never transcode the user's compressed
3034 * image data. The internalFormat was error checked earlier.
3035 */
3036 texFormat = _mesa_glenum_to_compressed_format(internalFormat);
3037 }
3038 else {
3039 /* In case of HALF_FLOAT_OES or FLOAT_OES, find corresponding sized
3040 * internal floating point format for the given base format.
3041 */
3042 if (_mesa_is_gles(ctx) && format == internalFormat) {
3043 if (type == GL_FLOAT) {
3044 texObj->_IsFloat = GL_TRUE;
3045 } else if (type == GL_HALF_FLOAT_OES || type == GL_HALF_FLOAT) {
3046 texObj->_IsHalfFloat = GL_TRUE;
3047 }
3048
3049 internalFormat = adjust_for_oes_float_texture(ctx, format, type);
3050 }
3051
3052 texFormat = _mesa_choose_texture_format(ctx, texObj, target, level,
3053 internalFormat, format, type);
3054 }
3055
3056 assert(texFormat != MESA_FORMAT_NONE);
3057
3058 if (!no_error) {
3059 /* check that width, height, depth are legal for the mipmap level */
3060 dimensionsOK = _mesa_legal_texture_dimensions(ctx, target, level, width,
3061 height, depth, border);
3062
3063 /* check that the texture won't take too much memory, etc */
3064 sizeOK = ctx->Driver.TestProxyTexImage(ctx, proxy_target(target),
3065 0, level, texFormat, 1,
3066 width, height, depth);
3067 }
3068
3069 if (_mesa_is_proxy_texture(target)) {
3070 /* Proxy texture: just clear or set state depending on error checking */
3071 struct gl_texture_image *texImage =
3072 get_proxy_tex_image(ctx, target, level);
3073
3074 if (!texImage)
3075 return; /* GL_OUT_OF_MEMORY already recorded */
3076
3077 if (dimensionsOK && sizeOK) {
3078 _mesa_init_teximage_fields(ctx, texImage, width, height, depth,
3079 border, internalFormat, texFormat);
3080 }
3081 else {
3082 clear_teximage_fields(texImage);
3083 }
3084 }
3085 else {
3086 /* non-proxy target */
3087 const GLuint face = _mesa_tex_target_to_face(target);
3088 struct gl_texture_image *texImage;
3089
3090 if (!dimensionsOK) {
3091 _mesa_error(ctx, GL_INVALID_VALUE,
3092 "%s%uD(invalid width=%d or height=%d or depth=%d)",
3093 func, dims, width, height, depth);
3094 return;
3095 }
3096
3097 if (!sizeOK) {
3098 _mesa_error(ctx, GL_OUT_OF_MEMORY,
3099 "%s%uD(image too large: %d x %d x %d, %s format)",
3100 func, dims, width, height, depth,
3101 _mesa_enum_to_string(internalFormat));
3102 return;
3103 }
3104
3105 /* Allow a hardware driver to just strip out the border, to provide
3106 * reliable but slightly incorrect hardware rendering instead of
3107 * rarely-tested software fallback rendering.
3108 */
3109 if (border && ctx->Const.StripTextureBorder) {
3110 strip_texture_border(target, &width, &height, &depth, unpack,
3111 &unpack_no_border);
3112 border = 0;
3113 unpack = &unpack_no_border;
3114 }
3115
3116 if (ctx->NewState & _NEW_PIXEL)
3117 _mesa_update_state(ctx);
3118
3119 _mesa_lock_texture(ctx, texObj);
3120 {
3121 texImage = _mesa_get_tex_image(ctx, texObj, target, level);
3122
3123 if (!texImage) {
3124 _mesa_error(ctx, GL_OUT_OF_MEMORY, "%s%uD", func, dims);
3125 }
3126 else {
3127 ctx->Driver.FreeTextureImageBuffer(ctx, texImage);
3128
3129 _mesa_init_teximage_fields(ctx, texImage,
3130 width, height, depth,
3131 border, internalFormat, texFormat);
3132
3133 /* Give the texture to the driver. <pixels> may be null. */
3134 if (width > 0 && height > 0 && depth > 0) {
3135 if (compressed) {
3136 ctx->Driver.CompressedTexImage(ctx, dims, texImage,
3137 imageSize, pixels);
3138 }
3139 else {
3140 ctx->Driver.TexImage(ctx, dims, texImage, format,
3141 type, pixels, unpack);
3142 }
3143 }
3144
3145 check_gen_mipmap(ctx, target, texObj, level);
3146
3147 _mesa_update_fbo_texture(ctx, texObj, face, level);
3148
3149 _mesa_dirty_texobj(ctx, texObj);
3150 }
3151 }
3152 _mesa_unlock_texture(ctx, texObj);
3153 }
3154 }
3155
3156
3157 /* This is a wrapper around teximage() so that we can force the KHR_no_error
3158 * logic to be inlined without inlining the function into all the callers.
3159 */
3160 static void
3161 teximage_err(struct gl_context *ctx, GLboolean compressed, GLuint dims,
3162 GLenum target, GLint level, GLint internalFormat,
3163 GLsizei width, GLsizei height, GLsizei depth,
3164 GLint border, GLenum format, GLenum type,
3165 GLsizei imageSize, const GLvoid *pixels)
3166 {
3167 teximage(ctx, compressed, dims, NULL, target, level, internalFormat, width, height,
3168 depth, border, format, type, imageSize, pixels, false);
3169 }
3170
3171
3172 static void
3173 teximage_no_error(struct gl_context *ctx, GLboolean compressed, GLuint dims,
3174 GLenum target, GLint level, GLint internalFormat,
3175 GLsizei width, GLsizei height, GLsizei depth,
3176 GLint border, GLenum format, GLenum type,
3177 GLsizei imageSize, const GLvoid *pixels)
3178 {
3179 teximage(ctx, compressed, dims, NULL, target, level, internalFormat, width, height,
3180 depth, border, format, type, imageSize, pixels, true);
3181 }
3182
3183
3184 /*
3185 * Called from the API. Note that width includes the border.
3186 */
3187 void GLAPIENTRY
3188 _mesa_TexImage1D( GLenum target, GLint level, GLint internalFormat,
3189 GLsizei width, GLint border, GLenum format,
3190 GLenum type, const GLvoid *pixels )
3191 {
3192 GET_CURRENT_CONTEXT(ctx);
3193 teximage_err(ctx, GL_FALSE, 1, target, level, internalFormat, width, 1, 1,
3194 border, format, type, 0, pixels);
3195 }
3196
3197 void GLAPIENTRY
3198 _mesa_TextureImage1DEXT(GLuint texture, GLenum target, GLint level,
3199 GLint internalFormat, GLsizei width, GLint border,
3200 GLenum format, GLenum type, const GLvoid *pixels )
3201 {
3202 struct gl_texture_object* texObj;
3203 GET_CURRENT_CONTEXT(ctx);
3204
3205 texObj = _mesa_lookup_or_create_texture(ctx, target, texture, false, true,
3206 "glTextureImage1DEXT");
3207 if (!texObj)
3208 return;
3209 teximage(ctx, GL_FALSE, 1, texObj, target, level, internalFormat,
3210 width, 1, 1, border, format, type, 0, pixels, false);
3211 }
3212
3213 void GLAPIENTRY
3214 _mesa_MultiTexImage1DEXT(GLenum texunit, GLenum target, GLint level,
3215 GLint internalFormat, GLsizei width, GLint border,
3216 GLenum format, GLenum type, const GLvoid *pixels )
3217 {
3218 struct gl_texture_object* texObj;
3219 GET_CURRENT_CONTEXT(ctx);
3220
3221 texObj = _mesa_get_texobj_by_target_and_texunit(ctx, target,
3222 texunit - GL_TEXTURE0,
3223 true,
3224 "glMultiTexImage1DEXT");
3225 if (!texObj)
3226 return;
3227 teximage(ctx, GL_FALSE, 1, texObj, target, level, internalFormat, width, 1, 1,
3228 border, format, type, 0, pixels, false);
3229 }
3230
3231 void GLAPIENTRY
3232 _mesa_TexImage2D( GLenum target, GLint level, GLint internalFormat,
3233 GLsizei width, GLsizei height, GLint border,
3234 GLenum format, GLenum type,
3235 const GLvoid *pixels )
3236 {
3237 GET_CURRENT_CONTEXT(ctx);
3238 teximage_err(ctx, GL_FALSE, 2, target, level, internalFormat, width, height, 1,
3239 border, format, type, 0, pixels);
3240 }
3241
3242 void GLAPIENTRY
3243 _mesa_TextureImage2DEXT(GLuint texture, GLenum target, GLint level,
3244 GLint internalFormat, GLsizei width, GLsizei height,
3245 GLint border,
3246 GLenum format, GLenum type, const GLvoid *pixels )
3247 {
3248 struct gl_texture_object* texObj;
3249 GET_CURRENT_CONTEXT(ctx);
3250
3251 texObj = _mesa_lookup_or_create_texture(ctx, target, texture, false, true,
3252 "glTextureImage2DEXT");
3253 if (!texObj)
3254 return;
3255 teximage(ctx, GL_FALSE, 2, texObj, target, level, internalFormat,
3256 width, height, 1, border, format, type, 0, pixels, false);
3257 }
3258
3259 void GLAPIENTRY
3260 _mesa_MultiTexImage2DEXT(GLenum texunit, GLenum target, GLint level,
3261 GLint internalFormat, GLsizei width, GLsizei height,
3262 GLint border,
3263 GLenum format, GLenum type, const GLvoid *pixels )
3264 {
3265 struct gl_texture_object* texObj;
3266 GET_CURRENT_CONTEXT(ctx);
3267
3268 texObj = _mesa_get_texobj_by_target_and_texunit(ctx, target,
3269 texunit - GL_TEXTURE0,
3270 true,
3271 "glMultiTexImage2DEXT");
3272 if (!texObj)
3273 return;
3274 teximage(ctx, GL_FALSE, 2, texObj, target, level, internalFormat, width, height, 1,
3275 border, format, type, 0, pixels, false);
3276 }
3277
3278 /*
3279 * Called by the API or display list executor.
3280 * Note that width and height include the border.
3281 */
3282 void GLAPIENTRY
3283 _mesa_TexImage3D( GLenum target, GLint level, GLint internalFormat,
3284 GLsizei width, GLsizei height, GLsizei depth,
3285 GLint border, GLenum format, GLenum type,
3286 const GLvoid *pixels )
3287 {
3288 GET_CURRENT_CONTEXT(ctx);
3289 teximage_err(ctx, GL_FALSE, 3, target, level, internalFormat,
3290 width, height, depth, border, format, type, 0, pixels);
3291 }
3292
3293 void GLAPIENTRY
3294 _mesa_TextureImage3DEXT(GLuint texture, GLenum target, GLint level,
3295 GLint internalFormat, GLsizei width, GLsizei height,
3296 GLsizei depth, GLint border,
3297 GLenum format, GLenum type, const GLvoid *pixels )
3298 {
3299 struct gl_texture_object* texObj;
3300 GET_CURRENT_CONTEXT(ctx);
3301
3302 texObj = _mesa_lookup_or_create_texture(ctx, target, texture, false, true,
3303 "glTextureImage3DEXT");
3304 if (!texObj)
3305 return;
3306 teximage(ctx, GL_FALSE, 3, texObj, target, level, internalFormat,
3307 width, height, depth, border, format, type, 0, pixels, false);
3308 }
3309
3310
3311 void GLAPIENTRY
3312 _mesa_MultiTexImage3DEXT(GLenum texunit, GLenum target, GLint level,
3313 GLint internalFormat, GLsizei width, GLsizei height,
3314 GLsizei depth, GLint border, GLenum format, GLenum type,
3315 const GLvoid *pixels )
3316 {
3317 struct gl_texture_object* texObj;
3318 GET_CURRENT_CONTEXT(ctx);
3319
3320 texObj = _mesa_get_texobj_by_target_and_texunit(ctx, target,
3321 texunit - GL_TEXTURE0,
3322 true,
3323 "glMultiTexImage3DEXT");
3324 if (!texObj)
3325 return;
3326 teximage(ctx, GL_FALSE, 3, texObj, target, level, internalFormat,
3327 width, height, depth, border, format, type, 0, pixels, false);
3328 }
3329
3330
3331 void GLAPIENTRY
3332 _mesa_TexImage3DEXT( GLenum target, GLint level, GLenum internalFormat,
3333 GLsizei width, GLsizei height, GLsizei depth,
3334 GLint border, GLenum format, GLenum type,
3335 const GLvoid *pixels )
3336 {
3337 _mesa_TexImage3D(target, level, (GLint) internalFormat, width, height,
3338 depth, border, format, type, pixels);
3339 }
3340
3341
3342 void GLAPIENTRY
3343 _mesa_TexImage1D_no_error(GLenum target, GLint level, GLint internalFormat,
3344 GLsizei width, GLint border, GLenum format,
3345 GLenum type, const GLvoid *pixels)
3346 {
3347 GET_CURRENT_CONTEXT(ctx);
3348 teximage_no_error(ctx, GL_FALSE, 1, target, level, internalFormat, width, 1,
3349 1, border, format, type, 0, pixels);
3350 }
3351
3352
3353 void GLAPIENTRY
3354 _mesa_TexImage2D_no_error(GLenum target, GLint level, GLint internalFormat,
3355 GLsizei width, GLsizei height, GLint border,
3356 GLenum format, GLenum type, const GLvoid *pixels)
3357 {
3358 GET_CURRENT_CONTEXT(ctx);
3359 teximage_no_error(ctx, GL_FALSE, 2, target, level, internalFormat, width,
3360 height, 1, border, format, type, 0, pixels);
3361 }
3362
3363
3364 void GLAPIENTRY
3365 _mesa_TexImage3D_no_error(GLenum target, GLint level, GLint internalFormat,
3366 GLsizei width, GLsizei height, GLsizei depth,
3367 GLint border, GLenum format, GLenum type,
3368 const GLvoid *pixels )
3369 {
3370 GET_CURRENT_CONTEXT(ctx);
3371 teximage_no_error(ctx, GL_FALSE, 3, target, level, internalFormat,
3372 width, height, depth, border, format, type, 0, pixels);
3373 }
3374
3375
3376 void GLAPIENTRY
3377 _mesa_EGLImageTargetTexture2DOES (GLenum target, GLeglImageOES image)
3378 {
3379 struct gl_texture_object *texObj;
3380 struct gl_texture_image *texImage;
3381 bool valid_target;
3382 GET_CURRENT_CONTEXT(ctx);
3383 FLUSH_VERTICES(ctx, 0);
3384
3385 switch (target) {
3386 case GL_TEXTURE_2D:
3387 valid_target = ctx->Extensions.OES_EGL_image;
3388 break;
3389 case GL_TEXTURE_EXTERNAL_OES:
3390 valid_target =
3391 _mesa_is_gles(ctx) ? ctx->Extensions.OES_EGL_image_external : false;
3392 break;
3393 default:
3394 valid_target = false;
3395 break;
3396 }
3397
3398 if (!valid_target) {
3399 _mesa_error(ctx, GL_INVALID_ENUM,
3400 "glEGLImageTargetTexture2D(target=%d)", target);
3401 return;
3402 }
3403
3404 if (!image) {
3405 _mesa_error(ctx, GL_INVALID_OPERATION,
3406 "glEGLImageTargetTexture2D(image=%p)", image);
3407 return;
3408 }
3409
3410 if (ctx->NewState & _NEW_PIXEL)
3411 _mesa_update_state(ctx);
3412
3413 texObj = _mesa_get_current_tex_object(ctx, target);
3414 if (!texObj)
3415 return;
3416
3417 _mesa_lock_texture(ctx, texObj);
3418
3419 if (texObj->Immutable) {
3420 _mesa_error(ctx, GL_INVALID_OPERATION,
3421 "glEGLImageTargetTexture2D(texture is immutable)");
3422 _mesa_unlock_texture(ctx, texObj);
3423 return;
3424 }
3425
3426 texImage = _mesa_get_tex_image(ctx, texObj, target, 0);
3427 if (!texImage) {
3428 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glEGLImageTargetTexture2D");
3429 } else {
3430 ctx->Driver.FreeTextureImageBuffer(ctx, texImage);
3431
3432 ctx->Driver.EGLImageTargetTexture2D(ctx, target,
3433 texObj, texImage, image);
3434
3435 _mesa_dirty_texobj(ctx, texObj);
3436 }
3437 _mesa_unlock_texture(ctx, texObj);
3438 }
3439
3440 /**
3441 * Helper that implements the glTexSubImage1/2/3D()
3442 * and glTextureSubImage1/2/3D() functions.
3443 */
3444 static void
3445 texture_sub_image(struct gl_context *ctx, GLuint dims,
3446 struct gl_texture_object *texObj,
3447 struct gl_texture_image *texImage,
3448 GLenum target, GLint level,
3449 GLint xoffset, GLint yoffset, GLint zoffset,
3450 GLsizei width, GLsizei height, GLsizei depth,
3451 GLenum format, GLenum type, const GLvoid *pixels)
3452 {
3453 FLUSH_VERTICES(ctx, 0);
3454
3455 if (ctx->NewState & _NEW_PIXEL)
3456 _mesa_update_state(ctx);
3457
3458 _mesa_lock_texture(ctx, texObj);
3459 {
3460 if (width > 0 && height > 0 && depth > 0) {
3461 /* If we have a border, offset=-1 is legal. Bias by border width. */
3462 switch (dims) {
3463 case 3:
3464 if (target != GL_TEXTURE_2D_ARRAY)
3465 zoffset += texImage->Border;
3466 /* fall-through */
3467 case 2:
3468 if (target != GL_TEXTURE_1D_ARRAY)
3469 yoffset += texImage->Border;
3470 /* fall-through */
3471 case 1:
3472 xoffset += texImage->Border;
3473 }
3474
3475 ctx->Driver.TexSubImage(ctx, dims, texImage,
3476 xoffset, yoffset, zoffset,
3477 width, height, depth,
3478 format, type, pixels, &ctx->Unpack);
3479
3480 check_gen_mipmap(ctx, target, texObj, level);
3481
3482 /* NOTE: Don't signal _NEW_TEXTURE_OBJECT since we've only changed
3483 * the texel data, not the texture format, size, etc.
3484 */
3485 }
3486 }
3487 _mesa_unlock_texture(ctx, texObj);
3488 }
3489
3490 /**
3491 * Implement all the glTexSubImage1/2/3D() functions.
3492 * Must split this out this way because of GL_TEXTURE_CUBE_MAP.
3493 */
3494 static void
3495 texsubimage_err(struct gl_context *ctx, GLuint dims, GLenum target, GLint level,
3496 GLint xoffset, GLint yoffset, GLint zoffset,
3497 GLsizei width, GLsizei height, GLsizei depth,
3498 GLenum format, GLenum type, const GLvoid *pixels,
3499 const char *callerName)
3500 {
3501 struct gl_texture_object *texObj;
3502 struct gl_texture_image *texImage;
3503
3504 /* check target (proxies not allowed) */
3505 if (!legal_texsubimage_target(ctx, dims, target, false)) {
3506 _mesa_error(ctx, GL_INVALID_ENUM, "glTexSubImage%uD(target=%s)",
3507 dims, _mesa_enum_to_string(target));
3508 return;
3509 }
3510
3511 texObj = _mesa_get_current_tex_object(ctx, target);
3512 if (!texObj)
3513 return;
3514
3515 if (texsubimage_error_check(ctx, dims, texObj, target, level,
3516 xoffset, yoffset, zoffset,
3517 width, height, depth, format, type,
3518 pixels, callerName)) {
3519 return; /* error was detected */
3520 }
3521
3522 texImage = _mesa_select_tex_image(texObj, target, level);
3523 /* texsubimage_error_check ensures that texImage is not NULL */
3524
3525 if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
3526 _mesa_debug(ctx, "glTexSubImage%uD %s %d %d %d %d %d %d %d %s %s %p\n",
3527 dims,
3528 _mesa_enum_to_string(target), level,
3529 xoffset, yoffset, zoffset, width, height, depth,
3530 _mesa_enum_to_string(format),
3531 _mesa_enum_to_string(type), pixels);
3532
3533 texture_sub_image(ctx, dims, texObj, texImage, target, level,
3534 xoffset, yoffset, zoffset, width, height, depth,
3535 format, type, pixels);
3536 }
3537
3538
3539 static void
3540 texsubimage(struct gl_context *ctx, GLuint dims, GLenum target, GLint level,
3541 GLint xoffset, GLint yoffset, GLint zoffset,
3542 GLsizei width, GLsizei height, GLsizei depth,
3543 GLenum format, GLenum type, const GLvoid *pixels)
3544 {
3545 struct gl_texture_object *texObj;
3546 struct gl_texture_image *texImage;
3547
3548 texObj = _mesa_get_current_tex_object(ctx, target);
3549 texImage = _mesa_select_tex_image(texObj, target, level);
3550
3551 texture_sub_image(ctx, dims, texObj, texImage, target, level,
3552 xoffset, yoffset, zoffset, width, height, depth,
3553 format, type, pixels);
3554 }
3555
3556
3557 /**
3558 * Implement all the glTextureSubImage1/2/3D() functions.
3559 * Must split this out this way because of GL_TEXTURE_CUBE_MAP.
3560 */
3561 static ALWAYS_INLINE void
3562 texturesubimage(struct gl_context *ctx, GLuint dims,
3563 GLuint texture, GLenum target, GLint level,
3564 GLint xoffset, GLint yoffset, GLint zoffset,
3565 GLsizei width, GLsizei height, GLsizei depth,
3566 GLenum format, GLenum type, const GLvoid *pixels,
3567 const char *callerName, bool no_error, bool ext_dsa)
3568 {
3569 struct gl_texture_object *texObj;
3570 struct gl_texture_image *texImage;
3571 int i;
3572
3573 if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
3574 _mesa_debug(ctx,
3575 "glTextureSubImage%uD %d %d %d %d %d %d %d %d %s %s %p\n",
3576 dims, texture, level,
3577 xoffset, yoffset, zoffset, width, height, depth,
3578 _mesa_enum_to_string(format),
3579 _mesa_enum_to_string(type), pixels);
3580
3581 /* Get the texture object by Name. */
3582 if (!no_error) {
3583 if (!ext_dsa) {
3584 texObj = _mesa_lookup_texture_err(ctx, texture, callerName);
3585 } else {
3586 texObj = lookup_texture_ext_dsa(ctx, target, texture, callerName);
3587 }
3588 if (!texObj)
3589 return;
3590 } else {
3591 texObj = _mesa_lookup_texture(ctx, texture);
3592 }
3593
3594 if (!no_error) {
3595 /* check target (proxies not allowed) */
3596 if (!legal_texsubimage_target(ctx, dims, texObj->Target, true)) {
3597 _mesa_error(ctx, GL_INVALID_ENUM, "%s(target=%s)",
3598 callerName, _mesa_enum_to_string(texObj->Target));
3599 return;
3600 }
3601
3602 if (texsubimage_error_check(ctx, dims, texObj, texObj->Target, level,
3603 xoffset, yoffset, zoffset,
3604 width, height, depth, format, type,
3605 pixels, callerName)) {
3606 return; /* error was detected */
3607 }
3608 }
3609
3610 /* Must handle special case GL_TEXTURE_CUBE_MAP. */
3611 if (texObj->Target == GL_TEXTURE_CUBE_MAP) {
3612 GLint imageStride;
3613
3614 /*
3615 * What do we do if the user created a texture with the following code
3616 * and then called this function with its handle?
3617 *
3618 * GLuint tex;
3619 * glCreateTextures(GL_TEXTURE_CUBE_MAP, 1, &tex);
3620 * glBindTexture(GL_TEXTURE_CUBE_MAP, tex);
3621 * glTexImage2D(GL_TEXTURE_CUBE_MAP_POSITIVE_X, 0, ...);
3622 * glTexImage2D(GL_TEXTURE_CUBE_MAP_NEGATIVE_X, 0, ...);
3623 * glTexImage2D(GL_TEXTURE_CUBE_MAP_POSITIVE_Y, 0, ...);
3624 * // Note: GL_TEXTURE_CUBE_MAP_NEGATIVE_Y not set, or given the
3625 * // wrong format, or given the wrong size, etc.
3626 * glTexImage2D(GL_TEXTURE_CUBE_MAP_POSITIVE_Z, 0, ...);
3627 * glTexImage2D(GL_TEXTURE_CUBE_MAP_NEGATIVE_Z, 0, ...);
3628 *
3629 * A bug has been filed against the spec for this case. In the
3630 * meantime, we will check for cube completeness.
3631 *
3632 * According to Section 8.17 Texture Completeness in the OpenGL 4.5
3633 * Core Profile spec (30.10.2014):
3634 * "[A] cube map texture is cube complete if the
3635 * following conditions all hold true: The [base level] texture
3636 * images of each of the six cube map faces have identical, positive,
3637 * and square dimensions. The [base level] images were each specified
3638 * with the same internal format."
3639 *
3640 * It seems reasonable to check for cube completeness of an arbitrary
3641 * level here so that the image data has a consistent format and size.
3642 */
3643 if (!no_error && !_mesa_cube_level_complete(texObj, level)) {
3644 _mesa_error(ctx, GL_INVALID_OPERATION,
3645 "glTextureSubImage%uD(cube map incomplete)",
3646 dims);
3647 return;
3648 }
3649
3650 imageStride = _mesa_image_image_stride(&ctx->Unpack, width, height,
3651 format, type);
3652 /* Copy in each face. */
3653 for (i = zoffset; i < zoffset + depth; ++i) {
3654 texImage = texObj->Image[i][level];
3655 assert(texImage);
3656
3657 texture_sub_image(ctx, 3, texObj, texImage, texObj->Target,
3658 level, xoffset, yoffset, 0,
3659 width, height, 1, format,
3660 type, pixels);
3661 pixels = (GLubyte *) pixels + imageStride;
3662 }
3663 }
3664 else {
3665 texImage = _mesa_select_tex_image(texObj, texObj->Target, level);
3666 assert(texImage);
3667
3668 texture_sub_image(ctx, dims, texObj, texImage, texObj->Target,
3669 level, xoffset, yoffset, zoffset,
3670 width, height, depth, format,
3671 type, pixels);
3672 }
3673 }
3674
3675
3676 static void
3677 texturesubimage_error(struct gl_context *ctx, GLuint dims,
3678 GLuint texture, GLenum target, GLint level,
3679 GLint xoffset, GLint yoffset, GLint zoffset,
3680 GLsizei width, GLsizei height, GLsizei depth,
3681 GLenum format, GLenum type, const GLvoid *pixels,
3682 const char *callerName, bool ext_dsa)
3683 {
3684 texturesubimage(ctx, dims, texture, target, level, xoffset, yoffset,
3685 zoffset, width, height, depth, format, type, pixels,
3686 callerName, false, ext_dsa);
3687 }
3688
3689
3690 static void
3691 texturesubimage_no_error(struct gl_context *ctx, GLuint dims,
3692 GLuint texture, GLenum target, GLint level,
3693 GLint xoffset, GLint yoffset, GLint zoffset,
3694 GLsizei width, GLsizei height, GLsizei depth,
3695 GLenum format, GLenum type, const GLvoid *pixels,
3696 const char *callerName, bool ext_dsa)
3697 {
3698 texturesubimage(ctx, dims, texture, target, level, xoffset, yoffset,
3699 zoffset, width, height, depth, format, type, pixels,
3700 callerName, true, ext_dsa);
3701 }
3702
3703
3704 void GLAPIENTRY
3705 _mesa_TexSubImage1D_no_error(GLenum target, GLint level,
3706 GLint xoffset, GLsizei width,
3707 GLenum format, GLenum type,
3708 const GLvoid *pixels)
3709 {
3710 GET_CURRENT_CONTEXT(ctx);
3711 texsubimage(ctx, 1, target, level,
3712 xoffset, 0, 0,
3713 width, 1, 1,
3714 format, type, pixels);
3715 }
3716
3717
3718 void GLAPIENTRY
3719 _mesa_TexSubImage1D( GLenum target, GLint level,
3720 GLint xoffset, GLsizei width,
3721 GLenum format, GLenum type,
3722 const GLvoid *pixels )
3723 {
3724 GET_CURRENT_CONTEXT(ctx);
3725 texsubimage_err(ctx, 1, target, level,
3726 xoffset, 0, 0,
3727 width, 1, 1,
3728 format, type, pixels, "glTexSubImage1D");
3729 }
3730
3731
3732 void GLAPIENTRY
3733 _mesa_TexSubImage2D_no_error(GLenum target, GLint level,
3734 GLint xoffset, GLint yoffset,
3735 GLsizei width, GLsizei height,
3736 GLenum format, GLenum type,
3737 const GLvoid *pixels)
3738 {
3739 GET_CURRENT_CONTEXT(ctx);
3740 texsubimage(ctx, 2, target, level,
3741 xoffset, yoffset, 0,
3742 width, height, 1,
3743 format, type, pixels);
3744 }
3745
3746
3747 void GLAPIENTRY
3748 _mesa_TexSubImage2D( GLenum target, GLint level,
3749 GLint xoffset, GLint yoffset,
3750 GLsizei width, GLsizei height,
3751 GLenum format, GLenum type,
3752 const GLvoid *pixels )
3753 {
3754 GET_CURRENT_CONTEXT(ctx);
3755 texsubimage_err(ctx, 2, target, level,
3756 xoffset, yoffset, 0,
3757 width, height, 1,
3758 format, type, pixels, "glTexSubImage2D");
3759 }
3760
3761
3762 void GLAPIENTRY
3763 _mesa_TexSubImage3D_no_error(GLenum target, GLint level,
3764 GLint xoffset, GLint yoffset, GLint zoffset,
3765 GLsizei width, GLsizei height, GLsizei depth,
3766 GLenum format, GLenum type,
3767 const GLvoid *pixels)
3768 {
3769 GET_CURRENT_CONTEXT(ctx);
3770 texsubimage(ctx, 3, target, level,
3771 xoffset, yoffset, zoffset,
3772 width, height, depth,
3773 format, type, pixels);
3774 }
3775
3776
3777 void GLAPIENTRY
3778 _mesa_TexSubImage3D( GLenum target, GLint level,
3779 GLint xoffset, GLint yoffset, GLint zoffset,
3780 GLsizei width, GLsizei height, GLsizei depth,
3781 GLenum format, GLenum type,
3782 const GLvoid *pixels )
3783 {
3784 GET_CURRENT_CONTEXT(ctx);
3785 texsubimage_err(ctx, 3, target, level,
3786 xoffset, yoffset, zoffset,
3787 width, height, depth,
3788 format, type, pixels, "glTexSubImage3D");
3789 }
3790
3791
3792 void GLAPIENTRY
3793 _mesa_TextureSubImage1D_no_error(GLuint texture, GLint level, GLint xoffset,
3794 GLsizei width, GLenum format, GLenum type,
3795 const GLvoid *pixels)
3796 {
3797 GET_CURRENT_CONTEXT(ctx);
3798 texturesubimage_no_error(ctx, 1, texture, 0, level, xoffset, 0, 0, width,
3799 1, 1, format, type, pixels, "glTextureSubImage1D",
3800 false);
3801 }
3802
3803
3804 void GLAPIENTRY
3805 _mesa_TextureSubImage1DEXT(GLuint texture, GLenum target, GLint level,
3806 GLint xoffset, GLsizei width,
3807 GLenum format, GLenum type,
3808 const GLvoid *pixels)
3809 {
3810 GET_CURRENT_CONTEXT(ctx);
3811 texturesubimage_error(ctx, 1, texture, target, level, xoffset, 0, 0, width, 1,
3812 1, format, type, pixels, "glTextureSubImage1DEXT",
3813 false);
3814 }
3815
3816
3817 void GLAPIENTRY
3818 _mesa_MultiTexSubImage1DEXT(GLenum texunit, GLenum target, GLint level,
3819 GLint xoffset, GLsizei width,
3820 GLenum format, GLenum type,
3821 const GLvoid *pixels)
3822 {
3823 GET_CURRENT_CONTEXT(ctx);
3824 struct gl_texture_object *texObj;
3825 struct gl_texture_image *texImage;
3826
3827 texObj = _mesa_get_texobj_by_target_and_texunit(ctx, target,
3828 texunit - GL_TEXTURE0,
3829 false,
3830 "glMultiTexImage1DEXT");
3831 texImage = _mesa_select_tex_image(texObj, target, level);
3832
3833 texture_sub_image(ctx, 1, texObj, texImage, target, level,
3834 xoffset, 0, 0, width, 1, 1,
3835 format, type, pixels);
3836 }
3837
3838
3839 void GLAPIENTRY
3840 _mesa_TextureSubImage1D(GLuint texture, GLint level,
3841 GLint xoffset, GLsizei width,
3842 GLenum format, GLenum type,
3843 const GLvoid *pixels)
3844 {
3845 GET_CURRENT_CONTEXT(ctx);
3846 texturesubimage_error(ctx, 1, texture, 0, level, xoffset, 0, 0, width, 1,
3847 1, format, type, pixels, "glTextureSubImage1D",
3848 false);
3849 }
3850
3851
3852 void GLAPIENTRY
3853 _mesa_TextureSubImage2D_no_error(GLuint texture, GLint level, GLint xoffset,
3854 GLint yoffset, GLsizei width, GLsizei height,
3855 GLenum format, GLenum type,
3856 const GLvoid *pixels)
3857 {
3858 GET_CURRENT_CONTEXT(ctx);
3859 texturesubimage_no_error(ctx, 2, texture, 0, level, xoffset, yoffset, 0,
3860 width, height, 1, format, type, pixels,
3861 "glTextureSubImage2D", false);
3862 }
3863
3864
3865 void GLAPIENTRY
3866 _mesa_TextureSubImage2DEXT(GLuint texture, GLenum target, GLint level,
3867 GLint xoffset, GLint yoffset, GLsizei width,
3868 GLsizei height, GLenum format, GLenum type,
3869 const GLvoid *pixels)
3870 {
3871 GET_CURRENT_CONTEXT(ctx);
3872 texturesubimage_error(ctx, 2, texture, target, level, xoffset, yoffset, 0,
3873 width, height, 1, format, type, pixels,
3874 "glTextureSubImage2DEXT", true);
3875 }
3876
3877
3878 void GLAPIENTRY
3879 _mesa_MultiTexSubImage2DEXT(GLenum texunit, GLenum target, GLint level,
3880 GLint xoffset, GLint yoffset, GLsizei width,
3881 GLsizei height, GLenum format, GLenum type,
3882 const GLvoid *pixels)
3883 {
3884 GET_CURRENT_CONTEXT(ctx);
3885 struct gl_texture_object *texObj;
3886 struct gl_texture_image *texImage;
3887
3888 texObj = _mesa_get_texobj_by_target_and_texunit(ctx, target,
3889 texunit - GL_TEXTURE0,
3890 false,
3891 "glMultiTexImage2DEXT");
3892 texImage = _mesa_select_tex_image(texObj, target, level);
3893
3894 texture_sub_image(ctx, 2, texObj, texImage, target, level,
3895 xoffset, yoffset, 0, width, height, 1,
3896 format, type, pixels);
3897 }
3898
3899
3900 void GLAPIENTRY
3901 _mesa_TextureSubImage2D(GLuint texture, GLint level,
3902 GLint xoffset, GLint yoffset,
3903 GLsizei width, GLsizei height,
3904 GLenum format, GLenum type,
3905 const GLvoid *pixels)
3906 {
3907 GET_CURRENT_CONTEXT(ctx);
3908 texturesubimage_error(ctx, 2, texture, 0, level, xoffset, yoffset, 0,
3909 width, height, 1, format, type, pixels,
3910 "glTextureSubImage2D", false);
3911 }
3912
3913
3914 void GLAPIENTRY
3915 _mesa_TextureSubImage3D_no_error(GLuint texture, GLint level, GLint xoffset,
3916 GLint yoffset, GLint zoffset, GLsizei width,
3917 GLsizei height, GLsizei depth, GLenum format,
3918 GLenum type, const GLvoid *pixels)
3919 {
3920 GET_CURRENT_CONTEXT(ctx);
3921 texturesubimage_no_error(ctx, 3, texture, 0, level, xoffset, yoffset,
3922 zoffset, width, height, depth, format, type,
3923 pixels, "glTextureSubImage3D", false);
3924 }
3925
3926
3927 void GLAPIENTRY
3928 _mesa_TextureSubImage3DEXT(GLuint texture, GLenum target, GLint level,
3929 GLint xoffset, GLint yoffset, GLint zoffset,
3930 GLsizei width, GLsizei height, GLsizei depth,
3931 GLenum format, GLenum type, const GLvoid *pixels)
3932 {
3933 GET_CURRENT_CONTEXT(ctx);
3934 texturesubimage_error(ctx, 3, texture, target, level, xoffset, yoffset,
3935 zoffset, width, height, depth, format, type,
3936 pixels, "glTextureSubImage3DEXT", true);
3937 }
3938
3939
3940 void GLAPIENTRY
3941 _mesa_MultiTexSubImage3DEXT(GLenum texunit, GLenum target, GLint level,
3942 GLint xoffset, GLint yoffset, GLint zoffset,
3943 GLsizei width, GLsizei height, GLsizei depth,
3944 GLenum format, GLenum type, const GLvoid *pixels)
3945 {
3946 GET_CURRENT_CONTEXT(ctx);
3947 struct gl_texture_object *texObj;
3948 struct gl_texture_image *texImage;
3949
3950 texObj = _mesa_get_texobj_by_target_and_texunit(ctx, target,
3951 texunit - GL_TEXTURE0,
3952 false,
3953 "glMultiTexImage3DEXT");
3954 texImage = _mesa_select_tex_image(texObj, target, level);
3955
3956 texture_sub_image(ctx, 3, texObj, texImage, target, level,
3957 xoffset, yoffset, zoffset, width, height, depth,
3958 format, type, pixels);
3959 }
3960
3961
3962 void GLAPIENTRY
3963 _mesa_TextureSubImage3D(GLuint texture, GLint level,
3964 GLint xoffset, GLint yoffset, GLint zoffset,
3965 GLsizei width, GLsizei height, GLsizei depth,
3966 GLenum format, GLenum type,
3967 const GLvoid *pixels)
3968 {
3969 GET_CURRENT_CONTEXT(ctx);
3970 texturesubimage_error(ctx, 3, texture, 0, level, xoffset, yoffset, zoffset,
3971 width, height, depth, format, type, pixels,
3972 "glTextureSubImage3D", false);
3973 }
3974
3975
3976 /**
3977 * For glCopyTexSubImage, return the source renderbuffer to copy texel data
3978 * from. This depends on whether the texture contains color or depth values.
3979 */
3980 static struct gl_renderbuffer *
3981 get_copy_tex_image_source(struct gl_context *ctx, mesa_format texFormat)
3982 {
3983 if (_mesa_get_format_bits(texFormat, GL_DEPTH_BITS) > 0) {
3984 /* reading from depth/stencil buffer */
3985 return ctx->ReadBuffer->Attachment[BUFFER_DEPTH].Renderbuffer;
3986 } else if (_mesa_get_format_bits(texFormat, GL_STENCIL_BITS) > 0) {
3987 return ctx->ReadBuffer->Attachment[BUFFER_STENCIL].Renderbuffer;
3988 } else {
3989 /* copying from color buffer */
3990 return ctx->ReadBuffer->_ColorReadBuffer;
3991 }
3992 }
3993
3994
3995 static void
3996 copytexsubimage_by_slice(struct gl_context *ctx,
3997 struct gl_texture_image *texImage,
3998 GLuint dims,
3999 GLint xoffset, GLint yoffset, GLint zoffset,
4000 struct gl_renderbuffer *rb,
4001 GLint x, GLint y,
4002 GLsizei width, GLsizei height)
4003 {
4004 if (texImage->TexObject->Target == GL_TEXTURE_1D_ARRAY) {
4005 int slice;
4006
4007 /* For 1D arrays, we copy each scanline of the source rectangle into the
4008 * next array slice.
4009 */
4010 assert(zoffset == 0);
4011
4012 for (slice = 0; slice < height; slice++) {
4013 assert(yoffset + slice < texImage->Height);
4014 ctx->Driver.CopyTexSubImage(ctx, 2, texImage,
4015 xoffset, 0, yoffset + slice,
4016 rb, x, y + slice, width, 1);
4017 }
4018 } else {
4019 ctx->Driver.CopyTexSubImage(ctx, dims, texImage,
4020 xoffset, yoffset, zoffset,
4021 rb, x, y, width, height);
4022 }
4023 }
4024
4025
4026 static GLboolean
4027 formats_differ_in_component_sizes(mesa_format f1, mesa_format f2)
4028 {
4029 GLint f1_r_bits = _mesa_get_format_bits(f1, GL_RED_BITS);
4030 GLint f1_g_bits = _mesa_get_format_bits(f1, GL_GREEN_BITS);
4031 GLint f1_b_bits = _mesa_get_format_bits(f1, GL_BLUE_BITS);
4032 GLint f1_a_bits = _mesa_get_format_bits(f1, GL_ALPHA_BITS);
4033
4034 GLint f2_r_bits = _mesa_get_format_bits(f2, GL_RED_BITS);
4035 GLint f2_g_bits = _mesa_get_format_bits(f2, GL_GREEN_BITS);
4036 GLint f2_b_bits = _mesa_get_format_bits(f2, GL_BLUE_BITS);
4037 GLint f2_a_bits = _mesa_get_format_bits(f2, GL_ALPHA_BITS);
4038
4039 if ((f1_r_bits && f2_r_bits && f1_r_bits != f2_r_bits)
4040 || (f1_g_bits && f2_g_bits && f1_g_bits != f2_g_bits)
4041 || (f1_b_bits && f2_b_bits && f1_b_bits != f2_b_bits)
4042 || (f1_a_bits && f2_a_bits && f1_a_bits != f2_a_bits))
4043 return GL_TRUE;
4044
4045 return GL_FALSE;
4046 }
4047
4048
4049 /**
4050 * Check if the given texture format and size arguments match those
4051 * of the texture image.
4052 * \param return true if arguments match, false otherwise.
4053 */
4054 static bool
4055 can_avoid_reallocation(const struct gl_texture_image *texImage,
4056 GLenum internalFormat,
4057 mesa_format texFormat, GLsizei width,
4058 GLsizei height, GLint border)
4059 {
4060 if (texImage->InternalFormat != internalFormat)
4061 return false;
4062 if (texImage->TexFormat != texFormat)
4063 return false;
4064 if (texImage->Border != border)
4065 return false;
4066 if (texImage->Width2 != width)
4067 return false;
4068 if (texImage->Height2 != height)
4069 return false;
4070 return true;
4071 }
4072
4073
4074 /**
4075 * Implementation for glCopyTex(ture)SubImage1/2/3D() functions.
4076 */
4077 static void
4078 copy_texture_sub_image(struct gl_context *ctx, GLuint dims,
4079 struct gl_texture_object *texObj,
4080 GLenum target, GLint level,
4081 GLint xoffset, GLint yoffset, GLint zoffset,
4082 GLint x, GLint y, GLsizei width, GLsizei height)
4083 {
4084 struct gl_texture_image *texImage;
4085
4086 _mesa_lock_texture(ctx, texObj);
4087
4088 texImage = _mesa_select_tex_image(texObj, target, level);
4089
4090 /* If we have a border, offset=-1 is legal. Bias by border width. */
4091 switch (dims) {
4092 case 3:
4093 if (target != GL_TEXTURE_2D_ARRAY)
4094 zoffset += texImage->Border;
4095 /* fall-through */
4096 case 2:
4097 if (target != GL_TEXTURE_1D_ARRAY)
4098 yoffset += texImage->Border;
4099 /* fall-through */
4100 case 1:
4101 xoffset += texImage->Border;
4102 }
4103
4104 if (_mesa_clip_copytexsubimage(ctx, &xoffset, &yoffset, &x, &y,
4105 &width, &height)) {
4106 struct gl_renderbuffer *srcRb =
4107 get_copy_tex_image_source(ctx, texImage->TexFormat);
4108
4109 copytexsubimage_by_slice(ctx, texImage, dims, xoffset, yoffset, zoffset,
4110 srcRb, x, y, width, height);
4111
4112 check_gen_mipmap(ctx, target, texObj, level);
4113
4114 /* NOTE: Don't signal _NEW_TEXTURE_OBJECT since we've only changed
4115 * the texel data, not the texture format, size, etc.
4116 */
4117 }
4118
4119 _mesa_unlock_texture(ctx, texObj);
4120 }
4121
4122
4123 static void
4124 copy_texture_sub_image_err(struct gl_context *ctx, GLuint dims,
4125 struct gl_texture_object *texObj,
4126 GLenum target, GLint level,
4127 GLint xoffset, GLint yoffset, GLint zoffset,
4128 GLint x, GLint y, GLsizei width, GLsizei height,
4129 const char *caller)
4130 {
4131 FLUSH_VERTICES(ctx, 0);
4132
4133 if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
4134 _mesa_debug(ctx, "%s %s %d %d %d %d %d %d %d %d\n", caller,
4135 _mesa_enum_to_string(target),
4136 level, xoffset, yoffset, zoffset, x, y, width, height);
4137
4138 if (ctx->NewState & NEW_COPY_TEX_STATE)
4139 _mesa_update_state(ctx);
4140
4141 if (copytexsubimage_error_check(ctx, dims, texObj, target, level,
4142 xoffset, yoffset, zoffset,
4143 width, height, caller)) {
4144 return;
4145 }
4146
4147 copy_texture_sub_image(ctx, dims, texObj, target, level, xoffset, yoffset,
4148 zoffset, x, y, width, height);
4149 }
4150
4151
4152 static void
4153 copy_texture_sub_image_no_error(struct gl_context *ctx, GLuint dims,
4154 struct gl_texture_object *texObj,
4155 GLenum target, GLint level,
4156 GLint xoffset, GLint yoffset, GLint zoffset,
4157 GLint x, GLint y, GLsizei width, GLsizei height)
4158 {
4159 FLUSH_VERTICES(ctx, 0);
4160
4161 if (ctx->NewState & NEW_COPY_TEX_STATE)
4162 _mesa_update_state(ctx);
4163
4164 copy_texture_sub_image(ctx, dims, texObj, target, level, xoffset, yoffset,
4165 zoffset, x, y, width, height);
4166 }
4167
4168
4169 /**
4170 * Implement the glCopyTexImage1/2D() functions.
4171 */
4172 static ALWAYS_INLINE void
4173 copyteximage(struct gl_context *ctx, GLuint dims, struct gl_texture_object *texObj,
4174 GLenum target, GLint level, GLenum internalFormat,
4175 GLint x, GLint y, GLsizei width, GLsizei height, GLint border,
4176 bool no_error)
4177 {
4178 struct gl_texture_image *texImage;
4179 mesa_format texFormat;
4180
4181 FLUSH_VERTICES(ctx, 0);
4182
4183 if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
4184 _mesa_debug(ctx, "glCopyTexImage%uD %s %d %s %d %d %d %d %d\n",
4185 dims,
4186 _mesa_enum_to_string(target), level,
4187 _mesa_enum_to_string(internalFormat),
4188 x, y, width, height, border);
4189
4190 if (ctx->NewState & NEW_COPY_TEX_STATE)
4191 _mesa_update_state(ctx);
4192
4193 if (!no_error) {
4194 if (copytexture_error_check(ctx, dims, target, texObj, level,
4195 internalFormat, border))
4196 return;
4197
4198 if (!_mesa_legal_texture_dimensions(ctx, target, level, width, height,
4199 1, border)) {
4200 _mesa_error(ctx, GL_INVALID_VALUE,
4201 "glCopyTexImage%uD(invalid width=%d or height=%d)",
4202 dims, width, height);
4203 return;
4204 }
4205 }
4206
4207 assert(texObj);
4208
4209 texFormat = _mesa_choose_texture_format(ctx, texObj, target, level,
4210 internalFormat, GL_NONE, GL_NONE);
4211
4212 /* First check if reallocating the texture buffer can be avoided.
4213 * Without the realloc the copy can be 20x faster.
4214 */
4215 _mesa_lock_texture(ctx, texObj);
4216 {
4217 texImage = _mesa_select_tex_image(texObj, target, level);
4218 if (texImage && can_avoid_reallocation(texImage, internalFormat, texFormat,
4219 width, height, border)) {
4220 _mesa_unlock_texture(ctx, texObj);
4221 if (no_error) {
4222 copy_texture_sub_image_no_error(ctx, dims, texObj, target, level, 0,
4223 0, 0, x, y, width, height);
4224 } else {
4225 copy_texture_sub_image_err(ctx, dims, texObj, target, level, 0, 0,
4226 0, x, y, width, height,"CopyTexImage");
4227 }
4228 return;
4229 }
4230 }
4231 _mesa_unlock_texture(ctx, texObj);
4232 _mesa_perf_debug(ctx, MESA_DEBUG_SEVERITY_LOW, "glCopyTexImage "
4233 "can't avoid reallocating texture storage\n");
4234
4235 if (!no_error && _mesa_is_gles3(ctx)) {
4236 struct gl_renderbuffer *rb =
4237 _mesa_get_read_renderbuffer_for_format(ctx, internalFormat);
4238
4239 if (_mesa_is_enum_format_unsized(internalFormat)) {
4240 /* Conversion from GL_RGB10_A2 source buffer format is not allowed in
4241 * OpenGL ES 3.0. Khronos bug# 9807.
4242 */
4243 if (rb->InternalFormat == GL_RGB10_A2) {
4244 _mesa_error(ctx, GL_INVALID_OPERATION,
4245 "glCopyTexImage%uD(Reading from GL_RGB10_A2 buffer"
4246 " and writing to unsized internal format)", dims);
4247 return;
4248 }
4249 }
4250 /* From Page 139 of OpenGL ES 3.0 spec:
4251 * "If internalformat is sized, the internal format of the new texel
4252 * array is internalformat, and this is also the new texel array’s
4253 * effective internal format. If the component sizes of internalformat
4254 * do not exactly match the corresponding component sizes of the source
4255 * buffer’s effective internal format, described below, an
4256 * INVALID_OPERATION error is generated. If internalformat is unsized,
4257 * the internal format of the new texel array is the effective internal
4258 * format of the source buffer, and this is also the new texel array’s
4259 * effective internal format.
4260 */
4261 else if (formats_differ_in_component_sizes (texFormat, rb->Format)) {
4262 _mesa_error(ctx, GL_INVALID_OPERATION,
4263 "glCopyTexImage%uD(component size changed in"
4264 " internal format)", dims);
4265 return;
4266 }
4267 }
4268
4269 assert(texFormat != MESA_FORMAT_NONE);
4270
4271 if (!ctx->Driver.TestProxyTexImage(ctx, proxy_target(target),
4272 0, level, texFormat, 1,
4273 width, height, 1)) {
4274 _mesa_error(ctx, GL_OUT_OF_MEMORY,
4275 "glCopyTexImage%uD(image too large)", dims);
4276 return;
4277 }
4278
4279 if (border && ctx->Const.StripTextureBorder) {
4280 x += border;
4281 width -= border * 2;
4282 if (dims == 2) {
4283 y += border;
4284 height -= border * 2;
4285 }
4286 border = 0;
4287 }
4288
4289 _mesa_lock_texture(ctx, texObj);
4290 {
4291 texImage = _mesa_get_tex_image(ctx, texObj, target, level);
4292
4293 if (!texImage) {
4294 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glCopyTexImage%uD", dims);
4295 }
4296 else {
4297 GLint srcX = x, srcY = y, dstX = 0, dstY = 0, dstZ = 0;
4298 const GLuint face = _mesa_tex_target_to_face(target);
4299
4300 /* Free old texture image */
4301 ctx->Driver.FreeTextureImageBuffer(ctx, texImage);
4302
4303 _mesa_init_teximage_fields(ctx, texImage, width, height, 1,
4304 border, internalFormat, texFormat);
4305
4306 if (width && height) {
4307 /* Allocate texture memory (no pixel data yet) */
4308 ctx->Driver.AllocTextureImageBuffer(ctx, texImage);
4309
4310 if (_mesa_clip_copytexsubimage(ctx, &dstX, &dstY, &srcX, &srcY,
4311 &width, &height)) {
4312 struct gl_renderbuffer *srcRb =
4313 get_copy_tex_image_source(ctx, texImage->TexFormat);
4314
4315 copytexsubimage_by_slice(ctx, texImage, dims,
4316 dstX, dstY, dstZ,
4317 srcRb, srcX, srcY, width, height);
4318 }
4319
4320 check_gen_mipmap(ctx, target, texObj, level);
4321 }
4322
4323 _mesa_update_fbo_texture(ctx, texObj, face, level);
4324
4325 _mesa_dirty_texobj(ctx, texObj);
4326 }
4327 }
4328 _mesa_unlock_texture(ctx, texObj);
4329 }
4330
4331
4332 static void
4333 copyteximage_err(struct gl_context *ctx, GLuint dims,
4334 GLenum target,
4335 GLint level, GLenum internalFormat, GLint x, GLint y,
4336 GLsizei width, GLsizei height, GLint border)
4337 {
4338 struct gl_texture_object* texObj = _mesa_get_current_tex_object(ctx, target);
4339 copyteximage(ctx, dims, texObj, target, level, internalFormat, x, y, width, height,
4340 border, false);
4341 }
4342
4343
4344 static void
4345 copyteximage_no_error(struct gl_context *ctx, GLuint dims, GLenum target,
4346 GLint level, GLenum internalFormat, GLint x, GLint y,
4347 GLsizei width, GLsizei height, GLint border)
4348 {
4349 struct gl_texture_object* texObj = _mesa_get_current_tex_object(ctx, target);
4350 copyteximage(ctx, dims, texObj, target, level, internalFormat, x, y, width, height,
4351 border, true);
4352 }
4353
4354
4355 void GLAPIENTRY
4356 _mesa_CopyTexImage1D( GLenum target, GLint level,
4357 GLenum internalFormat,
4358 GLint x, GLint y,
4359 GLsizei width, GLint border )
4360 {
4361 GET_CURRENT_CONTEXT(ctx);
4362 copyteximage_err(ctx, 1, target, level, internalFormat, x, y, width, 1,
4363 border);
4364 }
4365
4366
4367 void GLAPIENTRY
4368 _mesa_CopyTextureImage1DEXT( GLuint texture, GLenum target, GLint level,
4369 GLenum internalFormat,
4370 GLint x, GLint y,
4371 GLsizei width, GLint border )
4372 {
4373 GET_CURRENT_CONTEXT(ctx);
4374 struct gl_texture_object* texObj =
4375 _mesa_lookup_or_create_texture(ctx, target, texture, false, true,
4376 "glCopyTextureImage1DEXT");
4377 if (!texObj)
4378 return;
4379 copyteximage(ctx, 1, texObj, target, level, internalFormat, x, y, width, 1,
4380 border, false);
4381 }
4382
4383
4384 void GLAPIENTRY
4385 _mesa_CopyMultiTexImage1DEXT( GLenum texunit, GLenum target, GLint level,
4386 GLenum internalFormat,
4387 GLint x, GLint y,
4388 GLsizei width, GLint border )
4389 {
4390 GET_CURRENT_CONTEXT(ctx);
4391 struct gl_texture_object* texObj =
4392 _mesa_get_texobj_by_target_and_texunit(ctx, target,
4393 texunit - GL_TEXTURE0,
4394 false,
4395 "glCopyMultiTexImage1DEXT");
4396 if (!texObj)
4397 return;
4398 copyteximage(ctx, 1, texObj, target, level, internalFormat, x, y, width, 1,
4399 border, false);
4400 }
4401
4402
4403 void GLAPIENTRY
4404 _mesa_CopyTexImage2D( GLenum target, GLint level, GLenum internalFormat,
4405 GLint x, GLint y, GLsizei width, GLsizei height,
4406 GLint border )
4407 {
4408 GET_CURRENT_CONTEXT(ctx);
4409 copyteximage_err(ctx, 2, target, level, internalFormat,
4410 x, y, width, height, border);
4411 }
4412
4413
4414 void GLAPIENTRY
4415 _mesa_CopyTextureImage2DEXT( GLuint texture, GLenum target, GLint level,
4416 GLenum internalFormat,
4417 GLint x, GLint y,
4418 GLsizei width, GLsizei height,
4419 GLint border )
4420 {
4421 GET_CURRENT_CONTEXT(ctx);
4422 struct gl_texture_object* texObj =
4423 _mesa_lookup_or_create_texture(ctx, target, texture, false, true,
4424 "glCopyTextureImage2DEXT");
4425 if (!texObj)
4426 return;
4427 copyteximage(ctx, 2, texObj, target, level, internalFormat, x, y, width, height,
4428 border, false);
4429 }
4430
4431
4432 void GLAPIENTRY
4433 _mesa_CopyMultiTexImage2DEXT( GLenum texunit, GLenum target, GLint level,
4434 GLenum internalFormat,
4435 GLint x, GLint y,
4436 GLsizei width, GLsizei height, GLint border )
4437 {
4438 GET_CURRENT_CONTEXT(ctx);
4439 struct gl_texture_object* texObj =
4440 _mesa_get_texobj_by_target_and_texunit(ctx, target,
4441 texunit - GL_TEXTURE0,
4442 false,
4443 "glCopyMultiTexImage2DEXT");
4444 if (!texObj)
4445 return;
4446 copyteximage(ctx, 2, texObj, target, level, internalFormat, x, y, width, height,
4447 border, false);
4448 }
4449
4450
4451 void GLAPIENTRY
4452 _mesa_CopyTexImage1D_no_error(GLenum target, GLint level, GLenum internalFormat,
4453 GLint x, GLint y, GLsizei width, GLint border)
4454 {
4455 GET_CURRENT_CONTEXT(ctx);
4456 copyteximage_no_error(ctx, 1, target, level, internalFormat, x, y, width, 1,
4457 border);
4458 }
4459
4460
4461 void GLAPIENTRY
4462 _mesa_CopyTexImage2D_no_error(GLenum target, GLint level, GLenum internalFormat,
4463 GLint x, GLint y, GLsizei width, GLsizei height,
4464 GLint border)
4465 {
4466 GET_CURRENT_CONTEXT(ctx);
4467 copyteximage_no_error(ctx, 2, target, level, internalFormat,
4468 x, y, width, height, border);
4469 }
4470
4471
4472 void GLAPIENTRY
4473 _mesa_CopyTexSubImage1D(GLenum target, GLint level,
4474 GLint xoffset, GLint x, GLint y, GLsizei width)
4475 {
4476 struct gl_texture_object* texObj;
4477 const char *self = "glCopyTexSubImage1D";
4478 GET_CURRENT_CONTEXT(ctx);
4479
4480 /* Check target (proxies not allowed). Target must be checked prior to
4481 * calling _mesa_get_current_tex_object.
4482 */
4483 if (!legal_texsubimage_target(ctx, 1, target, false)) {
4484 _mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid target %s)", self,
4485 _mesa_enum_to_string(target));
4486 return;
4487 }
4488
4489 texObj = _mesa_get_current_tex_object(ctx, target);
4490 if (!texObj)
4491 return;
4492
4493 copy_texture_sub_image_err(ctx, 1, texObj, target, level, xoffset, 0, 0,
4494 x, y, width, 1, self);
4495 }
4496
4497
4498 void GLAPIENTRY
4499 _mesa_CopyTexSubImage2D(GLenum target, GLint level,
4500 GLint xoffset, GLint yoffset,
4501 GLint x, GLint y, GLsizei width, GLsizei height)
4502 {
4503 struct gl_texture_object* texObj;
4504 const char *self = "glCopyTexSubImage2D";
4505 GET_CURRENT_CONTEXT(ctx);
4506
4507 /* Check target (proxies not allowed). Target must be checked prior to
4508 * calling _mesa_get_current_tex_object.
4509 */
4510 if (!legal_texsubimage_target(ctx, 2, target, false)) {
4511 _mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid target %s)", self,
4512 _mesa_enum_to_string(target));
4513 return;
4514 }
4515
4516 texObj = _mesa_get_current_tex_object(ctx, target);
4517 if (!texObj)
4518 return;
4519
4520 copy_texture_sub_image_err(ctx, 2, texObj, target, level, xoffset, yoffset,
4521 0, x, y, width, height, self);
4522 }
4523
4524
4525 void GLAPIENTRY
4526 _mesa_CopyTexSubImage3D(GLenum target, GLint level,
4527 GLint xoffset, GLint yoffset, GLint zoffset,
4528 GLint x, GLint y, GLsizei width, GLsizei height)
4529 {
4530 struct gl_texture_object* texObj;
4531 const char *self = "glCopyTexSubImage3D";
4532 GET_CURRENT_CONTEXT(ctx);
4533
4534 /* Check target (proxies not allowed). Target must be checked prior to
4535 * calling _mesa_get_current_tex_object.
4536 */
4537 if (!legal_texsubimage_target(ctx, 3, target, false)) {
4538 _mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid target %s)", self,
4539 _mesa_enum_to_string(target));
4540 return;
4541 }
4542
4543 texObj = _mesa_get_current_tex_object(ctx, target);
4544 if (!texObj)
4545 return;
4546
4547 copy_texture_sub_image_err(ctx, 3, texObj, target, level, xoffset, yoffset,
4548 zoffset, x, y, width, height, self);
4549 }
4550
4551
4552 void GLAPIENTRY
4553 _mesa_CopyTextureSubImage1D(GLuint texture, GLint level,
4554 GLint xoffset, GLint x, GLint y, GLsizei width)
4555 {
4556 struct gl_texture_object* texObj;
4557 const char *self = "glCopyTextureSubImage1D";
4558 GET_CURRENT_CONTEXT(ctx);
4559
4560 texObj = _mesa_lookup_texture_err(ctx, texture, self);
4561 if (!texObj)
4562 return;
4563
4564 /* Check target (proxies not allowed). */
4565 if (!legal_texsubimage_target(ctx, 1, texObj->Target, true)) {
4566 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(invalid target %s)", self,
4567 _mesa_enum_to_string(texObj->Target));
4568 return;
4569 }
4570
4571 copy_texture_sub_image_err(ctx, 1, texObj, texObj->Target, level, xoffset, 0,
4572 0, x, y, width, 1, self);
4573 }
4574
4575
4576 void GLAPIENTRY
4577 _mesa_CopyTextureSubImage1DEXT(GLuint texture, GLenum target, GLint level,
4578 GLint xoffset, GLint x, GLint y, GLsizei width)
4579 {
4580 struct gl_texture_object* texObj;
4581 const char *self = "glCopyTextureSubImage1DEXT";
4582 GET_CURRENT_CONTEXT(ctx);
4583
4584 texObj = _mesa_lookup_or_create_texture(ctx, target, texture, false, true,
4585 self);
4586 if (!texObj)
4587 return;
4588
4589 /* Check target (proxies not allowed). */
4590 if (!legal_texsubimage_target(ctx, 1, texObj->Target, true)) {
4591 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(invalid target %s)", self,
4592 _mesa_enum_to_string(texObj->Target));
4593 return;
4594 }
4595
4596 copy_texture_sub_image_err(ctx, 1, texObj, texObj->Target, level, xoffset, 0,
4597 0, x, y, width, 1, self);
4598 }
4599
4600
4601 void GLAPIENTRY
4602 _mesa_CopyMultiTexSubImage1DEXT(GLenum texunit, GLenum target, GLint level,
4603 GLint xoffset, GLint x, GLint y, GLsizei width)
4604 {
4605 struct gl_texture_object* texObj;
4606 const char *self = "glCopyMultiTexSubImage1DEXT";
4607 GET_CURRENT_CONTEXT(ctx);
4608
4609 texObj = _mesa_get_texobj_by_target_and_texunit(ctx, target,
4610 texunit - GL_TEXTURE0,
4611 false, self);
4612 if (!texObj)
4613 return;
4614
4615 copy_texture_sub_image_err(ctx, 1, texObj, texObj->Target, level, xoffset, 0,
4616 0, x, y, width, 1, self);
4617 }
4618
4619
4620 void GLAPIENTRY
4621 _mesa_CopyTextureSubImage2D(GLuint texture, GLint level,
4622 GLint xoffset, GLint yoffset,
4623 GLint x, GLint y, GLsizei width, GLsizei height)
4624 {
4625 struct gl_texture_object* texObj;
4626 const char *self = "glCopyTextureSubImage2D";
4627 GET_CURRENT_CONTEXT(ctx);
4628
4629 texObj = _mesa_lookup_texture_err(ctx, texture, self);
4630 if (!texObj)
4631 return;
4632
4633 /* Check target (proxies not allowed). */
4634 if (!legal_texsubimage_target(ctx, 2, texObj->Target, true)) {
4635 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(invalid target %s)", self,
4636 _mesa_enum_to_string(texObj->Target));
4637 return;
4638 }
4639
4640 copy_texture_sub_image_err(ctx, 2, texObj, texObj->Target, level, xoffset,
4641 yoffset, 0, x, y, width, height, self);
4642 }
4643
4644
4645 void GLAPIENTRY
4646 _mesa_CopyTextureSubImage2DEXT(GLuint texture, GLenum target, GLint level,
4647 GLint xoffset, GLint yoffset,
4648 GLint x, GLint y, GLsizei width, GLsizei height)
4649 {
4650 struct gl_texture_object* texObj;
4651 const char *self = "glCopyTextureSubImage2DEXT";
4652 GET_CURRENT_CONTEXT(ctx);
4653
4654 texObj = _mesa_lookup_or_create_texture(ctx, target, texture, false, true, self);
4655 if (!texObj)
4656 return;
4657
4658 /* Check target (proxies not allowed). */
4659 if (!legal_texsubimage_target(ctx, 2, texObj->Target, true)) {
4660 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(invalid target %s)", self,
4661 _mesa_enum_to_string(texObj->Target));
4662 return;
4663 }
4664
4665 copy_texture_sub_image_err(ctx, 2, texObj, texObj->Target, level, xoffset,
4666 yoffset, 0, x, y, width, height, self);
4667 }
4668
4669
4670 void GLAPIENTRY
4671 _mesa_CopyMultiTexSubImage2DEXT(GLenum texunit, GLenum target, GLint level,
4672 GLint xoffset, GLint yoffset,
4673 GLint x, GLint y, GLsizei width, GLsizei height)
4674 {
4675 struct gl_texture_object* texObj;
4676 const char *self = "glCopyMultiTexSubImage2DEXT";
4677 GET_CURRENT_CONTEXT(ctx);
4678
4679 texObj = _mesa_get_texobj_by_target_and_texunit(ctx, target,
4680 texunit - GL_TEXTURE0,
4681 false, self);
4682 if (!texObj)
4683 return;
4684
4685 copy_texture_sub_image_err(ctx, 2, texObj, texObj->Target, level, xoffset,
4686 yoffset, 0, x, y, width, height, self);
4687 }
4688
4689 void GLAPIENTRY
4690 _mesa_CopyTextureSubImage3D(GLuint texture, GLint level,
4691 GLint xoffset, GLint yoffset, GLint zoffset,
4692 GLint x, GLint y, GLsizei width, GLsizei height)
4693 {
4694 struct gl_texture_object* texObj;
4695 const char *self = "glCopyTextureSubImage3D";
4696 GET_CURRENT_CONTEXT(ctx);
4697
4698 texObj = _mesa_lookup_texture_err(ctx, texture, self);
4699 if (!texObj)
4700 return;
4701
4702 /* Check target (proxies not allowed). */
4703 if (!legal_texsubimage_target(ctx, 3, texObj->Target, true)) {
4704 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(invalid target %s)", self,
4705 _mesa_enum_to_string(texObj->Target));
4706 return;
4707 }
4708
4709 if (texObj->Target == GL_TEXTURE_CUBE_MAP) {
4710 /* Act like CopyTexSubImage2D */
4711 copy_texture_sub_image_err(ctx, 2, texObj,
4712 GL_TEXTURE_CUBE_MAP_POSITIVE_X + zoffset,
4713 level, xoffset, yoffset, 0, x, y, width, height,
4714 self);
4715 }
4716 else
4717 copy_texture_sub_image_err(ctx, 3, texObj, texObj->Target, level, xoffset,
4718 yoffset, zoffset, x, y, width, height, self);
4719 }
4720
4721
4722 void GLAPIENTRY
4723 _mesa_CopyTextureSubImage3DEXT(GLuint texture, GLenum target, GLint level,
4724 GLint xoffset, GLint yoffset, GLint zoffset,
4725 GLint x, GLint y, GLsizei width, GLsizei height)
4726 {
4727 struct gl_texture_object* texObj;
4728 const char *self = "glCopyTextureSubImage3D";
4729 GET_CURRENT_CONTEXT(ctx);
4730
4731 texObj = _mesa_lookup_or_create_texture(ctx, target, texture, false, true, self);
4732 if (!texObj)
4733 return;
4734
4735 /* Check target (proxies not allowed). */
4736 if (!legal_texsubimage_target(ctx, 3, texObj->Target, true)) {
4737 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(invalid target %s)", self,
4738 _mesa_enum_to_string(texObj->Target));
4739 return;
4740 }
4741
4742 if (texObj->Target == GL_TEXTURE_CUBE_MAP) {
4743 /* Act like CopyTexSubImage2D */
4744 copy_texture_sub_image_err(ctx, 2, texObj,
4745 GL_TEXTURE_CUBE_MAP_POSITIVE_X + zoffset,
4746 level, xoffset, yoffset, 0, x, y, width, height,
4747 self);
4748 }
4749 else
4750 copy_texture_sub_image_err(ctx, 3, texObj, texObj->Target, level, xoffset,
4751 yoffset, zoffset, x, y, width, height, self);
4752 }
4753
4754
4755 void GLAPIENTRY
4756 _mesa_CopyMultiTexSubImage3DEXT(GLenum texunit, GLenum target, GLint level,
4757 GLint xoffset, GLint yoffset, GLint zoffset,
4758 GLint x, GLint y, GLsizei width, GLsizei height)
4759 {
4760 struct gl_texture_object* texObj;
4761 const char *self = "glCopyMultiTexSubImage3D";
4762 GET_CURRENT_CONTEXT(ctx);
4763
4764 texObj = _mesa_get_texobj_by_target_and_texunit(ctx, target,
4765 texunit - GL_TEXTURE0,
4766 false, self);
4767 if (!texObj)
4768 return;
4769
4770 if (texObj->Target == GL_TEXTURE_CUBE_MAP) {
4771 /* Act like CopyTexSubImage2D */
4772 copy_texture_sub_image_err(ctx, 2, texObj,
4773 GL_TEXTURE_CUBE_MAP_POSITIVE_X + zoffset,
4774 level, xoffset, yoffset, 0, x, y, width, height,
4775 self);
4776 }
4777 else
4778 copy_texture_sub_image_err(ctx, 3, texObj, texObj->Target, level, xoffset,
4779 yoffset, zoffset, x, y, width, height, self);
4780 }
4781
4782
4783 void GLAPIENTRY
4784 _mesa_CopyTexSubImage1D_no_error(GLenum target, GLint level, GLint xoffset,
4785 GLint x, GLint y, GLsizei width)
4786 {
4787 GET_CURRENT_CONTEXT(ctx);
4788
4789 struct gl_texture_object* texObj = _mesa_get_current_tex_object(ctx, target);
4790 copy_texture_sub_image_no_error(ctx, 1, texObj, target, level, xoffset, 0, 0,
4791 x, y, width, 1);
4792 }
4793
4794
4795 void GLAPIENTRY
4796 _mesa_CopyTexSubImage2D_no_error(GLenum target, GLint level, GLint xoffset,
4797 GLint yoffset, GLint x, GLint y, GLsizei width,
4798 GLsizei height)
4799 {
4800 GET_CURRENT_CONTEXT(ctx);
4801
4802 struct gl_texture_object* texObj = _mesa_get_current_tex_object(ctx, target);
4803 copy_texture_sub_image_no_error(ctx, 2, texObj, target, level, xoffset,
4804 yoffset, 0, x, y, width, height);
4805 }
4806
4807
4808 void GLAPIENTRY
4809 _mesa_CopyTexSubImage3D_no_error(GLenum target, GLint level, GLint xoffset,
4810 GLint yoffset, GLint zoffset, GLint x, GLint y,
4811 GLsizei width, GLsizei height)
4812 {
4813 GET_CURRENT_CONTEXT(ctx);
4814
4815 struct gl_texture_object* texObj = _mesa_get_current_tex_object(ctx, target);
4816 copy_texture_sub_image_no_error(ctx, 3, texObj, target, level, xoffset,
4817 yoffset, zoffset, x, y, width, height);
4818 }
4819
4820
4821 void GLAPIENTRY
4822 _mesa_CopyTextureSubImage1D_no_error(GLuint texture, GLint level, GLint xoffset,
4823 GLint x, GLint y, GLsizei width)
4824 {
4825 GET_CURRENT_CONTEXT(ctx);
4826
4827 struct gl_texture_object* texObj = _mesa_lookup_texture(ctx, texture);
4828 copy_texture_sub_image_no_error(ctx, 1, texObj, texObj->Target, level,
4829 xoffset, 0, 0, x, y, width, 1);
4830 }
4831
4832
4833 void GLAPIENTRY
4834 _mesa_CopyTextureSubImage2D_no_error(GLuint texture, GLint level, GLint xoffset,
4835 GLint yoffset, GLint x, GLint y,
4836 GLsizei width, GLsizei height)
4837 {
4838 GET_CURRENT_CONTEXT(ctx);
4839
4840 struct gl_texture_object* texObj = _mesa_lookup_texture(ctx, texture);
4841 copy_texture_sub_image_no_error(ctx, 2, texObj, texObj->Target, level,
4842 xoffset, yoffset, 0, x, y, width, height);
4843 }
4844
4845
4846 void GLAPIENTRY
4847 _mesa_CopyTextureSubImage3D_no_error(GLuint texture, GLint level, GLint xoffset,
4848 GLint yoffset, GLint zoffset, GLint x,
4849 GLint y, GLsizei width, GLsizei height)
4850 {
4851 GET_CURRENT_CONTEXT(ctx);
4852
4853 struct gl_texture_object* texObj = _mesa_lookup_texture(ctx, texture);
4854 if (texObj->Target == GL_TEXTURE_CUBE_MAP) {
4855 /* Act like CopyTexSubImage2D */
4856 copy_texture_sub_image_no_error(ctx, 2, texObj,
4857 GL_TEXTURE_CUBE_MAP_POSITIVE_X + zoffset,
4858 level, xoffset, yoffset, 0, x, y, width,
4859 height);
4860 }
4861 else
4862 copy_texture_sub_image_no_error(ctx, 3, texObj, texObj->Target, level,
4863 xoffset, yoffset, zoffset, x, y, width,
4864 height);
4865 }
4866
4867
4868 static bool
4869 check_clear_tex_image(struct gl_context *ctx,
4870 const char *function,
4871 struct gl_texture_image *texImage,
4872 GLenum format, GLenum type,
4873 const void *data,
4874 GLubyte *clearValue)
4875 {
4876 struct gl_texture_object *texObj = texImage->TexObject;
4877 static const GLubyte zeroData[MAX_PIXEL_BYTES];
4878 GLenum internalFormat = texImage->InternalFormat;
4879 GLenum err;
4880
4881 if (texObj->Target == GL_TEXTURE_BUFFER) {
4882 _mesa_error(ctx, GL_INVALID_OPERATION,
4883 "%s(buffer texture)", function);
4884 return false;
4885 }
4886
4887 if (_mesa_is_compressed_format(ctx, internalFormat)) {
4888 _mesa_error(ctx, GL_INVALID_OPERATION,
4889 "%s(compressed texture)", function);
4890 return false;
4891 }
4892
4893 err = _mesa_error_check_format_and_type(ctx, format, type);
4894 if (err != GL_NO_ERROR) {
4895 _mesa_error(ctx, err,
4896 "%s(incompatible format = %s, type = %s)",
4897 function,
4898 _mesa_enum_to_string(format),
4899 _mesa_enum_to_string(type));
4900 return false;
4901 }
4902
4903 /* make sure internal format and format basically agree */
4904 if (!texture_formats_agree(internalFormat, format)) {
4905 _mesa_error(ctx, GL_INVALID_OPERATION,
4906 "%s(incompatible internalFormat = %s, format = %s)",
4907 function,
4908 _mesa_enum_to_string(internalFormat),
4909 _mesa_enum_to_string(format));
4910 return false;
4911 }
4912
4913 if (ctx->Version >= 30 || ctx->Extensions.EXT_texture_integer) {
4914 /* both source and dest must be integer-valued, or neither */
4915 if (_mesa_is_format_integer_color(texImage->TexFormat) !=
4916 _mesa_is_enum_format_integer(format)) {
4917 _mesa_error(ctx, GL_INVALID_OPERATION,
4918 "%s(integer/non-integer format mismatch)",
4919 function);
4920 return false;
4921 }
4922 }
4923
4924 if (!_mesa_texstore(ctx,
4925 1, /* dims */
4926 texImage->_BaseFormat,
4927 texImage->TexFormat,
4928 0, /* dstRowStride */
4929 &clearValue,
4930 1, 1, 1, /* srcWidth/Height/Depth */
4931 format, type,
4932 data ? data : zeroData,
4933 &ctx->DefaultPacking)) {
4934 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(invalid format)", function);
4935 return false;
4936 }
4937
4938 return true;
4939 }
4940
4941
4942 static struct gl_texture_object *
4943 get_tex_obj_for_clear(struct gl_context *ctx,
4944 const char *function,
4945 GLuint texture)
4946 {
4947 struct gl_texture_object *texObj;
4948
4949 texObj = _mesa_lookup_texture_err(ctx, texture, function);
4950 if (!texObj)
4951 return NULL;
4952
4953 if (texObj->Target == 0) {
4954 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(unbound tex)", function);
4955 return NULL;
4956 }
4957
4958 return texObj;
4959 }
4960
4961
4962 /**
4963 * For clearing cube textures, the zoffset and depth parameters indicate
4964 * which cube map faces are to be cleared. This is the one case where we
4965 * need to be concerned with multiple gl_texture_images. This function
4966 * returns the array of texture images to clear for cube maps, or one
4967 * texture image otherwise.
4968 * \return number of texture images, 0 for error, 6 for cube, 1 otherwise.
4969 */
4970 static int
4971 get_tex_images_for_clear(struct gl_context *ctx,
4972 const char *function,
4973 struct gl_texture_object *texObj,
4974 GLint level,
4975 struct gl_texture_image **texImages)
4976 {
4977 GLenum target;
4978 int numFaces, i;
4979
4980 if (level < 0 || level >= MAX_TEXTURE_LEVELS) {
4981 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(invalid level)", function);
4982 return 0;
4983 }
4984
4985 if (texObj->Target == GL_TEXTURE_CUBE_MAP) {
4986 target = GL_TEXTURE_CUBE_MAP_POSITIVE_X;
4987 numFaces = MAX_FACES;
4988 }
4989 else {
4990 target = texObj->Target;
4991 numFaces = 1;
4992 }
4993
4994 for (i = 0; i < numFaces; i++) {
4995 texImages[i] = _mesa_select_tex_image(texObj, target + i, level);
4996 if (texImages[i] == NULL) {
4997 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(invalid level)", function);
4998 return 0;
4999 }
5000 }
5001
5002 return numFaces;
5003 }
5004
5005
5006 void GLAPIENTRY
5007 _mesa_ClearTexSubImage(GLuint texture, GLint level,
5008 GLint xoffset, GLint yoffset, GLint zoffset,
5009 GLsizei width, GLsizei height, GLsizei depth,
5010 GLenum format, GLenum type, const void *data)
5011 {
5012 GET_CURRENT_CONTEXT(ctx);
5013 struct gl_texture_object *texObj;
5014 struct gl_texture_image *texImages[MAX_FACES];
5015 GLubyte clearValue[MAX_FACES][MAX_PIXEL_BYTES];
5016 int i, numImages;
5017 int minDepth, maxDepth;
5018
5019 texObj = get_tex_obj_for_clear(ctx, "glClearTexSubImage", texture);
5020
5021 if (texObj == NULL)
5022 return;
5023
5024 _mesa_lock_texture(ctx, texObj);
5025
5026 numImages = get_tex_images_for_clear(ctx, "glClearTexSubImage",
5027 texObj, level, texImages);
5028 if (numImages == 0)
5029 goto out;
5030
5031 if (numImages == 1) {
5032 minDepth = -(int) texImages[0]->Border;
5033 maxDepth = texImages[0]->Depth;
5034 } else {
5035 assert(numImages == MAX_FACES);
5036 minDepth = 0;
5037 maxDepth = numImages;
5038 }
5039
5040 if (xoffset < -(GLint) texImages[0]->Border ||
5041 yoffset < -(GLint) texImages[0]->Border ||
5042 zoffset < minDepth ||
5043 width < 0 ||
5044 height < 0 ||
5045 depth < 0 ||
5046 xoffset + width > texImages[0]->Width ||
5047 yoffset + height > texImages[0]->Height ||
5048 zoffset + depth > maxDepth) {
5049 _mesa_error(ctx, GL_INVALID_OPERATION,
5050 "glClearSubTexImage(invalid dimensions)");
5051 goto out;
5052 }
5053
5054 if (numImages == 1) {
5055 if (check_clear_tex_image(ctx, "glClearTexSubImage", texImages[0],
5056 format, type, data, clearValue[0])) {
5057 ctx->Driver.ClearTexSubImage(ctx,
5058 texImages[0],
5059 xoffset, yoffset, zoffset,
5060 width, height, depth,
5061 data ? clearValue[0] : NULL);
5062 }
5063 } else {
5064 /* loop over cube face images */
5065 for (i = zoffset; i < zoffset + depth; i++) {
5066 assert(i < MAX_FACES);
5067 if (!check_clear_tex_image(ctx, "glClearTexSubImage", texImages[i],
5068 format, type, data, clearValue[i]))
5069 goto out;
5070 }
5071 for (i = zoffset; i < zoffset + depth; i++) {
5072 ctx->Driver.ClearTexSubImage(ctx,
5073 texImages[i],
5074 xoffset, yoffset, 0,
5075 width, height, 1,
5076 data ? clearValue[i] : NULL);
5077 }
5078 }
5079
5080 out:
5081 _mesa_unlock_texture(ctx, texObj);
5082 }
5083
5084
5085 void GLAPIENTRY
5086 _mesa_ClearTexImage( GLuint texture, GLint level,
5087 GLenum format, GLenum type, const void *data )
5088 {
5089 GET_CURRENT_CONTEXT(ctx);
5090 struct gl_texture_object *texObj;
5091 struct gl_texture_image *texImages[MAX_FACES];
5092 GLubyte clearValue[MAX_FACES][MAX_PIXEL_BYTES];
5093 int i, numImages;
5094
5095 texObj = get_tex_obj_for_clear(ctx, "glClearTexImage", texture);
5096
5097 if (texObj == NULL)
5098 return;
5099
5100 _mesa_lock_texture(ctx, texObj);
5101
5102 numImages = get_tex_images_for_clear(ctx, "glClearTexImage",
5103 texObj, level, texImages);
5104
5105 for (i = 0; i < numImages; i++) {
5106 if (!check_clear_tex_image(ctx, "glClearTexImage", texImages[i], format,
5107 type, data, clearValue[i]))
5108 goto out;
5109 }
5110
5111 for (i = 0; i < numImages; i++) {
5112 ctx->Driver.ClearTexSubImage(ctx, texImages[i],
5113 -(GLint) texImages[i]->Border, /* xoffset */
5114 -(GLint) texImages[i]->Border, /* yoffset */
5115 -(GLint) texImages[i]->Border, /* zoffset */
5116 texImages[i]->Width,
5117 texImages[i]->Height,
5118 texImages[i]->Depth,
5119 data ? clearValue[i] : NULL);
5120 }
5121
5122 out:
5123 _mesa_unlock_texture(ctx, texObj);
5124 }
5125
5126
5127
5128
5129 /**********************************************************************/
5130 /****** Compressed Textures ******/
5131 /**********************************************************************/
5132
5133
5134 /**
5135 * Target checking for glCompressedTexSubImage[123]D().
5136 * \return GL_TRUE if error, GL_FALSE if no error
5137 * Must come before other error checking so that the texture object can
5138 * be correctly retrieved using _mesa_get_current_tex_object.
5139 */
5140 static GLboolean
5141 compressed_subtexture_target_check(struct gl_context *ctx, GLenum target,
5142 GLint dims, GLenum intFormat, bool dsa,
5143 const char *caller)
5144 {
5145 GLboolean targetOK;
5146 mesa_format format;
5147 enum mesa_format_layout layout;
5148
5149 if (dsa && target == GL_TEXTURE_RECTANGLE) {
5150 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(invalid target %s)", caller,
5151 _mesa_enum_to_string(target));
5152 return GL_TRUE;
5153 }
5154
5155 switch (dims) {
5156 case 2:
5157 switch (target) {
5158 case GL_TEXTURE_2D:
5159 targetOK = GL_TRUE;
5160 break;
5161 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
5162 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
5163 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
5164 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
5165 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
5166 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
5167 targetOK = ctx->Extensions.ARB_texture_cube_map;
5168 break;
5169 default:
5170 targetOK = GL_FALSE;
5171 break;
5172 }
5173 break;
5174 case 3:
5175 switch (target) {
5176 case GL_TEXTURE_CUBE_MAP:
5177 targetOK = dsa && ctx->Extensions.ARB_texture_cube_map;
5178 break;
5179 case GL_TEXTURE_2D_ARRAY:
5180 targetOK = _mesa_is_gles3(ctx) ||
5181 (_mesa_is_desktop_gl(ctx) && ctx->Extensions.EXT_texture_array);
5182 break;
5183 case GL_TEXTURE_CUBE_MAP_ARRAY:
5184 targetOK = _mesa_has_texture_cube_map_array(ctx);
5185 break;
5186 case GL_TEXTURE_3D:
5187 targetOK = GL_TRUE;
5188 /*
5189 * OpenGL 4.5 spec (30.10.2014) says in Section 8.7 Compressed Texture
5190 * Images:
5191 * "An INVALID_OPERATION error is generated by
5192 * CompressedTex*SubImage3D if the internal format of the texture
5193 * is one of the EAC, ETC2, or RGTC formats and either border is
5194 * non-zero, or the effective target for the texture is not
5195 * TEXTURE_2D_ARRAY."
5196 *
5197 * NOTE: that's probably a spec error. It should probably say
5198 * "... or the effective target for the texture is not
5199 * TEXTURE_2D_ARRAY, TEXTURE_CUBE_MAP, nor
5200 * GL_TEXTURE_CUBE_MAP_ARRAY."
5201 * since those targets are 2D images and they support all compression
5202 * formats.
5203 *
5204 * Instead of listing all these, just list those which are allowed,
5205 * which is (at this time) only bptc. Otherwise we'd say s3tc (and
5206 * more) are valid here, which they are not, but of course not
5207 * mentioned by core spec.
5208 *
5209 * Also, from GL_KHR_texture_compression_astc_{hdr,ldr}:
5210 *
5211 * "Add a second new column "3D Tex." which is empty for all non-ASTC
5212 * formats. If only the LDR profile is supported by the implementation,
5213 * this column is also empty for all ASTC formats. If both the LDR and HDR
5214 * profiles are supported, this column is checked for all ASTC formats."
5215 *
5216 * "An INVALID_OPERATION error is generated by CompressedTexSubImage3D if
5217 * <format> is one of the formats in table 8.19 and <target> is not
5218 * TEXTURE_2D_ARRAY, TEXTURE_CUBE_MAP_ARRAY, or TEXTURE_3D.
5219 *
5220 * An INVALID_OPERATION error is generated by CompressedTexSubImage3D if
5221 * <format> is TEXTURE_CUBE_MAP_ARRAY and the "Cube Map Array" column of
5222 * table 8.19 is *not* checked, or if <format> is TEXTURE_3D and the "3D
5223 * Tex." column of table 8.19 is *not* checked"
5224 *
5225 * And from GL_KHR_texture_compression_astc_sliced_3d:
5226 *
5227 * "Modify the "3D Tex." column to be checked for all ASTC formats."
5228 */
5229 format = _mesa_glenum_to_compressed_format(intFormat);
5230 layout = _mesa_get_format_layout(format);
5231 switch (layout) {
5232 case MESA_FORMAT_LAYOUT_BPTC:
5233 /* valid format */
5234 break;
5235 case MESA_FORMAT_LAYOUT_ASTC:
5236 targetOK =
5237 ctx->Extensions.KHR_texture_compression_astc_hdr ||
5238 ctx->Extensions.KHR_texture_compression_astc_sliced_3d;
5239 break;
5240 default:
5241 /* invalid format */
5242 _mesa_error(ctx, GL_INVALID_OPERATION,
5243 "%s(invalid target %s for format %s)", caller,
5244 _mesa_enum_to_string(target),
5245 _mesa_enum_to_string(intFormat));
5246 return GL_TRUE;
5247 }
5248 break;
5249 default:
5250 targetOK = GL_FALSE;
5251 }
5252
5253 break;
5254 default:
5255 assert(dims == 1);
5256 /* no 1D compressed textures at this time */
5257 targetOK = GL_FALSE;
5258 break;
5259 }
5260
5261 if (!targetOK) {
5262 _mesa_error(ctx, GL_INVALID_ENUM, "%s(invalid target %s)", caller,
5263 _mesa_enum_to_string(target));
5264 return GL_TRUE;
5265 }
5266
5267 return GL_FALSE;
5268 }
5269
5270 /**
5271 * Error checking for glCompressedTexSubImage[123]D().
5272 * \return GL_TRUE if error, GL_FALSE if no error
5273 */
5274 static GLboolean
5275 compressed_subtexture_error_check(struct gl_context *ctx, GLint dims,
5276 const struct gl_texture_object *texObj,
5277 GLenum target, GLint level,
5278 GLint xoffset, GLint yoffset, GLint zoffset,
5279 GLsizei width, GLsizei height, GLsizei depth,
5280 GLenum format, GLsizei imageSize,
5281 const GLvoid *data, const char *callerName)
5282 {
5283 struct gl_texture_image *texImage;
5284 GLint expectedSize;
5285
5286 /* this will catch any invalid compressed format token */
5287 if (!_mesa_is_compressed_format(ctx, format)) {
5288 _mesa_error(ctx, GL_INVALID_ENUM, "%s(format)", callerName);
5289 return GL_TRUE;
5290 }
5291
5292 if (level < 0 || level >= _mesa_max_texture_levels(ctx, target)) {
5293 _mesa_error(ctx, GL_INVALID_VALUE, "%s(level=%d)", callerName, level);
5294 return GL_TRUE;
5295 }
5296
5297 /* validate the bound PBO, if any */
5298 if (!_mesa_validate_pbo_source_compressed(ctx, dims, &ctx->Unpack,
5299 imageSize, data, callerName)) {
5300 return GL_TRUE;
5301 }
5302
5303 /* Check for invalid pixel storage modes */
5304 if (!_mesa_compressed_pixel_storage_error_check(ctx, dims,
5305 &ctx->Unpack, callerName)) {
5306 return GL_TRUE;
5307 }
5308
5309 expectedSize = compressed_tex_size(width, height, depth, format);
5310 if (expectedSize != imageSize) {
5311 _mesa_error(ctx, GL_INVALID_VALUE, "%s(size=%d)", callerName, imageSize);
5312 return GL_TRUE;
5313 }
5314
5315 texImage = _mesa_select_tex_image(texObj, target, level);
5316 if (!texImage) {
5317 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(invalid texture level %d)",
5318 callerName, level);
5319 return GL_TRUE;
5320 }
5321
5322 if ((GLint) format != texImage->InternalFormat) {
5323 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(format=%s)",
5324 callerName, _mesa_enum_to_string(format));
5325 return GL_TRUE;
5326 }
5327
5328 if (compressedteximage_only_format(format)) {
5329 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(format=%s cannot be updated)",
5330 callerName, _mesa_enum_to_string(format));
5331 return GL_TRUE;
5332 }
5333
5334 if (error_check_subtexture_negative_dimensions(ctx, dims, width, height,
5335 depth, callerName)) {
5336 return GL_TRUE;
5337 }
5338
5339 if (error_check_subtexture_dimensions(ctx, dims, texImage, xoffset, yoffset,
5340 zoffset, width, height, depth,
5341 callerName)) {
5342 return GL_TRUE;
5343 }
5344
5345 return GL_FALSE;
5346 }
5347
5348
5349 void GLAPIENTRY
5350 _mesa_CompressedTexImage1D(GLenum target, GLint level,
5351 GLenum internalFormat, GLsizei width,
5352 GLint border, GLsizei imageSize,
5353 const GLvoid *data)
5354 {
5355 GET_CURRENT_CONTEXT(ctx);
5356 teximage_err(ctx, GL_TRUE, 1, target, level, internalFormat,
5357 width, 1, 1, border, GL_NONE, GL_NONE, imageSize, data);
5358 }
5359
5360
5361 void GLAPIENTRY
5362 _mesa_CompressedTextureImage1DEXT(GLuint texture, GLenum target, GLint level,
5363 GLenum internalFormat, GLsizei width,
5364 GLint border, GLsizei imageSize,
5365 const GLvoid *pixels)
5366 {
5367 struct gl_texture_object* texObj;
5368 GET_CURRENT_CONTEXT(ctx);
5369
5370 texObj = _mesa_lookup_or_create_texture(ctx, target, texture, false, true,
5371 "glCompressedTextureImage1DEXT");
5372 if (!texObj)
5373 return;
5374 teximage(ctx, GL_TRUE, 1, texObj, target, level, internalFormat,
5375 width, 1, 1, border, GL_NONE, GL_NONE, imageSize, pixels, false);
5376 }
5377
5378
5379 void GLAPIENTRY
5380 _mesa_CompressedMultiTexImage1DEXT(GLenum texunit, GLenum target, GLint level,
5381 GLenum internalFormat, GLsizei width,
5382 GLint border, GLsizei imageSize,
5383 const GLvoid *pixels)
5384 {
5385 struct gl_texture_object* texObj;
5386 GET_CURRENT_CONTEXT(ctx);
5387
5388 texObj = _mesa_get_texobj_by_target_and_texunit(ctx, target,
5389 texunit - GL_TEXTURE0,
5390 true,
5391 "glCompressedMultiTexImage1DEXT");
5392 if (!texObj)
5393 return;
5394 teximage(ctx, GL_TRUE, 1, texObj, target, level, internalFormat,
5395 width, 1, 1, border, GL_NONE, GL_NONE, imageSize, pixels, false);
5396 }
5397
5398
5399 void GLAPIENTRY
5400 _mesa_CompressedTexImage2D(GLenum target, GLint level,
5401 GLenum internalFormat, GLsizei width,
5402 GLsizei height, GLint border, GLsizei imageSize,
5403 const GLvoid *data)
5404 {
5405 GET_CURRENT_CONTEXT(ctx);
5406 teximage_err(ctx, GL_TRUE, 2, target, level, internalFormat,
5407 width, height, 1, border, GL_NONE, GL_NONE, imageSize, data);
5408 }
5409
5410
5411 void GLAPIENTRY
5412 _mesa_CompressedTextureImage2DEXT(GLuint texture, GLenum target, GLint level,
5413 GLenum internalFormat, GLsizei width,
5414 GLsizei height, GLint border, GLsizei imageSize,
5415 const GLvoid *pixels)
5416 {
5417 struct gl_texture_object* texObj;
5418 GET_CURRENT_CONTEXT(ctx);
5419
5420 texObj = _mesa_lookup_or_create_texture(ctx, target, texture, false, true,
5421 "glCompressedTextureImage2DEXT");
5422 if (!texObj)
5423 return;
5424 teximage(ctx, GL_TRUE, 2, texObj, target, level, internalFormat,
5425 width, height, 1, border, GL_NONE, GL_NONE, imageSize, pixels, false);
5426 }
5427
5428
5429 void GLAPIENTRY
5430 _mesa_CompressedMultiTexImage2DEXT(GLenum texunit, GLenum target, GLint level,
5431 GLenum internalFormat, GLsizei width,
5432 GLsizei height, GLint border, GLsizei imageSize,
5433 const GLvoid *pixels)
5434 {
5435 struct gl_texture_object* texObj;
5436 GET_CURRENT_CONTEXT(ctx);
5437
5438 texObj = _mesa_get_texobj_by_target_and_texunit(ctx, target,
5439 texunit - GL_TEXTURE0,
5440 true,
5441 "glCompressedMultiTexImage2DEXT");
5442 if (!texObj)
5443 return;
5444 teximage(ctx, GL_TRUE, 2, texObj, target, level, internalFormat,
5445 width, height, 1, border, GL_NONE, GL_NONE, imageSize, pixels, false);
5446 }
5447
5448
5449 void GLAPIENTRY
5450 _mesa_CompressedTexImage3D(GLenum target, GLint level,
5451 GLenum internalFormat, GLsizei width,
5452 GLsizei height, GLsizei depth, GLint border,
5453 GLsizei imageSize, const GLvoid *data)
5454 {
5455 GET_CURRENT_CONTEXT(ctx);
5456 teximage_err(ctx, GL_TRUE, 3, target, level, internalFormat, width, height,
5457 depth, border, GL_NONE, GL_NONE, imageSize, data);
5458 }
5459
5460
5461 void GLAPIENTRY
5462 _mesa_CompressedTextureImage3DEXT(GLuint texture, GLenum target, GLint level,
5463 GLenum internalFormat, GLsizei width,
5464 GLsizei height, GLsizei depth, GLint border,
5465 GLsizei imageSize, const GLvoid *pixels)
5466 {
5467 struct gl_texture_object* texObj;
5468 GET_CURRENT_CONTEXT(ctx);
5469
5470 texObj = _mesa_lookup_or_create_texture(ctx, target, texture, false, true,
5471 "glCompressedTextureImage3DEXT");
5472 if (!texObj)
5473 return;
5474 teximage(ctx, GL_TRUE, 3, texObj, target, level, internalFormat,
5475 width, height, depth, border, GL_NONE, GL_NONE, imageSize, pixels, false);
5476 }
5477
5478
5479 void GLAPIENTRY
5480 _mesa_CompressedMultiTexImage3DEXT(GLenum texunit, GLenum target, GLint level,
5481 GLenum internalFormat, GLsizei width,
5482 GLsizei height, GLsizei depth, GLint border,
5483 GLsizei imageSize, const GLvoid *pixels)
5484 {
5485 struct gl_texture_object* texObj;
5486 GET_CURRENT_CONTEXT(ctx);
5487
5488 texObj = _mesa_get_texobj_by_target_and_texunit(ctx, target,
5489 texunit - GL_TEXTURE0,
5490 true,
5491 "glCompressedMultiTexImage3DEXT");
5492 if (!texObj)
5493 return;
5494 teximage(ctx, GL_TRUE, 3, texObj, target, level, internalFormat,
5495 width, height, depth, border, GL_NONE, GL_NONE, imageSize, pixels, false);
5496 }
5497
5498
5499 void GLAPIENTRY
5500 _mesa_CompressedTexImage1D_no_error(GLenum target, GLint level,
5501 GLenum internalFormat, GLsizei width,
5502 GLint border, GLsizei imageSize,
5503 const GLvoid *data)
5504 {
5505 GET_CURRENT_CONTEXT(ctx);
5506 teximage_no_error(ctx, GL_TRUE, 1, target, level, internalFormat, width, 1,
5507 1, border, GL_NONE, GL_NONE, imageSize, data);
5508 }
5509
5510
5511 void GLAPIENTRY
5512 _mesa_CompressedTexImage2D_no_error(GLenum target, GLint level,
5513 GLenum internalFormat, GLsizei width,
5514 GLsizei height, GLint border,
5515 GLsizei imageSize, const GLvoid *data)
5516 {
5517 GET_CURRENT_CONTEXT(ctx);
5518 teximage_no_error(ctx, GL_TRUE, 2, target, level, internalFormat, width,
5519 height, 1, border, GL_NONE, GL_NONE, imageSize, data);
5520 }
5521
5522
5523 void GLAPIENTRY
5524 _mesa_CompressedTexImage3D_no_error(GLenum target, GLint level,
5525 GLenum internalFormat, GLsizei width,
5526 GLsizei height, GLsizei depth, GLint border,
5527 GLsizei imageSize, const GLvoid *data)
5528 {
5529 GET_CURRENT_CONTEXT(ctx);
5530 teximage_no_error(ctx, GL_TRUE, 3, target, level, internalFormat, width,
5531 height, depth, border, GL_NONE, GL_NONE, imageSize, data);
5532 }
5533
5534
5535 /**
5536 * Common helper for glCompressedTexSubImage1/2/3D() and
5537 * glCompressedTextureSubImage1/2/3D().
5538 */
5539 static void
5540 compressed_texture_sub_image(struct gl_context *ctx, GLuint dims,
5541 struct gl_texture_object *texObj,
5542 struct gl_texture_image *texImage,
5543 GLenum target, GLint level, GLint xoffset,
5544 GLint yoffset, GLint zoffset, GLsizei width,
5545 GLsizei height, GLsizei depth, GLenum format,
5546 GLsizei imageSize, const GLvoid *data)
5547 {
5548 FLUSH_VERTICES(ctx, 0);
5549
5550 _mesa_lock_texture(ctx, texObj);
5551 {
5552 if (width > 0 && height > 0 && depth > 0) {
5553 ctx->Driver.CompressedTexSubImage(ctx, dims, texImage,
5554 xoffset, yoffset, zoffset,
5555 width, height, depth,
5556 format, imageSize, data);
5557
5558 check_gen_mipmap(ctx, target, texObj, level);
5559
5560 /* NOTE: Don't signal _NEW_TEXTURE_OBJECT since we've only changed
5561 * the texel data, not the texture format, size, etc.
5562 */
5563 }
5564 }
5565 _mesa_unlock_texture(ctx, texObj);
5566 }
5567
5568
5569 enum tex_mode {
5570 /* Use bound texture to current unit */
5571 TEX_MODE_CURRENT_NO_ERROR = 0,
5572 TEX_MODE_CURRENT_ERROR,
5573 /* Use the specified texture name */
5574 TEX_MODE_DSA_NO_ERROR,
5575 TEX_MODE_DSA_ERROR,
5576 /* Use the specified texture name + target */
5577 TEX_MODE_EXT_DSA_TEXTURE,
5578 /* Use the specified texture unit + target */
5579 TEX_MODE_EXT_DSA_TEXUNIT,
5580 };
5581
5582
5583 static void
5584 compressed_tex_sub_image(unsigned dim, GLenum target, GLuint textureOrIndex,
5585 GLint level, GLint xoffset, GLint yoffset,
5586 GLint zoffset, GLsizei width, GLsizei height,
5587 GLsizei depth, GLenum format, GLsizei imageSize,
5588 const GLvoid *data, enum tex_mode mode,
5589 const char *caller)
5590 {
5591 struct gl_texture_object *texObj = NULL;
5592 struct gl_texture_image *texImage;
5593 bool no_error = false;
5594 GET_CURRENT_CONTEXT(ctx);
5595
5596 switch (mode) {
5597 case TEX_MODE_DSA_ERROR:
5598 assert(target == 0);
5599 texObj = _mesa_lookup_texture_err(ctx, textureOrIndex, caller);
5600 if (texObj)
5601 target = texObj->Target;
5602 break;
5603 case TEX_MODE_DSA_NO_ERROR:
5604 assert(target == 0);
5605 texObj = _mesa_lookup_texture(ctx, textureOrIndex);
5606 if (texObj)
5607 target = texObj->Target;
5608 no_error = true;
5609 break;
5610 case TEX_MODE_EXT_DSA_TEXTURE:
5611 texObj = _mesa_lookup_or_create_texture(ctx, target, textureOrIndex,
5612 false, true, caller);
5613 break;
5614 case TEX_MODE_EXT_DSA_TEXUNIT:
5615 texObj = _mesa_get_texobj_by_target_and_texunit(ctx, target,
5616 textureOrIndex,
5617 false,
5618 caller);
5619 break;
5620 case TEX_MODE_CURRENT_NO_ERROR:
5621 no_error = true;
5622 case TEX_MODE_CURRENT_ERROR:
5623 default:
5624 assert(textureOrIndex == 0);
5625 break;
5626 }
5627
5628 if (!no_error &&
5629 compressed_subtexture_target_check(ctx, target, dim, format,
5630 mode == TEX_MODE_DSA_ERROR,
5631 caller)) {
5632 return;
5633 }
5634
5635 if (mode == TEX_MODE_CURRENT_NO_ERROR ||
5636 mode == TEX_MODE_CURRENT_ERROR) {
5637 texObj = _mesa_get_current_tex_object(ctx, target);
5638 }
5639
5640 if (!texObj)
5641 return;
5642
5643 if (!no_error &&
5644 compressed_subtexture_error_check(ctx, dim, texObj, target, level,
5645 xoffset, yoffset, zoffset, width,
5646 height, depth, format,
5647 imageSize, data, caller)) {
5648 return;
5649 }
5650
5651 /* Must handle special case GL_TEXTURE_CUBE_MAP. */
5652 if (dim == 3 &&
5653 (mode == TEX_MODE_DSA_ERROR || mode == TEX_MODE_DSA_NO_ERROR) &&
5654 texObj->Target == GL_TEXTURE_CUBE_MAP) {
5655 const char *pixels = data;
5656 GLint image_stride;
5657
5658 /* Make sure the texture object is a proper cube.
5659 * (See texturesubimage in teximage.c for details on why this check is
5660 * performed.)
5661 */
5662 if (!no_error && !_mesa_cube_level_complete(texObj, level)) {
5663 _mesa_error(ctx, GL_INVALID_OPERATION,
5664 "glCompressedTextureSubImage3D(cube map incomplete)");
5665 return;
5666 }
5667
5668 /* Copy in each face. */
5669 for (int i = zoffset; i < zoffset + depth; ++i) {
5670 texImage = texObj->Image[i][level];
5671 assert(texImage);
5672
5673 compressed_texture_sub_image(ctx, 3, texObj, texImage,
5674 texObj->Target, level, xoffset, yoffset,
5675 0, width, height, 1, format,
5676 imageSize, pixels);
5677
5678 /* Compressed images don't have a client format */
5679 image_stride = _mesa_format_image_size(texImage->TexFormat,
5680 texImage->Width,
5681 texImage->Height, 1);
5682
5683 pixels += image_stride;
5684 imageSize -= image_stride;
5685 }
5686 } else {
5687 texImage = _mesa_select_tex_image(texObj, target, level);
5688 assert(texImage);
5689
5690 compressed_texture_sub_image(ctx, dim, texObj, texImage, target, level,
5691 xoffset, yoffset, zoffset, width, height,
5692 depth, format, imageSize, data);
5693 }
5694 }
5695
5696
5697 void GLAPIENTRY
5698 _mesa_CompressedTexSubImage1D_no_error(GLenum target, GLint level,
5699 GLint xoffset, GLsizei width,
5700 GLenum format, GLsizei imageSize,
5701 const GLvoid *data)
5702 {
5703 compressed_tex_sub_image(1, target, 0,
5704 level, xoffset, 0, 0, width,
5705 1, 1, format, imageSize, data,
5706 TEX_MODE_CURRENT_NO_ERROR,
5707 "glCompressedTexSubImage1D");
5708 }
5709
5710
5711 void GLAPIENTRY
5712 _mesa_CompressedTexSubImage1D(GLenum target, GLint level, GLint xoffset,
5713 GLsizei width, GLenum format,
5714 GLsizei imageSize, const GLvoid *data)
5715 {
5716 compressed_tex_sub_image(1, target, 0,
5717 level, xoffset, 0, 0, width,
5718 1, 1, format, imageSize, data,
5719 TEX_MODE_CURRENT_ERROR,
5720 "glCompressedTexSubImage1D");
5721 }
5722
5723
5724 void GLAPIENTRY
5725 _mesa_CompressedTextureSubImage1D_no_error(GLuint texture, GLint level,
5726 GLint xoffset, GLsizei width,
5727 GLenum format, GLsizei imageSize,
5728 const GLvoid *data)
5729 {
5730 compressed_tex_sub_image(1, 0, texture,
5731 level, xoffset, 0, 0,
5732 width, 1, 1, format, imageSize, data,
5733 TEX_MODE_DSA_NO_ERROR,
5734 "glCompressedTextureSubImage1D");
5735 }
5736
5737
5738 void GLAPIENTRY
5739 _mesa_CompressedTextureSubImage1D(GLuint texture, GLint level, GLint xoffset,
5740 GLsizei width, GLenum format,
5741 GLsizei imageSize, const GLvoid *data)
5742 {
5743 compressed_tex_sub_image(1, 0, texture,
5744 level, xoffset, 0, 0,
5745 width, 1, 1, format, imageSize, data,
5746 TEX_MODE_DSA_ERROR,
5747 "glCompressedTextureSubImage1D");
5748 }
5749
5750
5751 void GLAPIENTRY
5752 _mesa_CompressedTextureSubImage1DEXT(GLuint texture, GLenum target,
5753 GLint level, GLint xoffset,
5754 GLsizei width, GLenum format,
5755 GLsizei imageSize, const GLvoid *data)
5756 {
5757 compressed_tex_sub_image(1, target, texture, level, xoffset, 0,
5758 0, width, 1, 1, format, imageSize,
5759 data,
5760 TEX_MODE_EXT_DSA_TEXTURE,
5761 "glCompressedTextureSubImage1DEXT");
5762 }
5763
5764
5765 void GLAPIENTRY
5766 _mesa_CompressedMultiTexSubImage1DEXT(GLenum texunit, GLenum target,
5767 GLint level, GLint xoffset,
5768 GLsizei width, GLenum format,
5769 GLsizei imageSize, const GLvoid *data)
5770 {
5771 compressed_tex_sub_image(1, target, texunit - GL_TEXTURE0, level,
5772 xoffset, 0, 0, width, 1, 1, format, imageSize,
5773 data,
5774 TEX_MODE_EXT_DSA_TEXUNIT,
5775 "glCompressedMultiTexSubImage1DEXT");
5776 }
5777
5778
5779 void GLAPIENTRY
5780 _mesa_CompressedTexSubImage2D_no_error(GLenum target, GLint level,
5781 GLint xoffset, GLint yoffset,
5782 GLsizei width, GLsizei height,
5783 GLenum format, GLsizei imageSize,
5784 const GLvoid *data)
5785 {
5786 compressed_tex_sub_image(2, target, 0, level,
5787 xoffset, yoffset, 0,
5788 width, height, 1, format, imageSize, data,
5789 TEX_MODE_CURRENT_NO_ERROR,
5790 "glCompressedTexSubImage2D");
5791 }
5792
5793
5794 void GLAPIENTRY
5795 _mesa_CompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset,
5796 GLint yoffset, GLsizei width, GLsizei height,
5797 GLenum format, GLsizei imageSize,
5798 const GLvoid *data)
5799 {
5800 compressed_tex_sub_image(2, target, 0, level,
5801 xoffset, yoffset, 0,
5802 width, height, 1, format, imageSize, data,
5803 TEX_MODE_CURRENT_ERROR,
5804 "glCompressedTexSubImage2D");
5805 }
5806
5807
5808 void GLAPIENTRY
5809 _mesa_CompressedTextureSubImage2DEXT(GLuint texture, GLenum target,
5810 GLint level, GLint xoffset,
5811 GLint yoffset, GLsizei width,
5812 GLsizei height, GLenum format,
5813 GLsizei imageSize, const GLvoid *data)
5814 {
5815 compressed_tex_sub_image(2, target, texture, level, xoffset,
5816 yoffset, 0, width, height, 1, format,
5817 imageSize, data,
5818 TEX_MODE_EXT_DSA_TEXTURE,
5819 "glCompressedTextureSubImage2DEXT");
5820 }
5821
5822
5823 void GLAPIENTRY
5824 _mesa_CompressedMultiTexSubImage2DEXT(GLenum texunit, GLenum target,
5825 GLint level, GLint xoffset, GLint yoffset,
5826 GLsizei width, GLsizei height, GLenum format,
5827 GLsizei imageSize, const GLvoid *data)
5828 {
5829 compressed_tex_sub_image(2, target, texunit - GL_TEXTURE0, level,
5830 xoffset, yoffset, 0, width, height, 1, format,
5831 imageSize, data,
5832 TEX_MODE_EXT_DSA_TEXUNIT,
5833 "glCompressedMultiTexSubImage2DEXT");
5834 }
5835
5836
5837 void GLAPIENTRY
5838 _mesa_CompressedTextureSubImage2D_no_error(GLuint texture, GLint level,
5839 GLint xoffset, GLint yoffset,
5840 GLsizei width, GLsizei height,
5841 GLenum format, GLsizei imageSize,
5842 const GLvoid *data)
5843 {
5844 compressed_tex_sub_image(2, 0, texture, level, xoffset, yoffset, 0,
5845 width, height, 1, format, imageSize, data,
5846 TEX_MODE_DSA_NO_ERROR,
5847 "glCompressedTextureSubImage2D");
5848 }
5849
5850
5851 void GLAPIENTRY
5852 _mesa_CompressedTextureSubImage2D(GLuint texture, GLint level, GLint xoffset,
5853 GLint yoffset,
5854 GLsizei width, GLsizei height,
5855 GLenum format, GLsizei imageSize,
5856 const GLvoid *data)
5857 {
5858 compressed_tex_sub_image(2, 0, texture, level, xoffset, yoffset, 0,
5859 width, height, 1, format, imageSize, data,
5860 TEX_MODE_DSA_ERROR,
5861 "glCompressedTextureSubImage2D");
5862 }
5863
5864 void GLAPIENTRY
5865 _mesa_CompressedTexSubImage3D_no_error(GLenum target, GLint level,
5866 GLint xoffset, GLint yoffset,
5867 GLint zoffset, GLsizei width,
5868 GLsizei height, GLsizei depth,
5869 GLenum format, GLsizei imageSize,
5870 const GLvoid *data)
5871 {
5872 compressed_tex_sub_image(3, target, 0, level, xoffset, yoffset,
5873 zoffset, width, height, depth, format,
5874 imageSize, data,
5875 TEX_MODE_CURRENT_NO_ERROR,
5876 "glCompressedTexSubImage3D");
5877 }
5878
5879 void GLAPIENTRY
5880 _mesa_CompressedTexSubImage3D(GLenum target, GLint level, GLint xoffset,
5881 GLint yoffset, GLint zoffset, GLsizei width,
5882 GLsizei height, GLsizei depth, GLenum format,
5883 GLsizei imageSize, const GLvoid *data)
5884 {
5885 compressed_tex_sub_image(3, target, 0, level, xoffset, yoffset,
5886 zoffset, width, height, depth, format,
5887 imageSize, data,
5888 TEX_MODE_CURRENT_ERROR,
5889 "glCompressedTexSubImage3D");
5890 }
5891
5892 void GLAPIENTRY
5893 _mesa_CompressedTextureSubImage3D_no_error(GLuint texture, GLint level,
5894 GLint xoffset, GLint yoffset,
5895 GLint zoffset, GLsizei width,
5896 GLsizei height, GLsizei depth,
5897 GLenum format, GLsizei imageSize,
5898 const GLvoid *data)
5899 {
5900 compressed_tex_sub_image(3, 0, texture, level, xoffset, yoffset,
5901 zoffset, width, height, depth, format,
5902 imageSize, data,
5903 TEX_MODE_DSA_NO_ERROR,
5904 "glCompressedTextureSubImage3D");
5905 }
5906
5907 void GLAPIENTRY
5908 _mesa_CompressedTextureSubImage3D(GLuint texture, GLint level, GLint xoffset,
5909 GLint yoffset, GLint zoffset, GLsizei width,
5910 GLsizei height, GLsizei depth,
5911 GLenum format, GLsizei imageSize,
5912 const GLvoid *data)
5913 {
5914 compressed_tex_sub_image(3, 0, texture, level, xoffset, yoffset,
5915 zoffset, width, height, depth, format,
5916 imageSize, data,
5917 TEX_MODE_DSA_ERROR,
5918 "glCompressedTextureSubImage3D");
5919 }
5920
5921
5922 void GLAPIENTRY
5923 _mesa_CompressedTextureSubImage3DEXT(GLuint texture, GLenum target,
5924 GLint level, GLint xoffset,
5925 GLint yoffset, GLint zoffset,
5926 GLsizei width, GLsizei height,
5927 GLsizei depth, GLenum format,
5928 GLsizei imageSize, const GLvoid *data)
5929 {
5930 compressed_tex_sub_image(3, target, texture, level, xoffset, yoffset,
5931 zoffset, width, height, depth, format,
5932 imageSize, data,
5933 TEX_MODE_EXT_DSA_TEXTURE,
5934 "glCompressedTextureSubImage3DEXT");
5935 }
5936
5937
5938 void GLAPIENTRY
5939 _mesa_CompressedMultiTexSubImage3DEXT(GLenum texunit, GLenum target,
5940 GLint level, GLint xoffset, GLint yoffset,
5941 GLint zoffset, GLsizei width, GLsizei height,
5942 GLsizei depth, GLenum format,
5943 GLsizei imageSize, const GLvoid *data)
5944 {
5945 compressed_tex_sub_image(3, target, texunit - GL_TEXTURE0, level,
5946 xoffset, yoffset, zoffset, width, height, depth,
5947 format, imageSize, data,
5948 TEX_MODE_EXT_DSA_TEXUNIT,
5949 "glCompressedMultiTexSubImage3DEXT");
5950 }
5951
5952
5953 mesa_format
5954 _mesa_get_texbuffer_format(const struct gl_context *ctx, GLenum internalFormat)
5955 {
5956 if (ctx->API == API_OPENGL_COMPAT) {
5957 switch (internalFormat) {
5958 case GL_ALPHA8:
5959 return MESA_FORMAT_A_UNORM8;
5960 case GL_ALPHA16:
5961 return MESA_FORMAT_A_UNORM16;
5962 case GL_ALPHA16F_ARB:
5963 return MESA_FORMAT_A_FLOAT16;
5964 case GL_ALPHA32F_ARB:
5965 return MESA_FORMAT_A_FLOAT32;
5966 case GL_ALPHA8I_EXT:
5967 return MESA_FORMAT_A_SINT8;
5968 case GL_ALPHA16I_EXT:
5969 return MESA_FORMAT_A_SINT16;
5970 case GL_ALPHA32I_EXT:
5971 return MESA_FORMAT_A_SINT32;
5972 case GL_ALPHA8UI_EXT:
5973 return MESA_FORMAT_A_UINT8;
5974 case GL_ALPHA16UI_EXT:
5975 return MESA_FORMAT_A_UINT16;
5976 case GL_ALPHA32UI_EXT:
5977 return MESA_FORMAT_A_UINT32;
5978 case GL_LUMINANCE8:
5979 return MESA_FORMAT_L_UNORM8;
5980 case GL_LUMINANCE16:
5981 return MESA_FORMAT_L_UNORM16;
5982 case GL_LUMINANCE16F_ARB:
5983 return MESA_FORMAT_L_FLOAT16;
5984 case GL_LUMINANCE32F_ARB:
5985 return MESA_FORMAT_L_FLOAT32;
5986 case GL_LUMINANCE8I_EXT:
5987 return MESA_FORMAT_L_SINT8;
5988 case GL_LUMINANCE16I_EXT:
5989 return MESA_FORMAT_L_SINT16;
5990 case GL_LUMINANCE32I_EXT:
5991 return MESA_FORMAT_L_SINT32;
5992 case GL_LUMINANCE8UI_EXT:
5993 return MESA_FORMAT_L_UINT8;
5994 case GL_LUMINANCE16UI_EXT:
5995 return MESA_FORMAT_L_UINT16;
5996 case GL_LUMINANCE32UI_EXT:
5997 return MESA_FORMAT_L_UINT32;
5998 case GL_LUMINANCE8_ALPHA8:
5999 return MESA_FORMAT_L8A8_UNORM;
6000 case GL_LUMINANCE16_ALPHA16:
6001 return MESA_FORMAT_L16A16_UNORM;
6002 case GL_LUMINANCE_ALPHA16F_ARB:
6003 return MESA_FORMAT_LA_FLOAT16;
6004 case GL_LUMINANCE_ALPHA32F_ARB:
6005 return MESA_FORMAT_LA_FLOAT32;
6006 case GL_LUMINANCE_ALPHA8I_EXT:
6007 return MESA_FORMAT_LA_SINT8;
6008 case GL_LUMINANCE_ALPHA16I_EXT:
6009 return MESA_FORMAT_LA_SINT16;
6010 case GL_LUMINANCE_ALPHA32I_EXT:
6011 return MESA_FORMAT_LA_SINT32;
6012 case GL_LUMINANCE_ALPHA8UI_EXT:
6013 return MESA_FORMAT_LA_UINT8;
6014 case GL_LUMINANCE_ALPHA16UI_EXT:
6015 return MESA_FORMAT_LA_UINT16;
6016 case GL_LUMINANCE_ALPHA32UI_EXT:
6017 return MESA_FORMAT_LA_UINT32;
6018 case GL_INTENSITY8:
6019 return MESA_FORMAT_I_UNORM8;
6020 case GL_INTENSITY16:
6021 return MESA_FORMAT_I_UNORM16;
6022 case GL_INTENSITY16F_ARB:
6023 return MESA_FORMAT_I_FLOAT16;
6024 case GL_INTENSITY32F_ARB:
6025 return MESA_FORMAT_I_FLOAT32;
6026 case GL_INTENSITY8I_EXT:
6027 return MESA_FORMAT_I_SINT8;
6028 case GL_INTENSITY16I_EXT:
6029 return MESA_FORMAT_I_SINT16;
6030 case GL_INTENSITY32I_EXT:
6031 return MESA_FORMAT_I_SINT32;
6032 case GL_INTENSITY8UI_EXT:
6033 return MESA_FORMAT_I_UINT8;
6034 case GL_INTENSITY16UI_EXT:
6035 return MESA_FORMAT_I_UINT16;
6036 case GL_INTENSITY32UI_EXT:
6037 return MESA_FORMAT_I_UINT32;
6038 default:
6039 break;
6040 }
6041 }
6042
6043 if (_mesa_has_ARB_texture_buffer_object_rgb32(ctx) ||
6044 _mesa_has_OES_texture_buffer(ctx)) {
6045 switch (internalFormat) {
6046 case GL_RGB32F:
6047 return MESA_FORMAT_RGB_FLOAT32;
6048 case GL_RGB32UI:
6049 return MESA_FORMAT_RGB_UINT32;
6050 case GL_RGB32I:
6051 return MESA_FORMAT_RGB_SINT32;
6052 default:
6053 break;
6054 }
6055 }
6056
6057 switch (internalFormat) {
6058 case GL_RGBA8:
6059 return MESA_FORMAT_R8G8B8A8_UNORM;
6060 case GL_RGBA16:
6061 if (_mesa_is_gles(ctx) && !_mesa_has_EXT_texture_norm16(ctx))
6062 return MESA_FORMAT_NONE;
6063 return MESA_FORMAT_RGBA_UNORM16;
6064 case GL_RGBA16F_ARB:
6065 return MESA_FORMAT_RGBA_FLOAT16;
6066 case GL_RGBA32F_ARB:
6067 return MESA_FORMAT_RGBA_FLOAT32;
6068 case GL_RGBA8I_EXT:
6069 return MESA_FORMAT_RGBA_SINT8;
6070 case GL_RGBA16I_EXT:
6071 return MESA_FORMAT_RGBA_SINT16;
6072 case GL_RGBA32I_EXT:
6073 return MESA_FORMAT_RGBA_SINT32;
6074 case GL_RGBA8UI_EXT:
6075 return MESA_FORMAT_RGBA_UINT8;
6076 case GL_RGBA16UI_EXT:
6077 return MESA_FORMAT_RGBA_UINT16;
6078 case GL_RGBA32UI_EXT:
6079 return MESA_FORMAT_RGBA_UINT32;
6080
6081 case GL_RG8:
6082 return MESA_FORMAT_R8G8_UNORM;
6083 case GL_RG16:
6084 if (_mesa_is_gles(ctx) && !_mesa_has_EXT_texture_norm16(ctx))
6085 return MESA_FORMAT_NONE;
6086 return MESA_FORMAT_R16G16_UNORM;
6087 case GL_RG16F:
6088 return MESA_FORMAT_RG_FLOAT16;
6089 case GL_RG32F:
6090 return MESA_FORMAT_RG_FLOAT32;
6091 case GL_RG8I:
6092 return MESA_FORMAT_RG_SINT8;
6093 case GL_RG16I:
6094 return MESA_FORMAT_RG_SINT16;
6095 case GL_RG32I:
6096 return MESA_FORMAT_RG_SINT32;
6097 case GL_RG8UI:
6098 return MESA_FORMAT_RG_UINT8;
6099 case GL_RG16UI:
6100 return MESA_FORMAT_RG_UINT16;
6101 case GL_RG32UI:
6102 return MESA_FORMAT_RG_UINT32;
6103
6104 case GL_R8:
6105 return MESA_FORMAT_R_UNORM8;
6106 case GL_R16:
6107 if (_mesa_is_gles(ctx) && !_mesa_has_EXT_texture_norm16(ctx))
6108 return MESA_FORMAT_NONE;
6109 return MESA_FORMAT_R_UNORM16;
6110 case GL_R16F:
6111 return MESA_FORMAT_R_FLOAT16;
6112 case GL_R32F:
6113 return MESA_FORMAT_R_FLOAT32;
6114 case GL_R8I:
6115 return MESA_FORMAT_R_SINT8;
6116 case GL_R16I:
6117 return MESA_FORMAT_R_SINT16;
6118 case GL_R32I:
6119 return MESA_FORMAT_R_SINT32;
6120 case GL_R8UI:
6121 return MESA_FORMAT_R_UINT8;
6122 case GL_R16UI:
6123 return MESA_FORMAT_R_UINT16;
6124 case GL_R32UI:
6125 return MESA_FORMAT_R_UINT32;
6126
6127 default:
6128 return MESA_FORMAT_NONE;
6129 }
6130 }
6131
6132
6133 mesa_format
6134 _mesa_validate_texbuffer_format(const struct gl_context *ctx,
6135 GLenum internalFormat)
6136 {
6137 mesa_format format = _mesa_get_texbuffer_format(ctx, internalFormat);
6138 GLenum datatype;
6139
6140 if (format == MESA_FORMAT_NONE)
6141 return MESA_FORMAT_NONE;
6142
6143 datatype = _mesa_get_format_datatype(format);
6144
6145 /* The GL_ARB_texture_buffer_object spec says:
6146 *
6147 * "If ARB_texture_float is not supported, references to the
6148 * floating-point internal formats provided by that extension should be
6149 * removed, and such formats may not be passed to TexBufferARB."
6150 *
6151 * As a result, GL_HALF_FLOAT internal format depends on both
6152 * GL_ARB_texture_float and GL_ARB_half_float_pixel.
6153 */
6154 if ((datatype == GL_FLOAT || datatype == GL_HALF_FLOAT) &&
6155 !ctx->Extensions.ARB_texture_float)
6156 return MESA_FORMAT_NONE;
6157
6158 if (!ctx->Extensions.ARB_texture_rg) {
6159 GLenum base_format = _mesa_get_format_base_format(format);
6160 if (base_format == GL_R || base_format == GL_RG)
6161 return MESA_FORMAT_NONE;
6162 }
6163
6164 if (!ctx->Extensions.ARB_texture_buffer_object_rgb32) {
6165 GLenum base_format = _mesa_get_format_base_format(format);
6166 if (base_format == GL_RGB)
6167 return MESA_FORMAT_NONE;
6168 }
6169 return format;
6170 }
6171
6172
6173 /**
6174 * Do work common to glTexBuffer, glTexBufferRange, glTextureBuffer
6175 * and glTextureBufferRange, including some error checking.
6176 */
6177 static void
6178 texture_buffer_range(struct gl_context *ctx,
6179 struct gl_texture_object *texObj,
6180 GLenum internalFormat,
6181 struct gl_buffer_object *bufObj,
6182 GLintptr offset, GLsizeiptr size,
6183 const char *caller)
6184 {
6185 GLintptr oldOffset = texObj->BufferOffset;
6186 GLsizeiptr oldSize = texObj->BufferSize;
6187 mesa_format format;
6188
6189 /* NOTE: ARB_texture_buffer_object might not be supported in
6190 * the compatibility profile.
6191 */
6192 if (!_mesa_has_ARB_texture_buffer_object(ctx) &&
6193 !_mesa_has_OES_texture_buffer(ctx)) {
6194 _mesa_error(ctx, GL_INVALID_OPERATION,
6195 "%s(ARB_texture_buffer_object is not"
6196 " implemented for the compatibility profile)", caller);
6197 return;
6198 }
6199
6200 if (texObj->HandleAllocated) {
6201 /* The ARB_bindless_texture spec says:
6202 *
6203 * "The error INVALID_OPERATION is generated by TexImage*, CopyTexImage*,
6204 * CompressedTexImage*, TexBuffer*, TexParameter*, as well as other
6205 * functions defined in terms of these, if the texture object to be
6206 * modified is referenced by one or more texture or image handles."
6207 */
6208 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(immutable texture)", caller);
6209 return;
6210 }
6211
6212 format = _mesa_validate_texbuffer_format(ctx, internalFormat);
6213 if (format == MESA_FORMAT_NONE) {
6214 _mesa_error(ctx, GL_INVALID_ENUM, "%s(internalFormat %s)",
6215 caller, _mesa_enum_to_string(internalFormat));
6216 return;
6217 }
6218
6219 FLUSH_VERTICES(ctx, 0);
6220
6221 _mesa_lock_texture(ctx, texObj);
6222 {
6223 _mesa_reference_buffer_object(ctx, &texObj->BufferObject, bufObj);
6224 texObj->BufferObjectFormat = internalFormat;
6225 texObj->_BufferObjectFormat = format;
6226 texObj->BufferOffset = offset;
6227 texObj->BufferSize = size;
6228 }
6229 _mesa_unlock_texture(ctx, texObj);
6230
6231 if (ctx->Driver.TexParameter) {
6232 if (offset != oldOffset) {
6233 ctx->Driver.TexParameter(ctx, texObj, GL_TEXTURE_BUFFER_OFFSET);
6234 }
6235 if (size != oldSize) {
6236 ctx->Driver.TexParameter(ctx, texObj, GL_TEXTURE_BUFFER_SIZE);
6237 }
6238 }
6239
6240 ctx->NewDriverState |= ctx->DriverFlags.NewTextureBuffer;
6241
6242 if (bufObj) {
6243 bufObj->UsageHistory |= USAGE_TEXTURE_BUFFER;
6244 }
6245 }
6246
6247
6248 /**
6249 * Make sure the texture buffer target is GL_TEXTURE_BUFFER.
6250 * Return true if it is, and return false if it is not
6251 * (and throw INVALID ENUM as dictated in the OpenGL 4.5
6252 * core spec, 02.02.2015, PDF page 245).
6253 */
6254 static bool
6255 check_texture_buffer_target(struct gl_context *ctx, GLenum target,
6256 const char *caller)
6257 {
6258 if (target != GL_TEXTURE_BUFFER_ARB) {
6259 _mesa_error(ctx, GL_INVALID_ENUM,
6260 "%s(texture target is not GL_TEXTURE_BUFFER)", caller);
6261 return false;
6262 }
6263 else
6264 return true;
6265 }
6266
6267 /**
6268 * Check for errors related to the texture buffer range.
6269 * Return false if errors are found, true if none are found.
6270 */
6271 static bool
6272 check_texture_buffer_range(struct gl_context *ctx,
6273 struct gl_buffer_object *bufObj,
6274 GLintptr offset, GLsizeiptr size,
6275 const char *caller)
6276 {
6277 /* OpenGL 4.5 core spec (02.02.2015) says in Section 8.9 Buffer
6278 * Textures (PDF page 245):
6279 * "An INVALID_VALUE error is generated if offset is negative, if
6280 * size is less than or equal to zero, or if offset + size is greater
6281 * than the value of BUFFER_SIZE for the buffer bound to target."
6282 */
6283 if (offset < 0) {
6284 _mesa_error(ctx, GL_INVALID_VALUE, "%s(offset=%d < 0)", caller,
6285 (int) offset);
6286 return false;
6287 }
6288
6289 if (size <= 0) {
6290 _mesa_error(ctx, GL_INVALID_VALUE, "%s(size=%d <= 0)", caller,
6291 (int) size);
6292 return false;
6293 }
6294
6295 if (offset + size > bufObj->Size) {
6296 _mesa_error(ctx, GL_INVALID_VALUE,
6297 "%s(offset=%d + size=%d > buffer_size=%d)", caller,
6298 (int) offset, (int) size, (int) bufObj->Size);
6299 return false;
6300 }
6301
6302 /* OpenGL 4.5 core spec (02.02.2015) says in Section 8.9 Buffer
6303 * Textures (PDF page 245):
6304 * "An INVALID_VALUE error is generated if offset is not an integer
6305 * multiple of the value of TEXTURE_BUFFER_OFFSET_ALIGNMENT."
6306 */
6307 if (offset % ctx->Const.TextureBufferOffsetAlignment) {
6308 _mesa_error(ctx, GL_INVALID_VALUE,
6309 "%s(invalid offset alignment)", caller);
6310 return false;
6311 }
6312
6313 return true;
6314 }
6315
6316
6317 /** GL_ARB_texture_buffer_object */
6318 void GLAPIENTRY
6319 _mesa_TexBuffer(GLenum target, GLenum internalFormat, GLuint buffer)
6320 {
6321 struct gl_texture_object *texObj;
6322 struct gl_buffer_object *bufObj;
6323
6324 GET_CURRENT_CONTEXT(ctx);
6325
6326 /* Need to catch a bad target before it gets to
6327 * _mesa_get_current_tex_object.
6328 */
6329 if (!check_texture_buffer_target(ctx, target, "glTexBuffer"))
6330 return;
6331
6332 if (buffer) {
6333 bufObj = _mesa_lookup_bufferobj_err(ctx, buffer, "glTexBuffer");
6334 if (!bufObj)
6335 return;
6336 } else
6337 bufObj = NULL;
6338
6339 texObj = _mesa_get_current_tex_object(ctx, target);
6340 if (!texObj)
6341 return;
6342
6343 texture_buffer_range(ctx, texObj, internalFormat, bufObj, 0,
6344 buffer ? -1 : 0, "glTexBuffer");
6345 }
6346
6347
6348 /** GL_ARB_texture_buffer_range */
6349 void GLAPIENTRY
6350 _mesa_TexBufferRange(GLenum target, GLenum internalFormat, GLuint buffer,
6351 GLintptr offset, GLsizeiptr size)
6352 {
6353 struct gl_texture_object *texObj;
6354 struct gl_buffer_object *bufObj;
6355
6356 GET_CURRENT_CONTEXT(ctx);
6357
6358 /* Need to catch a bad target before it gets to
6359 * _mesa_get_current_tex_object.
6360 */
6361 if (!check_texture_buffer_target(ctx, target, "glTexBufferRange"))
6362 return;
6363
6364 if (buffer) {
6365 bufObj = _mesa_lookup_bufferobj_err(ctx, buffer, "glTexBufferRange");
6366 if (!bufObj)
6367 return;
6368
6369 if (!check_texture_buffer_range(ctx, bufObj, offset, size,
6370 "glTexBufferRange"))
6371 return;
6372
6373 } else {
6374 /* OpenGL 4.5 core spec (02.02.2015) says in Section 8.9 Buffer
6375 * Textures (PDF page 254):
6376 * "If buffer is zero, then any buffer object attached to the buffer
6377 * texture is detached, the values offset and size are ignored and
6378 * the state for offset and size for the buffer texture are reset to
6379 * zero."
6380 */
6381 offset = 0;
6382 size = 0;
6383 bufObj = NULL;
6384 }
6385
6386 texObj = _mesa_get_current_tex_object(ctx, target);
6387 if (!texObj)
6388 return;
6389
6390 texture_buffer_range(ctx, texObj, internalFormat, bufObj,
6391 offset, size, "glTexBufferRange");
6392 }
6393
6394 void GLAPIENTRY
6395 _mesa_TextureBuffer(GLuint texture, GLenum internalFormat, GLuint buffer)
6396 {
6397 struct gl_texture_object *texObj;
6398 struct gl_buffer_object *bufObj;
6399
6400 GET_CURRENT_CONTEXT(ctx);
6401
6402 if (buffer) {
6403 bufObj = _mesa_lookup_bufferobj_err(ctx, buffer, "glTextureBuffer");
6404 if (!bufObj)
6405 return;
6406 } else
6407 bufObj = NULL;
6408
6409 /* Get the texture object by Name. */
6410 texObj = _mesa_lookup_texture_err(ctx, texture, "glTextureBuffer");
6411 if (!texObj)
6412 return;
6413
6414 if (!check_texture_buffer_target(ctx, texObj->Target, "glTextureBuffer"))
6415 return;
6416
6417 texture_buffer_range(ctx, texObj, internalFormat,
6418 bufObj, 0, buffer ? -1 : 0, "glTextureBuffer");
6419 }
6420
6421 void GLAPIENTRY
6422 _mesa_TextureBufferRange(GLuint texture, GLenum internalFormat, GLuint buffer,
6423 GLintptr offset, GLsizeiptr size)
6424 {
6425 struct gl_texture_object *texObj;
6426 struct gl_buffer_object *bufObj;
6427
6428 GET_CURRENT_CONTEXT(ctx);
6429
6430 if (buffer) {
6431 bufObj = _mesa_lookup_bufferobj_err(ctx, buffer,
6432 "glTextureBufferRange");
6433 if (!bufObj)
6434 return;
6435
6436 if (!check_texture_buffer_range(ctx, bufObj, offset, size,
6437 "glTextureBufferRange"))
6438 return;
6439
6440 } else {
6441 /* OpenGL 4.5 core spec (02.02.2015) says in Section 8.9 Buffer
6442 * Textures (PDF page 254):
6443 * "If buffer is zero, then any buffer object attached to the buffer
6444 * texture is detached, the values offset and size are ignored and
6445 * the state for offset and size for the buffer texture are reset to
6446 * zero."
6447 */
6448 offset = 0;
6449 size = 0;
6450 bufObj = NULL;
6451 }
6452
6453 /* Get the texture object by Name. */
6454 texObj = _mesa_lookup_texture_err(ctx, texture, "glTextureBufferRange");
6455 if (!texObj)
6456 return;
6457
6458 if (!check_texture_buffer_target(ctx, texObj->Target,
6459 "glTextureBufferRange"))
6460 return;
6461
6462 texture_buffer_range(ctx, texObj, internalFormat,
6463 bufObj, offset, size, "glTextureBufferRange");
6464 }
6465
6466 GLboolean
6467 _mesa_is_renderable_texture_format(const struct gl_context *ctx,
6468 GLenum internalformat)
6469 {
6470 /* Everything that is allowed for renderbuffers,
6471 * except for a base format of GL_STENCIL_INDEX, unless supported.
6472 */
6473 GLenum baseFormat = _mesa_base_fbo_format(ctx, internalformat);
6474 if (ctx->Extensions.ARB_texture_stencil8)
6475 return baseFormat != 0;
6476 else
6477 return baseFormat != 0 && baseFormat != GL_STENCIL_INDEX;
6478 }
6479
6480
6481 /** GL_ARB_texture_multisample */
6482 static GLboolean
6483 check_multisample_target(GLuint dims, GLenum target, bool dsa)
6484 {
6485 switch(target) {
6486 case GL_TEXTURE_2D_MULTISAMPLE:
6487 return dims == 2;
6488 case GL_PROXY_TEXTURE_2D_MULTISAMPLE:
6489 return dims == 2 && !dsa;
6490 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
6491 return dims == 3;
6492 case GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY:
6493 return dims == 3 && !dsa;
6494 default:
6495 return GL_FALSE;
6496 }
6497 }
6498
6499
6500 static void
6501 texture_image_multisample(struct gl_context *ctx, GLuint dims,
6502 struct gl_texture_object *texObj,
6503 struct gl_memory_object *memObj,
6504 GLenum target, GLsizei samples,
6505 GLint internalformat, GLsizei width,
6506 GLsizei height, GLsizei depth,
6507 GLboolean fixedsamplelocations,
6508 GLboolean immutable, GLuint64 offset,
6509 const char *func)
6510 {
6511 struct gl_texture_image *texImage;
6512 GLboolean sizeOK, dimensionsOK, samplesOK;
6513 mesa_format texFormat;
6514 GLenum sample_count_error;
6515 bool dsa = strstr(func, "ture") ? true : false;
6516
6517 if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE)) {
6518 _mesa_debug(ctx, "%s(target=%s, samples=%d)\n", func,
6519 _mesa_enum_to_string(target), samples);
6520 }
6521
6522 if (!((ctx->Extensions.ARB_texture_multisample
6523 && _mesa_is_desktop_gl(ctx))) && !_mesa_is_gles31(ctx)) {
6524 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(unsupported)", func);
6525 return;
6526 }
6527
6528 if (samples < 1) {
6529 _mesa_error(ctx, GL_INVALID_VALUE, "%s(samples < 1)", func);
6530 return;
6531 }
6532
6533 if (!check_multisample_target(dims, target, dsa)) {
6534 GLenum err = dsa ? GL_INVALID_OPERATION : GL_INVALID_ENUM;
6535 _mesa_error(ctx, err, "%s(target=%s)", func,
6536 _mesa_enum_to_string(target));
6537 return;
6538 }
6539
6540 /* check that the specified internalformat is color/depth/stencil-renderable;
6541 * refer GL3.1 spec 4.4.4
6542 */
6543
6544 if (immutable && !_mesa_is_legal_tex_storage_format(ctx, internalformat)) {
6545 _mesa_error(ctx, GL_INVALID_ENUM,
6546 "%s(internalformat=%s not legal for immutable-format)",
6547 func, _mesa_enum_to_string(internalformat));
6548 return;
6549 }
6550
6551 if (!_mesa_is_renderable_texture_format(ctx, internalformat)) {
6552 /* Page 172 of OpenGL ES 3.1 spec says:
6553 * "An INVALID_ENUM error is generated if sizedinternalformat is not
6554 * color-renderable, depth-renderable, or stencil-renderable (as
6555 * defined in section 9.4).
6556 *
6557 * (Same error is also defined for desktop OpenGL for multisample
6558 * teximage/texstorage functions.)
6559 */
6560 _mesa_error(ctx, GL_INVALID_ENUM, "%s(internalformat=%s)", func,
6561 _mesa_enum_to_string(internalformat));
6562 return;
6563 }
6564
6565 sample_count_error = _mesa_check_sample_count(ctx, target,
6566 internalformat, samples, samples);
6567 samplesOK = sample_count_error == GL_NO_ERROR;
6568
6569 /* Page 254 of OpenGL 4.4 spec says:
6570 * "Proxy arrays for two-dimensional multisample and two-dimensional
6571 * multisample array textures are operated on in the same way when
6572 * TexImage2DMultisample is called with target specified as
6573 * PROXY_TEXTURE_2D_MULTISAMPLE, or TexImage3DMultisample is called
6574 * with target specified as PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY.
6575 * However, if samples is not supported, then no error is generated.
6576 */
6577 if (!samplesOK && !_mesa_is_proxy_texture(target)) {
6578 _mesa_error(ctx, sample_count_error, "%s(samples=%d)", func, samples);
6579 return;
6580 }
6581
6582 if (immutable && (!texObj || (texObj->Name == 0))) {
6583 _mesa_error(ctx, GL_INVALID_OPERATION,
6584 "%s(texture object 0)",
6585 func);
6586 return;
6587 }
6588
6589 texImage = _mesa_get_tex_image(ctx, texObj, 0, 0);
6590
6591 if (texImage == NULL) {
6592 _mesa_error(ctx, GL_OUT_OF_MEMORY, "%s()", func);
6593 return;
6594 }
6595
6596 texFormat = _mesa_choose_texture_format(ctx, texObj, target, 0,
6597 internalformat, GL_NONE, GL_NONE);
6598 assert(texFormat != MESA_FORMAT_NONE);
6599
6600 dimensionsOK = _mesa_legal_texture_dimensions(ctx, target, 0,
6601 width, height, depth, 0);
6602
6603 sizeOK = ctx->Driver.TestProxyTexImage(ctx, target, 0, 0, texFormat,
6604 samples, width, height, depth);
6605
6606 if (_mesa_is_proxy_texture(target)) {
6607 if (samplesOK && dimensionsOK && sizeOK) {
6608 _mesa_init_teximage_fields_ms(ctx, texImage, width, height, depth, 0,
6609 internalformat, texFormat,
6610 samples, fixedsamplelocations);
6611 }
6612 else {
6613 /* clear all image fields */
6614 clear_teximage_fields(texImage);
6615 }
6616 }
6617 else {
6618 if (!dimensionsOK) {
6619 _mesa_error(ctx, GL_INVALID_VALUE,
6620 "%s(invalid width=%d or height=%d)", func, width, height);
6621 return;
6622 }
6623
6624 if (!sizeOK) {
6625 _mesa_error(ctx, GL_OUT_OF_MEMORY, "%s(texture too large)", func);
6626 return;
6627 }
6628
6629 /* Check if texObj->Immutable is set */
6630 if (texObj->Immutable) {
6631 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(immutable)", func);
6632 return;
6633 }
6634
6635 ctx->Driver.FreeTextureImageBuffer(ctx, texImage);
6636
6637 _mesa_init_teximage_fields_ms(ctx, texImage, width, height, depth, 0,
6638 internalformat, texFormat,
6639 samples, fixedsamplelocations);
6640
6641 if (width > 0 && height > 0 && depth > 0) {
6642 if (memObj) {
6643 if (!ctx->Driver.SetTextureStorageForMemoryObject(ctx, texObj,
6644 memObj, 1, width,
6645 height, depth,
6646 offset)) {
6647
6648 _mesa_init_teximage_fields(ctx, texImage, 0, 0, 0, 0,
6649 internalformat, texFormat);
6650 }
6651 } else {
6652 if (!ctx->Driver.AllocTextureStorage(ctx, texObj, 1,
6653 width, height, depth)) {
6654 /* tidy up the texture image state. strictly speaking,
6655 * we're allowed to just leave this in whatever state we
6656 * like, but being tidy is good.
6657 */
6658 _mesa_init_teximage_fields(ctx, texImage, 0, 0, 0, 0,
6659 internalformat, texFormat);
6660 }
6661 }
6662 }
6663
6664 texObj->Immutable |= immutable;
6665
6666 if (immutable) {
6667 _mesa_set_texture_view_state(ctx, texObj, target, 1);
6668 }
6669
6670 _mesa_update_fbo_texture(ctx, texObj, 0, 0);
6671 }
6672 }
6673
6674
6675 void GLAPIENTRY
6676 _mesa_TexImage2DMultisample(GLenum target, GLsizei samples,
6677 GLenum internalformat, GLsizei width,
6678 GLsizei height, GLboolean fixedsamplelocations)
6679 {
6680 struct gl_texture_object *texObj;
6681 GET_CURRENT_CONTEXT(ctx);
6682
6683 texObj = _mesa_get_current_tex_object(ctx, target);
6684 if (!texObj)
6685 return;
6686
6687 texture_image_multisample(ctx, 2, texObj, NULL, target, samples,
6688 internalformat, width, height, 1,
6689 fixedsamplelocations, GL_FALSE, 0,
6690 "glTexImage2DMultisample");
6691 }
6692
6693
6694 void GLAPIENTRY
6695 _mesa_TexImage3DMultisample(GLenum target, GLsizei samples,
6696 GLenum internalformat, GLsizei width,
6697 GLsizei height, GLsizei depth,
6698 GLboolean fixedsamplelocations)
6699 {
6700 struct gl_texture_object *texObj;
6701 GET_CURRENT_CONTEXT(ctx);
6702
6703 texObj = _mesa_get_current_tex_object(ctx, target);
6704 if (!texObj)
6705 return;
6706
6707 texture_image_multisample(ctx, 3, texObj, NULL, target, samples,
6708 internalformat, width, height, depth,
6709 fixedsamplelocations, GL_FALSE, 0,
6710 "glTexImage3DMultisample");
6711 }
6712
6713 static bool
6714 valid_texstorage_ms_parameters(GLsizei width, GLsizei height, GLsizei depth,
6715 unsigned dims)
6716 {
6717 GET_CURRENT_CONTEXT(ctx);
6718
6719 if (!_mesa_valid_tex_storage_dim(width, height, depth)) {
6720 _mesa_error(ctx, GL_INVALID_VALUE,
6721 "glTexStorage%uDMultisample(width=%d,height=%d,depth=%d)",
6722 dims, width, height, depth);
6723 return false;
6724 }
6725 return true;
6726 }
6727
6728 void GLAPIENTRY
6729 _mesa_TexStorage2DMultisample(GLenum target, GLsizei samples,
6730 GLenum internalformat, GLsizei width,
6731 GLsizei height, GLboolean fixedsamplelocations)
6732 {
6733 struct gl_texture_object *texObj;
6734 GET_CURRENT_CONTEXT(ctx);
6735
6736 texObj = _mesa_get_current_tex_object(ctx, target);
6737 if (!texObj)
6738 return;
6739
6740 if (!valid_texstorage_ms_parameters(width, height, 1, 2))
6741 return;
6742
6743 texture_image_multisample(ctx, 2, texObj, NULL, target, samples,
6744 internalformat, width, height, 1,
6745 fixedsamplelocations, GL_TRUE, 0,
6746 "glTexStorage2DMultisample");
6747 }
6748
6749 void GLAPIENTRY
6750 _mesa_TexStorage3DMultisample(GLenum target, GLsizei samples,
6751 GLenum internalformat, GLsizei width,
6752 GLsizei height, GLsizei depth,
6753 GLboolean fixedsamplelocations)
6754 {
6755 struct gl_texture_object *texObj;
6756 GET_CURRENT_CONTEXT(ctx);
6757
6758 texObj = _mesa_get_current_tex_object(ctx, target);
6759 if (!texObj)
6760 return;
6761
6762 if (!valid_texstorage_ms_parameters(width, height, depth, 3))
6763 return;
6764
6765 texture_image_multisample(ctx, 3, texObj, NULL, target, samples,
6766 internalformat, width, height, depth,
6767 fixedsamplelocations, GL_TRUE, 0,
6768 "glTexStorage3DMultisample");
6769 }
6770
6771 void GLAPIENTRY
6772 _mesa_TextureStorage2DMultisample(GLuint texture, GLsizei samples,
6773 GLenum internalformat, GLsizei width,
6774 GLsizei height,
6775 GLboolean fixedsamplelocations)
6776 {
6777 struct gl_texture_object *texObj;
6778 GET_CURRENT_CONTEXT(ctx);
6779
6780 texObj = _mesa_lookup_texture_err(ctx, texture,
6781 "glTextureStorage2DMultisample");
6782 if (!texObj)
6783 return;
6784
6785 if (!valid_texstorage_ms_parameters(width, height, 1, 2))
6786 return;
6787
6788 texture_image_multisample(ctx, 2, texObj, NULL, texObj->Target,
6789 samples, internalformat, width, height, 1,
6790 fixedsamplelocations, GL_TRUE, 0,
6791 "glTextureStorage2DMultisample");
6792 }
6793
6794 void GLAPIENTRY
6795 _mesa_TextureStorage3DMultisample(GLuint texture, GLsizei samples,
6796 GLenum internalformat, GLsizei width,
6797 GLsizei height, GLsizei depth,
6798 GLboolean fixedsamplelocations)
6799 {
6800 struct gl_texture_object *texObj;
6801 GET_CURRENT_CONTEXT(ctx);
6802
6803 /* Get the texture object by Name. */
6804 texObj = _mesa_lookup_texture_err(ctx, texture,
6805 "glTextureStorage3DMultisample");
6806 if (!texObj)
6807 return;
6808
6809 if (!valid_texstorage_ms_parameters(width, height, depth, 3))
6810 return;
6811
6812 texture_image_multisample(ctx, 3, texObj, NULL, texObj->Target, samples,
6813 internalformat, width, height, depth,
6814 fixedsamplelocations, GL_TRUE, 0,
6815 "glTextureStorage3DMultisample");
6816 }
6817
6818 void
6819 _mesa_texture_storage_ms_memory(struct gl_context *ctx, GLuint dims,
6820 struct gl_texture_object *texObj,
6821 struct gl_memory_object *memObj,
6822 GLenum target, GLsizei samples,
6823 GLenum internalFormat, GLsizei width,
6824 GLsizei height, GLsizei depth,
6825 GLboolean fixedSampleLocations,
6826 GLuint64 offset, const char* func)
6827 {
6828 assert(memObj);
6829
6830 texture_image_multisample(ctx, dims, texObj, memObj, target, samples,
6831 internalFormat, width, height, depth,
6832 fixedSampleLocations, GL_TRUE, offset,
6833 func);
6834 }