mesa: remove unused _mesa_delete_nameless_texture()
[mesa.git] / src / mesa / main / texobj.c
1 /**
2 * \file texobj.c
3 * Texture object management.
4 */
5
6 /*
7 * Mesa 3-D graphics library
8 *
9 * Copyright (C) 1999-2007 Brian Paul All Rights Reserved.
10 *
11 * Permission is hereby granted, free of charge, to any person obtaining a
12 * copy of this software and associated documentation files (the "Software"),
13 * to deal in the Software without restriction, including without limitation
14 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
15 * and/or sell copies of the Software, and to permit persons to whom the
16 * Software is furnished to do so, subject to the following conditions:
17 *
18 * The above copyright notice and this permission notice shall be included
19 * in all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
22 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
24 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
25 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
26 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
27 * OTHER DEALINGS IN THE SOFTWARE.
28 */
29
30
31 #include <stdio.h>
32 #include "bufferobj.h"
33 #include "context.h"
34 #include "enums.h"
35 #include "fbobject.h"
36 #include "formats.h"
37 #include "hash.h"
38 #include "imports.h"
39 #include "macros.h"
40 #include "shaderimage.h"
41 #include "teximage.h"
42 #include "texobj.h"
43 #include "texstate.h"
44 #include "mtypes.h"
45 #include "program/prog_instruction.h"
46 #include "texturebindless.h"
47
48
49
50 /**********************************************************************/
51 /** \name Internal functions */
52 /*@{*/
53
54 /**
55 * This function checks for all valid combinations of Min and Mag filters for
56 * Float types, when extensions like OES_texture_float and
57 * OES_texture_float_linear are supported. OES_texture_float mentions support
58 * for NEAREST, NEAREST_MIPMAP_NEAREST magnification and minification filters.
59 * Mag filters like LINEAR and min filters like NEAREST_MIPMAP_LINEAR,
60 * LINEAR_MIPMAP_NEAREST and LINEAR_MIPMAP_LINEAR are only valid in case
61 * OES_texture_float_linear is supported.
62 *
63 * Returns true in case the filter is valid for given Float type else false.
64 */
65 static bool
66 valid_filter_for_float(const struct gl_context *ctx,
67 const struct gl_texture_object *obj)
68 {
69 switch (obj->Sampler.MagFilter) {
70 case GL_LINEAR:
71 if (obj->_IsHalfFloat && !ctx->Extensions.OES_texture_half_float_linear) {
72 return false;
73 } else if (obj->_IsFloat && !ctx->Extensions.OES_texture_float_linear) {
74 return false;
75 }
76 case GL_NEAREST:
77 case GL_NEAREST_MIPMAP_NEAREST:
78 break;
79 default:
80 unreachable("Invalid mag filter");
81 }
82
83 switch (obj->Sampler.MinFilter) {
84 case GL_LINEAR:
85 case GL_NEAREST_MIPMAP_LINEAR:
86 case GL_LINEAR_MIPMAP_NEAREST:
87 case GL_LINEAR_MIPMAP_LINEAR:
88 if (obj->_IsHalfFloat && !ctx->Extensions.OES_texture_half_float_linear) {
89 return false;
90 } else if (obj->_IsFloat && !ctx->Extensions.OES_texture_float_linear) {
91 return false;
92 }
93 case GL_NEAREST:
94 case GL_NEAREST_MIPMAP_NEAREST:
95 break;
96 default:
97 unreachable("Invalid min filter");
98 }
99
100 return true;
101 }
102
103 /**
104 * Return the gl_texture_object for a given ID.
105 */
106 struct gl_texture_object *
107 _mesa_lookup_texture(struct gl_context *ctx, GLuint id)
108 {
109 return (struct gl_texture_object *)
110 _mesa_HashLookup(ctx->Shared->TexObjects, id);
111 }
112
113 /**
114 * Wrapper around _mesa_lookup_texture that throws GL_INVALID_OPERATION if id
115 * is not in the hash table. After calling _mesa_error, it returns NULL.
116 */
117 struct gl_texture_object *
118 _mesa_lookup_texture_err(struct gl_context *ctx, GLuint id, const char* func)
119 {
120 struct gl_texture_object *texObj = NULL;
121
122 if (id > 0)
123 texObj = _mesa_lookup_texture(ctx, id); /* Returns NULL if not found. */
124
125 if (!texObj)
126 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(texture)", func);
127
128 return texObj;
129 }
130
131
132 struct gl_texture_object *
133 _mesa_lookup_texture_locked(struct gl_context *ctx, GLuint id)
134 {
135 return (struct gl_texture_object *)
136 _mesa_HashLookupLocked(ctx->Shared->TexObjects, id);
137 }
138
139 /**
140 * Return a pointer to the current texture object for the given target
141 * on the current texture unit.
142 * Note: all <target> error checking should have been done by this point.
143 */
144 struct gl_texture_object *
145 _mesa_get_current_tex_object(struct gl_context *ctx, GLenum target)
146 {
147 struct gl_texture_unit *texUnit = _mesa_get_current_tex_unit(ctx);
148 const GLboolean arrayTex = ctx->Extensions.EXT_texture_array;
149
150 switch (target) {
151 case GL_TEXTURE_1D:
152 return texUnit->CurrentTex[TEXTURE_1D_INDEX];
153 case GL_PROXY_TEXTURE_1D:
154 return ctx->Texture.ProxyTex[TEXTURE_1D_INDEX];
155 case GL_TEXTURE_2D:
156 return texUnit->CurrentTex[TEXTURE_2D_INDEX];
157 case GL_PROXY_TEXTURE_2D:
158 return ctx->Texture.ProxyTex[TEXTURE_2D_INDEX];
159 case GL_TEXTURE_3D:
160 return texUnit->CurrentTex[TEXTURE_3D_INDEX];
161 case GL_PROXY_TEXTURE_3D:
162 return ctx->Texture.ProxyTex[TEXTURE_3D_INDEX];
163 case GL_TEXTURE_CUBE_MAP_POSITIVE_X:
164 case GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
165 case GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
166 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
167 case GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
168 case GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
169 case GL_TEXTURE_CUBE_MAP:
170 return ctx->Extensions.ARB_texture_cube_map
171 ? texUnit->CurrentTex[TEXTURE_CUBE_INDEX] : NULL;
172 case GL_PROXY_TEXTURE_CUBE_MAP:
173 return ctx->Extensions.ARB_texture_cube_map
174 ? ctx->Texture.ProxyTex[TEXTURE_CUBE_INDEX] : NULL;
175 case GL_TEXTURE_CUBE_MAP_ARRAY:
176 return _mesa_has_texture_cube_map_array(ctx)
177 ? texUnit->CurrentTex[TEXTURE_CUBE_ARRAY_INDEX] : NULL;
178 case GL_PROXY_TEXTURE_CUBE_MAP_ARRAY:
179 return _mesa_has_texture_cube_map_array(ctx)
180 ? ctx->Texture.ProxyTex[TEXTURE_CUBE_ARRAY_INDEX] : NULL;
181 case GL_TEXTURE_RECTANGLE_NV:
182 return ctx->Extensions.NV_texture_rectangle
183 ? texUnit->CurrentTex[TEXTURE_RECT_INDEX] : NULL;
184 case GL_PROXY_TEXTURE_RECTANGLE_NV:
185 return ctx->Extensions.NV_texture_rectangle
186 ? ctx->Texture.ProxyTex[TEXTURE_RECT_INDEX] : NULL;
187 case GL_TEXTURE_1D_ARRAY_EXT:
188 return arrayTex ? texUnit->CurrentTex[TEXTURE_1D_ARRAY_INDEX] : NULL;
189 case GL_PROXY_TEXTURE_1D_ARRAY_EXT:
190 return arrayTex ? ctx->Texture.ProxyTex[TEXTURE_1D_ARRAY_INDEX] : NULL;
191 case GL_TEXTURE_2D_ARRAY_EXT:
192 return arrayTex ? texUnit->CurrentTex[TEXTURE_2D_ARRAY_INDEX] : NULL;
193 case GL_PROXY_TEXTURE_2D_ARRAY_EXT:
194 return arrayTex ? ctx->Texture.ProxyTex[TEXTURE_2D_ARRAY_INDEX] : NULL;
195 case GL_TEXTURE_BUFFER:
196 return (_mesa_has_ARB_texture_buffer_object(ctx) ||
197 _mesa_has_OES_texture_buffer(ctx)) ?
198 texUnit->CurrentTex[TEXTURE_BUFFER_INDEX] : NULL;
199 case GL_TEXTURE_EXTERNAL_OES:
200 return _mesa_is_gles(ctx) && ctx->Extensions.OES_EGL_image_external
201 ? texUnit->CurrentTex[TEXTURE_EXTERNAL_INDEX] : NULL;
202 case GL_TEXTURE_2D_MULTISAMPLE:
203 return ctx->Extensions.ARB_texture_multisample
204 ? texUnit->CurrentTex[TEXTURE_2D_MULTISAMPLE_INDEX] : NULL;
205 case GL_PROXY_TEXTURE_2D_MULTISAMPLE:
206 return ctx->Extensions.ARB_texture_multisample
207 ? ctx->Texture.ProxyTex[TEXTURE_2D_MULTISAMPLE_INDEX] : NULL;
208 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
209 return ctx->Extensions.ARB_texture_multisample
210 ? texUnit->CurrentTex[TEXTURE_2D_MULTISAMPLE_ARRAY_INDEX] : NULL;
211 case GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY:
212 return ctx->Extensions.ARB_texture_multisample
213 ? ctx->Texture.ProxyTex[TEXTURE_2D_MULTISAMPLE_ARRAY_INDEX] : NULL;
214 default:
215 _mesa_problem(NULL, "bad target in _mesa_get_current_tex_object()");
216 return NULL;
217 }
218 }
219
220
221 /**
222 * Allocate and initialize a new texture object. But don't put it into the
223 * texture object hash table.
224 *
225 * Called via ctx->Driver.NewTextureObject, unless overridden by a device
226 * driver.
227 *
228 * \param shared the shared GL state structure to contain the texture object
229 * \param name integer name for the texture object
230 * \param target either GL_TEXTURE_1D, GL_TEXTURE_2D, GL_TEXTURE_3D,
231 * GL_TEXTURE_CUBE_MAP or GL_TEXTURE_RECTANGLE_NV. zero is ok for the sake
232 * of GenTextures()
233 *
234 * \return pointer to new texture object.
235 */
236 struct gl_texture_object *
237 _mesa_new_texture_object(struct gl_context *ctx, GLuint name, GLenum target)
238 {
239 struct gl_texture_object *obj;
240
241 obj = MALLOC_STRUCT(gl_texture_object);
242 if (!obj)
243 return NULL;
244
245 _mesa_initialize_texture_object(ctx, obj, name, target);
246 return obj;
247 }
248
249
250 /**
251 * Initialize a new texture object to default values.
252 * \param obj the texture object
253 * \param name the texture name
254 * \param target the texture target
255 */
256 void
257 _mesa_initialize_texture_object( struct gl_context *ctx,
258 struct gl_texture_object *obj,
259 GLuint name, GLenum target )
260 {
261 assert(target == 0 ||
262 target == GL_TEXTURE_1D ||
263 target == GL_TEXTURE_2D ||
264 target == GL_TEXTURE_3D ||
265 target == GL_TEXTURE_CUBE_MAP ||
266 target == GL_TEXTURE_RECTANGLE_NV ||
267 target == GL_TEXTURE_1D_ARRAY_EXT ||
268 target == GL_TEXTURE_2D_ARRAY_EXT ||
269 target == GL_TEXTURE_EXTERNAL_OES ||
270 target == GL_TEXTURE_CUBE_MAP_ARRAY ||
271 target == GL_TEXTURE_BUFFER ||
272 target == GL_TEXTURE_2D_MULTISAMPLE ||
273 target == GL_TEXTURE_2D_MULTISAMPLE_ARRAY);
274
275 memset(obj, 0, sizeof(*obj));
276 /* init the non-zero fields */
277 mtx_init(&obj->Mutex, mtx_plain);
278 obj->RefCount = 1;
279 obj->Name = name;
280 obj->Target = target;
281 if (target != 0) {
282 obj->TargetIndex = _mesa_tex_target_to_index(ctx, target);
283 }
284 else {
285 obj->TargetIndex = NUM_TEXTURE_TARGETS; /* invalid/error value */
286 }
287 obj->Priority = 1.0F;
288 obj->BaseLevel = 0;
289 obj->MaxLevel = 1000;
290
291 /* must be one; no support for (YUV) planes in separate buffers */
292 obj->RequiredTextureImageUnits = 1;
293
294 /* sampler state */
295 if (target == GL_TEXTURE_RECTANGLE_NV ||
296 target == GL_TEXTURE_EXTERNAL_OES) {
297 obj->Sampler.WrapS = GL_CLAMP_TO_EDGE;
298 obj->Sampler.WrapT = GL_CLAMP_TO_EDGE;
299 obj->Sampler.WrapR = GL_CLAMP_TO_EDGE;
300 obj->Sampler.MinFilter = GL_LINEAR;
301 }
302 else {
303 obj->Sampler.WrapS = GL_REPEAT;
304 obj->Sampler.WrapT = GL_REPEAT;
305 obj->Sampler.WrapR = GL_REPEAT;
306 obj->Sampler.MinFilter = GL_NEAREST_MIPMAP_LINEAR;
307 }
308 obj->Sampler.MagFilter = GL_LINEAR;
309 obj->Sampler.MinLod = -1000.0;
310 obj->Sampler.MaxLod = 1000.0;
311 obj->Sampler.LodBias = 0.0;
312 obj->Sampler.MaxAnisotropy = 1.0;
313 obj->Sampler.CompareMode = GL_NONE; /* ARB_shadow */
314 obj->Sampler.CompareFunc = GL_LEQUAL; /* ARB_shadow */
315 obj->DepthMode = ctx->API == API_OPENGL_CORE ? GL_RED : GL_LUMINANCE;
316 obj->StencilSampling = false;
317 obj->Sampler.CubeMapSeamless = GL_FALSE;
318 obj->Sampler.HandleAllocated = GL_FALSE;
319 obj->Swizzle[0] = GL_RED;
320 obj->Swizzle[1] = GL_GREEN;
321 obj->Swizzle[2] = GL_BLUE;
322 obj->Swizzle[3] = GL_ALPHA;
323 obj->_Swizzle = SWIZZLE_NOOP;
324 obj->Sampler.sRGBDecode = GL_DECODE_EXT;
325 obj->BufferObjectFormat = GL_R8;
326 obj->_BufferObjectFormat = MESA_FORMAT_R_UNORM8;
327 obj->ImageFormatCompatibilityType = GL_IMAGE_FORMAT_COMPATIBILITY_BY_SIZE;
328
329 /* GL_ARB_bindless_texture */
330 _mesa_init_texture_handles(obj);
331 }
332
333
334 /**
335 * Some texture initialization can't be finished until we know which
336 * target it's getting bound to (GL_TEXTURE_1D/2D/etc).
337 */
338 static void
339 finish_texture_init(struct gl_context *ctx, GLenum target,
340 struct gl_texture_object *obj, int targetIndex)
341 {
342 GLenum filter = GL_LINEAR;
343 assert(obj->Target == 0);
344
345 obj->Target = target;
346 obj->TargetIndex = targetIndex;
347 assert(obj->TargetIndex < NUM_TEXTURE_TARGETS);
348
349 switch (target) {
350 case GL_TEXTURE_2D_MULTISAMPLE:
351 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
352 filter = GL_NEAREST;
353 /* fallthrough */
354
355 case GL_TEXTURE_RECTANGLE_NV:
356 case GL_TEXTURE_EXTERNAL_OES:
357 /* have to init wrap and filter state here - kind of klunky */
358 obj->Sampler.WrapS = GL_CLAMP_TO_EDGE;
359 obj->Sampler.WrapT = GL_CLAMP_TO_EDGE;
360 obj->Sampler.WrapR = GL_CLAMP_TO_EDGE;
361 obj->Sampler.MinFilter = filter;
362 obj->Sampler.MagFilter = filter;
363 if (ctx->Driver.TexParameter) {
364 /* XXX we probably don't need to make all these calls */
365 ctx->Driver.TexParameter(ctx, obj, GL_TEXTURE_WRAP_S);
366 ctx->Driver.TexParameter(ctx, obj, GL_TEXTURE_WRAP_T);
367 ctx->Driver.TexParameter(ctx, obj, GL_TEXTURE_WRAP_R);
368 ctx->Driver.TexParameter(ctx, obj, GL_TEXTURE_MIN_FILTER);
369 ctx->Driver.TexParameter(ctx, obj, GL_TEXTURE_MAG_FILTER);
370 }
371 break;
372
373 default:
374 /* nothing needs done */
375 break;
376 }
377 }
378
379
380 /**
381 * Deallocate a texture object struct. It should have already been
382 * removed from the texture object pool.
383 * Called via ctx->Driver.DeleteTexture() if not overriden by a driver.
384 *
385 * \param shared the shared GL state to which the object belongs.
386 * \param texObj the texture object to delete.
387 */
388 void
389 _mesa_delete_texture_object(struct gl_context *ctx,
390 struct gl_texture_object *texObj)
391 {
392 GLuint i, face;
393
394 /* Set Target to an invalid value. With some assertions elsewhere
395 * we can try to detect possible use of deleted textures.
396 */
397 texObj->Target = 0x99;
398
399 /* free the texture images */
400 for (face = 0; face < 6; face++) {
401 for (i = 0; i < MAX_TEXTURE_LEVELS; i++) {
402 if (texObj->Image[face][i]) {
403 ctx->Driver.DeleteTextureImage(ctx, texObj->Image[face][i]);
404 }
405 }
406 }
407
408 /* Delete all texture/image handles. */
409 _mesa_delete_texture_handles(ctx, texObj);
410
411 _mesa_reference_buffer_object(ctx, &texObj->BufferObject, NULL);
412
413 /* destroy the mutex -- it may have allocated memory (eg on bsd) */
414 mtx_destroy(&texObj->Mutex);
415
416 free(texObj->Label);
417
418 /* free this object */
419 free(texObj);
420 }
421
422
423 /**
424 * Copy texture object state from one texture object to another.
425 * Use for glPush/PopAttrib.
426 *
427 * \param dest destination texture object.
428 * \param src source texture object.
429 */
430 void
431 _mesa_copy_texture_object( struct gl_texture_object *dest,
432 const struct gl_texture_object *src )
433 {
434 dest->Target = src->Target;
435 dest->TargetIndex = src->TargetIndex;
436 dest->Name = src->Name;
437 dest->Priority = src->Priority;
438 dest->Sampler.BorderColor.f[0] = src->Sampler.BorderColor.f[0];
439 dest->Sampler.BorderColor.f[1] = src->Sampler.BorderColor.f[1];
440 dest->Sampler.BorderColor.f[2] = src->Sampler.BorderColor.f[2];
441 dest->Sampler.BorderColor.f[3] = src->Sampler.BorderColor.f[3];
442 dest->Sampler.WrapS = src->Sampler.WrapS;
443 dest->Sampler.WrapT = src->Sampler.WrapT;
444 dest->Sampler.WrapR = src->Sampler.WrapR;
445 dest->Sampler.MinFilter = src->Sampler.MinFilter;
446 dest->Sampler.MagFilter = src->Sampler.MagFilter;
447 dest->Sampler.MinLod = src->Sampler.MinLod;
448 dest->Sampler.MaxLod = src->Sampler.MaxLod;
449 dest->Sampler.LodBias = src->Sampler.LodBias;
450 dest->BaseLevel = src->BaseLevel;
451 dest->MaxLevel = src->MaxLevel;
452 dest->Sampler.MaxAnisotropy = src->Sampler.MaxAnisotropy;
453 dest->Sampler.CompareMode = src->Sampler.CompareMode;
454 dest->Sampler.CompareFunc = src->Sampler.CompareFunc;
455 dest->Sampler.CubeMapSeamless = src->Sampler.CubeMapSeamless;
456 dest->DepthMode = src->DepthMode;
457 dest->StencilSampling = src->StencilSampling;
458 dest->Sampler.sRGBDecode = src->Sampler.sRGBDecode;
459 dest->_MaxLevel = src->_MaxLevel;
460 dest->_MaxLambda = src->_MaxLambda;
461 dest->GenerateMipmap = src->GenerateMipmap;
462 dest->_BaseComplete = src->_BaseComplete;
463 dest->_MipmapComplete = src->_MipmapComplete;
464 COPY_4V(dest->Swizzle, src->Swizzle);
465 dest->_Swizzle = src->_Swizzle;
466 dest->_IsHalfFloat = src->_IsHalfFloat;
467 dest->_IsFloat = src->_IsFloat;
468
469 dest->RequiredTextureImageUnits = src->RequiredTextureImageUnits;
470 }
471
472
473 /**
474 * Free all texture images of the given texture object.
475 *
476 * \param ctx GL context.
477 * \param t texture object.
478 *
479 * \sa _mesa_clear_texture_image().
480 */
481 void
482 _mesa_clear_texture_object(struct gl_context *ctx,
483 struct gl_texture_object *texObj)
484 {
485 GLuint i, j;
486
487 if (texObj->Target == 0)
488 return;
489
490 for (i = 0; i < MAX_FACES; i++) {
491 for (j = 0; j < MAX_TEXTURE_LEVELS; j++) {
492 struct gl_texture_image *texImage = texObj->Image[i][j];
493 if (texImage)
494 _mesa_clear_texture_image(ctx, texImage);
495 }
496 }
497 }
498
499
500 /**
501 * Check if the given texture object is valid by examining its Target field.
502 * For debugging only.
503 */
504 static GLboolean
505 valid_texture_object(const struct gl_texture_object *tex)
506 {
507 switch (tex->Target) {
508 case 0:
509 case GL_TEXTURE_1D:
510 case GL_TEXTURE_2D:
511 case GL_TEXTURE_3D:
512 case GL_TEXTURE_CUBE_MAP:
513 case GL_TEXTURE_RECTANGLE_NV:
514 case GL_TEXTURE_1D_ARRAY_EXT:
515 case GL_TEXTURE_2D_ARRAY_EXT:
516 case GL_TEXTURE_BUFFER:
517 case GL_TEXTURE_EXTERNAL_OES:
518 case GL_TEXTURE_CUBE_MAP_ARRAY:
519 case GL_TEXTURE_2D_MULTISAMPLE:
520 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
521 return GL_TRUE;
522 case 0x99:
523 _mesa_problem(NULL, "invalid reference to a deleted texture object");
524 return GL_FALSE;
525 default:
526 _mesa_problem(NULL, "invalid texture object Target 0x%x, Id = %u",
527 tex->Target, tex->Name);
528 return GL_FALSE;
529 }
530 }
531
532
533 /**
534 * Reference (or unreference) a texture object.
535 * If '*ptr', decrement *ptr's refcount (and delete if it becomes zero).
536 * If 'tex' is non-null, increment its refcount.
537 * This is normally only called from the _mesa_reference_texobj() macro
538 * when there's a real pointer change.
539 */
540 void
541 _mesa_reference_texobj_(struct gl_texture_object **ptr,
542 struct gl_texture_object *tex)
543 {
544 assert(ptr);
545
546 if (*ptr) {
547 /* Unreference the old texture */
548 GLboolean deleteFlag = GL_FALSE;
549 struct gl_texture_object *oldTex = *ptr;
550
551 assert(valid_texture_object(oldTex));
552 (void) valid_texture_object; /* silence warning in release builds */
553
554 mtx_lock(&oldTex->Mutex);
555 assert(oldTex->RefCount > 0);
556 oldTex->RefCount--;
557
558 deleteFlag = (oldTex->RefCount == 0);
559 mtx_unlock(&oldTex->Mutex);
560
561 if (deleteFlag) {
562 /* Passing in the context drastically changes the driver code for
563 * framebuffer deletion.
564 */
565 GET_CURRENT_CONTEXT(ctx);
566 if (ctx)
567 ctx->Driver.DeleteTexture(ctx, oldTex);
568 else
569 _mesa_problem(NULL, "Unable to delete texture, no context");
570 }
571
572 *ptr = NULL;
573 }
574 assert(!*ptr);
575
576 if (tex) {
577 /* reference new texture */
578 assert(valid_texture_object(tex));
579 mtx_lock(&tex->Mutex);
580 assert(tex->RefCount > 0);
581
582 tex->RefCount++;
583 *ptr = tex;
584 mtx_unlock(&tex->Mutex);
585 }
586 }
587
588
589 enum base_mipmap { BASE, MIPMAP };
590
591
592 /**
593 * Mark a texture object as incomplete. There are actually three kinds of
594 * (in)completeness:
595 * 1. "base incomplete": the base level of the texture is invalid so no
596 * texturing is possible.
597 * 2. "mipmap incomplete": a non-base level of the texture is invalid so
598 * mipmap filtering isn't possible, but non-mipmap filtering is.
599 * 3. "texture incompleteness": some combination of texture state and
600 * sampler state renders the texture incomplete.
601 *
602 * \param t texture object
603 * \param bm either BASE or MIPMAP to indicate what's incomplete
604 * \param fmt... string describing why it's incomplete (for debugging).
605 */
606 static void
607 incomplete(struct gl_texture_object *t, enum base_mipmap bm,
608 const char *fmt, ...)
609 {
610 if (MESA_DEBUG_FLAGS & DEBUG_INCOMPLETE_TEXTURE) {
611 va_list args;
612 char s[100];
613
614 va_start(args, fmt);
615 vsnprintf(s, sizeof(s), fmt, args);
616 va_end(args);
617
618 _mesa_debug(NULL, "Texture Obj %d incomplete because: %s\n", t->Name, s);
619 }
620
621 if (bm == BASE)
622 t->_BaseComplete = GL_FALSE;
623 t->_MipmapComplete = GL_FALSE;
624 }
625
626
627 /**
628 * Examine a texture object to determine if it is complete.
629 *
630 * The gl_texture_object::Complete flag will be set to GL_TRUE or GL_FALSE
631 * accordingly.
632 *
633 * \param ctx GL context.
634 * \param t texture object.
635 *
636 * According to the texture target, verifies that each of the mipmaps is
637 * present and has the expected size.
638 */
639 void
640 _mesa_test_texobj_completeness( const struct gl_context *ctx,
641 struct gl_texture_object *t )
642 {
643 const GLint baseLevel = t->BaseLevel;
644 const struct gl_texture_image *baseImage;
645 GLint maxLevels = 0;
646
647 /* We'll set these to FALSE if tests fail below */
648 t->_BaseComplete = GL_TRUE;
649 t->_MipmapComplete = GL_TRUE;
650
651 if (t->Target == GL_TEXTURE_BUFFER) {
652 /* Buffer textures are always considered complete. The obvious case where
653 * they would be incomplete (no BO attached) is actually specced to be
654 * undefined rendering results.
655 */
656 return;
657 }
658
659 /* Detect cases where the application set the base level to an invalid
660 * value.
661 */
662 if ((baseLevel < 0) || (baseLevel >= MAX_TEXTURE_LEVELS)) {
663 incomplete(t, BASE, "base level = %d is invalid", baseLevel);
664 return;
665 }
666
667 if (t->MaxLevel < baseLevel) {
668 incomplete(t, MIPMAP, "MAX_LEVEL (%d) < BASE_LEVEL (%d)",
669 t->MaxLevel, baseLevel);
670 return;
671 }
672
673 baseImage = t->Image[0][baseLevel];
674
675 /* Always need the base level image */
676 if (!baseImage) {
677 incomplete(t, BASE, "Image[baseLevel=%d] == NULL", baseLevel);
678 return;
679 }
680
681 /* Check width/height/depth for zero */
682 if (baseImage->Width == 0 ||
683 baseImage->Height == 0 ||
684 baseImage->Depth == 0) {
685 incomplete(t, BASE, "texture width or height or depth = 0");
686 return;
687 }
688
689 /* Check if the texture values are integer */
690 {
691 GLenum datatype = _mesa_get_format_datatype(baseImage->TexFormat);
692 t->_IsIntegerFormat = datatype == GL_INT || datatype == GL_UNSIGNED_INT;
693 }
694
695 /* Check if the texture type is Float or HalfFloatOES and ensure Min and Mag
696 * filters are supported in this case.
697 */
698 if (_mesa_is_gles(ctx) && !valid_filter_for_float(ctx, t)) {
699 incomplete(t, BASE, "Filter is not supported with Float types.");
700 return;
701 }
702
703 /* Compute _MaxLevel (the maximum mipmap level we'll sample from given the
704 * mipmap image sizes and GL_TEXTURE_MAX_LEVEL state).
705 */
706 switch (t->Target) {
707 case GL_TEXTURE_1D:
708 case GL_TEXTURE_1D_ARRAY_EXT:
709 maxLevels = ctx->Const.MaxTextureLevels;
710 break;
711 case GL_TEXTURE_2D:
712 case GL_TEXTURE_2D_ARRAY_EXT:
713 maxLevels = ctx->Const.MaxTextureLevels;
714 break;
715 case GL_TEXTURE_3D:
716 maxLevels = ctx->Const.Max3DTextureLevels;
717 break;
718 case GL_TEXTURE_CUBE_MAP:
719 case GL_TEXTURE_CUBE_MAP_ARRAY:
720 maxLevels = ctx->Const.MaxCubeTextureLevels;
721 break;
722 case GL_TEXTURE_RECTANGLE_NV:
723 case GL_TEXTURE_BUFFER:
724 case GL_TEXTURE_EXTERNAL_OES:
725 case GL_TEXTURE_2D_MULTISAMPLE:
726 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
727 maxLevels = 1; /* no mipmapping */
728 break;
729 default:
730 _mesa_problem(ctx, "Bad t->Target in _mesa_test_texobj_completeness");
731 return;
732 }
733
734 assert(maxLevels > 0);
735
736 t->_MaxLevel = MIN3(t->MaxLevel,
737 /* 'p' in the GL spec */
738 (int) (baseLevel + baseImage->MaxNumLevels - 1),
739 /* 'q' in the GL spec */
740 maxLevels - 1);
741
742 if (t->Immutable) {
743 /* Adjust max level for views: the data store may have more levels than
744 * the view exposes.
745 */
746 t->_MaxLevel = MIN2(t->_MaxLevel, t->NumLevels - 1);
747 }
748
749 /* Compute _MaxLambda = q - p in the spec used during mipmapping */
750 t->_MaxLambda = (GLfloat) (t->_MaxLevel - baseLevel);
751
752 if (t->Immutable) {
753 /* This texture object was created with glTexStorage1/2/3D() so we
754 * know that all the mipmap levels are the right size and all cube
755 * map faces are the same size.
756 * We don't need to do any of the additional checks below.
757 */
758 return;
759 }
760
761 if (t->Target == GL_TEXTURE_CUBE_MAP) {
762 /* Make sure that all six cube map level 0 images are the same size and
763 * format.
764 * Note: we know that the image's width==height (we enforce that
765 * at glTexImage time) so we only need to test the width here.
766 */
767 GLuint face;
768 assert(baseImage->Width2 == baseImage->Height);
769 for (face = 1; face < 6; face++) {
770 assert(t->Image[face][baseLevel] == NULL ||
771 t->Image[face][baseLevel]->Width2 ==
772 t->Image[face][baseLevel]->Height2);
773 if (t->Image[face][baseLevel] == NULL ||
774 t->Image[face][baseLevel]->Width2 != baseImage->Width2) {
775 incomplete(t, BASE, "Cube face missing or mismatched size");
776 return;
777 }
778 if (t->Image[face][baseLevel]->InternalFormat !=
779 baseImage->InternalFormat) {
780 incomplete(t, BASE, "Cube face format mismatch");
781 return;
782 }
783 if (t->Image[face][baseLevel]->Border != baseImage->Border) {
784 incomplete(t, BASE, "Cube face border size mismatch");
785 return;
786 }
787 }
788 }
789
790 /*
791 * Do mipmap consistency checking.
792 * Note: we don't care about the current texture sampler state here.
793 * To determine texture completeness we'll either look at _BaseComplete
794 * or _MipmapComplete depending on the current minification filter mode.
795 */
796 {
797 GLint i;
798 const GLint minLevel = baseLevel;
799 const GLint maxLevel = t->_MaxLevel;
800 const GLuint numFaces = _mesa_num_tex_faces(t->Target);
801 GLuint width, height, depth, face;
802
803 if (minLevel > maxLevel) {
804 incomplete(t, MIPMAP, "minLevel > maxLevel");
805 return;
806 }
807
808 /* Get the base image's dimensions */
809 width = baseImage->Width2;
810 height = baseImage->Height2;
811 depth = baseImage->Depth2;
812
813 /* Note: this loop will be a no-op for RECT, BUFFER, EXTERNAL,
814 * MULTISAMPLE and MULTISAMPLE_ARRAY textures
815 */
816 for (i = baseLevel + 1; i < maxLevels; i++) {
817 /* Compute the expected size of image at level[i] */
818 if (width > 1) {
819 width /= 2;
820 }
821 if (height > 1 && t->Target != GL_TEXTURE_1D_ARRAY) {
822 height /= 2;
823 }
824 if (depth > 1 && t->Target != GL_TEXTURE_2D_ARRAY
825 && t->Target != GL_TEXTURE_CUBE_MAP_ARRAY) {
826 depth /= 2;
827 }
828
829 /* loop over cube faces (or single face otherwise) */
830 for (face = 0; face < numFaces; face++) {
831 if (i >= minLevel && i <= maxLevel) {
832 const struct gl_texture_image *img = t->Image[face][i];
833
834 if (!img) {
835 incomplete(t, MIPMAP, "TexImage[%d] is missing", i);
836 return;
837 }
838 if (img->InternalFormat != baseImage->InternalFormat) {
839 incomplete(t, MIPMAP, "Format[i] != Format[baseLevel]");
840 return;
841 }
842 if (img->Border != baseImage->Border) {
843 incomplete(t, MIPMAP, "Border[i] != Border[baseLevel]");
844 return;
845 }
846 if (img->Width2 != width) {
847 incomplete(t, MIPMAP, "TexImage[%d] bad width %u", i,
848 img->Width2);
849 return;
850 }
851 if (img->Height2 != height) {
852 incomplete(t, MIPMAP, "TexImage[%d] bad height %u", i,
853 img->Height2);
854 return;
855 }
856 if (img->Depth2 != depth) {
857 incomplete(t, MIPMAP, "TexImage[%d] bad depth %u", i,
858 img->Depth2);
859 return;
860 }
861 }
862 }
863
864 if (width == 1 && height == 1 && depth == 1) {
865 return; /* found smallest needed mipmap, all done! */
866 }
867 }
868 }
869 }
870
871
872 GLboolean
873 _mesa_cube_level_complete(const struct gl_texture_object *texObj,
874 const GLint level)
875 {
876 const struct gl_texture_image *img0, *img;
877 GLuint face;
878
879 if (texObj->Target != GL_TEXTURE_CUBE_MAP)
880 return GL_FALSE;
881
882 if ((level < 0) || (level >= MAX_TEXTURE_LEVELS))
883 return GL_FALSE;
884
885 /* check first face */
886 img0 = texObj->Image[0][level];
887 if (!img0 ||
888 img0->Width < 1 ||
889 img0->Width != img0->Height)
890 return GL_FALSE;
891
892 /* check remaining faces vs. first face */
893 for (face = 1; face < 6; face++) {
894 img = texObj->Image[face][level];
895 if (!img ||
896 img->Width != img0->Width ||
897 img->Height != img0->Height ||
898 img->TexFormat != img0->TexFormat)
899 return GL_FALSE;
900 }
901
902 return GL_TRUE;
903 }
904
905 /**
906 * Check if the given cube map texture is "cube complete" as defined in
907 * the OpenGL specification.
908 */
909 GLboolean
910 _mesa_cube_complete(const struct gl_texture_object *texObj)
911 {
912 return _mesa_cube_level_complete(texObj, texObj->BaseLevel);
913 }
914
915 /**
916 * Mark a texture object dirty. It forces the object to be incomplete
917 * and forces the context to re-validate its state.
918 *
919 * \param ctx GL context.
920 * \param texObj texture object.
921 */
922 void
923 _mesa_dirty_texobj(struct gl_context *ctx, struct gl_texture_object *texObj)
924 {
925 texObj->_BaseComplete = GL_FALSE;
926 texObj->_MipmapComplete = GL_FALSE;
927 ctx->NewState |= _NEW_TEXTURE_OBJECT;
928 }
929
930
931 /**
932 * Return pointer to a default/fallback texture of the given type/target.
933 * The texture is an RGBA texture with all texels = (0,0,0,1).
934 * That's the value a GLSL sampler should get when sampling from an
935 * incomplete texture.
936 */
937 struct gl_texture_object *
938 _mesa_get_fallback_texture(struct gl_context *ctx, gl_texture_index tex)
939 {
940 if (!ctx->Shared->FallbackTex[tex]) {
941 /* create fallback texture now */
942 const GLsizei width = 1, height = 1;
943 GLsizei depth = 1;
944 GLubyte texel[24];
945 struct gl_texture_object *texObj;
946 struct gl_texture_image *texImage;
947 mesa_format texFormat;
948 GLuint dims, face, numFaces = 1;
949 GLenum target;
950
951 for (face = 0; face < 6; face++) {
952 texel[4*face + 0] =
953 texel[4*face + 1] =
954 texel[4*face + 2] = 0x0;
955 texel[4*face + 3] = 0xff;
956 }
957
958 switch (tex) {
959 case TEXTURE_2D_ARRAY_INDEX:
960 dims = 3;
961 target = GL_TEXTURE_2D_ARRAY;
962 break;
963 case TEXTURE_1D_ARRAY_INDEX:
964 dims = 2;
965 target = GL_TEXTURE_1D_ARRAY;
966 break;
967 case TEXTURE_CUBE_INDEX:
968 dims = 2;
969 target = GL_TEXTURE_CUBE_MAP;
970 numFaces = 6;
971 break;
972 case TEXTURE_3D_INDEX:
973 dims = 3;
974 target = GL_TEXTURE_3D;
975 break;
976 case TEXTURE_RECT_INDEX:
977 dims = 2;
978 target = GL_TEXTURE_RECTANGLE;
979 break;
980 case TEXTURE_2D_INDEX:
981 dims = 2;
982 target = GL_TEXTURE_2D;
983 break;
984 case TEXTURE_1D_INDEX:
985 dims = 1;
986 target = GL_TEXTURE_1D;
987 break;
988 case TEXTURE_BUFFER_INDEX:
989 dims = 0;
990 target = GL_TEXTURE_BUFFER;
991 break;
992 case TEXTURE_CUBE_ARRAY_INDEX:
993 dims = 3;
994 target = GL_TEXTURE_CUBE_MAP_ARRAY;
995 depth = 6;
996 break;
997 case TEXTURE_EXTERNAL_INDEX:
998 dims = 2;
999 target = GL_TEXTURE_EXTERNAL_OES;
1000 break;
1001 case TEXTURE_2D_MULTISAMPLE_INDEX:
1002 dims = 2;
1003 target = GL_TEXTURE_2D_MULTISAMPLE;
1004 break;
1005 case TEXTURE_2D_MULTISAMPLE_ARRAY_INDEX:
1006 dims = 3;
1007 target = GL_TEXTURE_2D_MULTISAMPLE_ARRAY;
1008 break;
1009 default:
1010 /* no-op */
1011 return NULL;
1012 }
1013
1014 /* create texture object */
1015 texObj = ctx->Driver.NewTextureObject(ctx, 0, target);
1016 if (!texObj)
1017 return NULL;
1018
1019 assert(texObj->RefCount == 1);
1020 texObj->Sampler.MinFilter = GL_NEAREST;
1021 texObj->Sampler.MagFilter = GL_NEAREST;
1022
1023 texFormat = ctx->Driver.ChooseTextureFormat(ctx, target,
1024 GL_RGBA, GL_RGBA,
1025 GL_UNSIGNED_BYTE);
1026
1027 /* need a loop here just for cube maps */
1028 for (face = 0; face < numFaces; face++) {
1029 const GLenum faceTarget = _mesa_cube_face_target(target, face);
1030
1031 /* initialize level[0] texture image */
1032 texImage = _mesa_get_tex_image(ctx, texObj, faceTarget, 0);
1033
1034 _mesa_init_teximage_fields(ctx, texImage,
1035 width,
1036 (dims > 1) ? height : 1,
1037 (dims > 2) ? depth : 1,
1038 0, /* border */
1039 GL_RGBA, texFormat);
1040
1041 ctx->Driver.TexImage(ctx, dims, texImage,
1042 GL_RGBA, GL_UNSIGNED_BYTE, texel,
1043 &ctx->DefaultPacking);
1044 }
1045
1046 _mesa_test_texobj_completeness(ctx, texObj);
1047 assert(texObj->_BaseComplete);
1048 assert(texObj->_MipmapComplete);
1049
1050 ctx->Shared->FallbackTex[tex] = texObj;
1051 }
1052 return ctx->Shared->FallbackTex[tex];
1053 }
1054
1055
1056 /**
1057 * Compute the size of the given texture object, in bytes.
1058 */
1059 static GLuint
1060 texture_size(const struct gl_texture_object *texObj)
1061 {
1062 const GLuint numFaces = _mesa_num_tex_faces(texObj->Target);
1063 GLuint face, level, size = 0;
1064
1065 for (face = 0; face < numFaces; face++) {
1066 for (level = 0; level < MAX_TEXTURE_LEVELS; level++) {
1067 const struct gl_texture_image *img = texObj->Image[face][level];
1068 if (img) {
1069 GLuint sz = _mesa_format_image_size(img->TexFormat, img->Width,
1070 img->Height, img->Depth);
1071 size += sz;
1072 }
1073 }
1074 }
1075
1076 return size;
1077 }
1078
1079
1080 /**
1081 * Callback called from _mesa_HashWalk()
1082 */
1083 static void
1084 count_tex_size(GLuint key, void *data, void *userData)
1085 {
1086 const struct gl_texture_object *texObj =
1087 (const struct gl_texture_object *) data;
1088 GLuint *total = (GLuint *) userData;
1089
1090 (void) key;
1091
1092 *total = *total + texture_size(texObj);
1093 }
1094
1095
1096 /**
1097 * Compute total size (in bytes) of all textures for the given context.
1098 * For debugging purposes.
1099 */
1100 GLuint
1101 _mesa_total_texture_memory(struct gl_context *ctx)
1102 {
1103 GLuint tgt, total = 0;
1104
1105 _mesa_HashWalk(ctx->Shared->TexObjects, count_tex_size, &total);
1106
1107 /* plus, the default texture objects */
1108 for (tgt = 0; tgt < NUM_TEXTURE_TARGETS; tgt++) {
1109 total += texture_size(ctx->Shared->DefaultTex[tgt]);
1110 }
1111
1112 return total;
1113 }
1114
1115
1116 /**
1117 * Return the base format for the given texture object by looking
1118 * at the base texture image.
1119 * \return base format (such as GL_RGBA) or GL_NONE if it can't be determined
1120 */
1121 GLenum
1122 _mesa_texture_base_format(const struct gl_texture_object *texObj)
1123 {
1124 const struct gl_texture_image *texImage = _mesa_base_tex_image(texObj);
1125
1126 return texImage ? texImage->_BaseFormat : GL_NONE;
1127 }
1128
1129
1130 static struct gl_texture_object *
1131 invalidate_tex_image_error_check(struct gl_context *ctx, GLuint texture,
1132 GLint level, const char *name)
1133 {
1134 /* The GL_ARB_invalidate_subdata spec says:
1135 *
1136 * "If <texture> is zero or is not the name of a texture, the error
1137 * INVALID_VALUE is generated."
1138 *
1139 * This performs the error check in a different order than listed in the
1140 * spec. We have to get the texture object before we can validate the
1141 * other parameters against values in the texture object.
1142 */
1143 struct gl_texture_object *const t = _mesa_lookup_texture(ctx, texture);
1144 if (texture == 0 || t == NULL) {
1145 _mesa_error(ctx, GL_INVALID_VALUE, "%s(texture)", name);
1146 return NULL;
1147 }
1148
1149 /* The GL_ARB_invalidate_subdata spec says:
1150 *
1151 * "If <level> is less than zero or greater than the base 2 logarithm
1152 * of the maximum texture width, height, or depth, the error
1153 * INVALID_VALUE is generated."
1154 */
1155 if (level < 0 || level > t->MaxLevel) {
1156 _mesa_error(ctx, GL_INVALID_VALUE, "%s(level)", name);
1157 return NULL;
1158 }
1159
1160 /* The GL_ARB_invalidate_subdata spec says:
1161 *
1162 * "If the target of <texture> is TEXTURE_RECTANGLE, TEXTURE_BUFFER,
1163 * TEXTURE_2D_MULTISAMPLE, or TEXTURE_2D_MULTISAMPLE_ARRAY, and <level>
1164 * is not zero, the error INVALID_VALUE is generated."
1165 */
1166 if (level != 0) {
1167 switch (t->Target) {
1168 case GL_TEXTURE_RECTANGLE:
1169 case GL_TEXTURE_BUFFER:
1170 case GL_TEXTURE_2D_MULTISAMPLE:
1171 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
1172 _mesa_error(ctx, GL_INVALID_VALUE, "%s(level)", name);
1173 return NULL;
1174
1175 default:
1176 break;
1177 }
1178 }
1179
1180 return t;
1181 }
1182
1183
1184 /**
1185 * Helper function for glCreateTextures and glGenTextures. Need this because
1186 * glCreateTextures should throw errors if target = 0. This is not exposed to
1187 * the rest of Mesa to encourage Mesa internals to use nameless textures,
1188 * which do not require expensive hash lookups.
1189 * \param target either 0 or a valid / error-checked texture target enum
1190 */
1191 static void
1192 create_textures(struct gl_context *ctx, GLenum target,
1193 GLsizei n, GLuint *textures, const char *caller)
1194 {
1195 GLuint first;
1196 GLint i;
1197
1198 if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
1199 _mesa_debug(ctx, "%s %d\n", caller, n);
1200
1201 if (n < 0) {
1202 _mesa_error(ctx, GL_INVALID_VALUE, "%s(n < 0)", caller);
1203 return;
1204 }
1205
1206 if (!textures)
1207 return;
1208
1209 /*
1210 * This must be atomic (generation and allocation of texture IDs)
1211 */
1212 _mesa_HashLockMutex(ctx->Shared->TexObjects);
1213
1214 first = _mesa_HashFindFreeKeyBlock(ctx->Shared->TexObjects, n);
1215
1216 /* Allocate new, empty texture objects */
1217 for (i = 0; i < n; i++) {
1218 struct gl_texture_object *texObj;
1219 GLuint name = first + i;
1220 texObj = ctx->Driver.NewTextureObject(ctx, name, target);
1221 if (!texObj) {
1222 _mesa_HashUnlockMutex(ctx->Shared->TexObjects);
1223 _mesa_error(ctx, GL_OUT_OF_MEMORY, "gl%sTextures", caller);
1224 return;
1225 }
1226
1227 /* insert into hash table */
1228 _mesa_HashInsertLocked(ctx->Shared->TexObjects, texObj->Name, texObj);
1229
1230 textures[i] = name;
1231 }
1232
1233 _mesa_HashUnlockMutex(ctx->Shared->TexObjects);
1234 }
1235
1236 /*@}*/
1237
1238
1239 /***********************************************************************/
1240 /** \name API functions */
1241 /*@{*/
1242
1243
1244 /**
1245 * Generate texture names.
1246 *
1247 * \param n number of texture names to be generated.
1248 * \param textures an array in which will hold the generated texture names.
1249 *
1250 * \sa glGenTextures(), glCreateTextures().
1251 *
1252 * Calls _mesa_HashFindFreeKeyBlock() to find a block of free texture
1253 * IDs which are stored in \p textures. Corresponding empty texture
1254 * objects are also generated.
1255 */
1256 void GLAPIENTRY
1257 _mesa_GenTextures(GLsizei n, GLuint *textures)
1258 {
1259 GET_CURRENT_CONTEXT(ctx);
1260 create_textures(ctx, 0, n, textures, "glGenTextures");
1261 }
1262
1263 /**
1264 * Create texture objects.
1265 *
1266 * \param target the texture target for each name to be generated.
1267 * \param n number of texture names to be generated.
1268 * \param textures an array in which will hold the generated texture names.
1269 *
1270 * \sa glCreateTextures(), glGenTextures().
1271 *
1272 * Calls _mesa_HashFindFreeKeyBlock() to find a block of free texture
1273 * IDs which are stored in \p textures. Corresponding empty texture
1274 * objects are also generated.
1275 */
1276 void GLAPIENTRY
1277 _mesa_CreateTextures(GLenum target, GLsizei n, GLuint *textures)
1278 {
1279 GLint targetIndex;
1280 GET_CURRENT_CONTEXT(ctx);
1281
1282 /*
1283 * The 4.5 core profile spec (30.10.2014) doesn't specify what
1284 * glCreateTextures should do with invalid targets, which was probably an
1285 * oversight. This conforms to the spec for glBindTexture.
1286 */
1287 targetIndex = _mesa_tex_target_to_index(ctx, target);
1288 if (targetIndex < 0) {
1289 _mesa_error(ctx, GL_INVALID_ENUM, "glCreateTextures(target)");
1290 return;
1291 }
1292
1293 create_textures(ctx, target, n, textures, "glCreateTextures");
1294 }
1295
1296 /**
1297 * Check if the given texture object is bound to the current draw or
1298 * read framebuffer. If so, Unbind it.
1299 */
1300 static void
1301 unbind_texobj_from_fbo(struct gl_context *ctx,
1302 struct gl_texture_object *texObj)
1303 {
1304 bool progress = false;
1305
1306 /* Section 4.4.2 (Attaching Images to Framebuffer Objects), subsection
1307 * "Attaching Texture Images to a Framebuffer," of the OpenGL 3.1 spec
1308 * says:
1309 *
1310 * "If a texture object is deleted while its image is attached to one
1311 * or more attachment points in the currently bound framebuffer, then
1312 * it is as if FramebufferTexture* had been called, with a texture of
1313 * zero, for each attachment point to which this image was attached in
1314 * the currently bound framebuffer. In other words, this texture image
1315 * is first detached from all attachment points in the currently bound
1316 * framebuffer. Note that the texture image is specifically not
1317 * detached from any other framebuffer objects. Detaching the texture
1318 * image from any other framebuffer objects is the responsibility of
1319 * the application."
1320 */
1321 if (_mesa_is_user_fbo(ctx->DrawBuffer)) {
1322 progress = _mesa_detach_renderbuffer(ctx, ctx->DrawBuffer, texObj);
1323 }
1324 if (_mesa_is_user_fbo(ctx->ReadBuffer)
1325 && ctx->ReadBuffer != ctx->DrawBuffer) {
1326 progress = _mesa_detach_renderbuffer(ctx, ctx->ReadBuffer, texObj)
1327 || progress;
1328 }
1329
1330 if (progress)
1331 /* Vertices are already flushed by _mesa_DeleteTextures */
1332 ctx->NewState |= _NEW_BUFFERS;
1333 }
1334
1335
1336 /**
1337 * Check if the given texture object is bound to any texture image units and
1338 * unbind it if so (revert to default textures).
1339 */
1340 static void
1341 unbind_texobj_from_texunits(struct gl_context *ctx,
1342 struct gl_texture_object *texObj)
1343 {
1344 const gl_texture_index index = texObj->TargetIndex;
1345 GLuint u;
1346
1347 if (texObj->Target == 0) {
1348 /* texture was never bound */
1349 return;
1350 }
1351
1352 assert(index < NUM_TEXTURE_TARGETS);
1353
1354 for (u = 0; u < ctx->Texture.NumCurrentTexUsed; u++) {
1355 struct gl_texture_unit *unit = &ctx->Texture.Unit[u];
1356
1357 if (texObj == unit->CurrentTex[index]) {
1358 /* Bind the default texture for this unit/target */
1359 _mesa_reference_texobj(&unit->CurrentTex[index],
1360 ctx->Shared->DefaultTex[index]);
1361 unit->_BoundTextures &= ~(1 << index);
1362 }
1363 }
1364 }
1365
1366
1367 /**
1368 * Check if the given texture object is bound to any shader image unit
1369 * and unbind it if that's the case.
1370 */
1371 static void
1372 unbind_texobj_from_image_units(struct gl_context *ctx,
1373 struct gl_texture_object *texObj)
1374 {
1375 GLuint i;
1376
1377 for (i = 0; i < ctx->Const.MaxImageUnits; i++) {
1378 struct gl_image_unit *unit = &ctx->ImageUnits[i];
1379
1380 if (texObj == unit->TexObj) {
1381 _mesa_reference_texobj(&unit->TexObj, NULL);
1382 *unit = _mesa_default_image_unit(ctx);
1383 }
1384 }
1385 }
1386
1387
1388 /**
1389 * Unbinds all textures bound to the given texture image unit.
1390 */
1391 static void
1392 unbind_textures_from_unit(struct gl_context *ctx, GLuint unit)
1393 {
1394 struct gl_texture_unit *texUnit = &ctx->Texture.Unit[unit];
1395
1396 while (texUnit->_BoundTextures) {
1397 const GLuint index = ffs(texUnit->_BoundTextures) - 1;
1398 struct gl_texture_object *texObj = ctx->Shared->DefaultTex[index];
1399
1400 _mesa_reference_texobj(&texUnit->CurrentTex[index], texObj);
1401
1402 /* Pass BindTexture call to device driver */
1403 if (ctx->Driver.BindTexture)
1404 ctx->Driver.BindTexture(ctx, unit, 0, texObj);
1405
1406 texUnit->_BoundTextures &= ~(1 << index);
1407 ctx->NewState |= _NEW_TEXTURE_OBJECT;
1408 }
1409 }
1410
1411
1412 /**
1413 * Delete named textures.
1414 *
1415 * \param n number of textures to be deleted.
1416 * \param textures array of texture IDs to be deleted.
1417 *
1418 * \sa glDeleteTextures().
1419 *
1420 * If we're about to delete a texture that's currently bound to any
1421 * texture unit, unbind the texture first. Decrement the reference
1422 * count on the texture object and delete it if it's zero.
1423 * Recall that texture objects can be shared among several rendering
1424 * contexts.
1425 */
1426 void GLAPIENTRY
1427 _mesa_DeleteTextures( GLsizei n, const GLuint *textures)
1428 {
1429 GET_CURRENT_CONTEXT(ctx);
1430 GLint i;
1431
1432 if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
1433 _mesa_debug(ctx, "glDeleteTextures %d\n", n);
1434
1435 if (n < 0) {
1436 _mesa_error(ctx, GL_INVALID_VALUE, "glDeleteTextures(n < 0)");
1437 return;
1438 }
1439
1440 FLUSH_VERTICES(ctx, 0); /* too complex */
1441
1442 if (n < 0) {
1443 _mesa_error(ctx, GL_INVALID_VALUE, "glDeleteTextures(n)");
1444 return;
1445 }
1446
1447 if (!textures)
1448 return;
1449
1450 for (i = 0; i < n; i++) {
1451 if (textures[i] > 0) {
1452 struct gl_texture_object *delObj
1453 = _mesa_lookup_texture(ctx, textures[i]);
1454
1455 if (delObj) {
1456 _mesa_lock_texture(ctx, delObj);
1457
1458 /* Check if texture is bound to any framebuffer objects.
1459 * If so, unbind.
1460 * See section 4.4.2.3 of GL_EXT_framebuffer_object.
1461 */
1462 unbind_texobj_from_fbo(ctx, delObj);
1463
1464 /* Check if this texture is currently bound to any texture units.
1465 * If so, unbind it.
1466 */
1467 unbind_texobj_from_texunits(ctx, delObj);
1468
1469 /* Check if this texture is currently bound to any shader
1470 * image unit. If so, unbind it.
1471 * See section 3.9.X of GL_ARB_shader_image_load_store.
1472 */
1473 unbind_texobj_from_image_units(ctx, delObj);
1474
1475 /* Make all handles that reference this texture object non-resident
1476 * in the current context.
1477 */
1478 _mesa_make_texture_handles_non_resident(ctx, delObj);
1479
1480 _mesa_unlock_texture(ctx, delObj);
1481
1482 ctx->NewState |= _NEW_TEXTURE_OBJECT;
1483
1484 /* The texture _name_ is now free for re-use.
1485 * Remove it from the hash table now.
1486 */
1487 _mesa_HashRemove(ctx->Shared->TexObjects, delObj->Name);
1488
1489 /* Unreference the texobj. If refcount hits zero, the texture
1490 * will be deleted.
1491 */
1492 _mesa_reference_texobj(&delObj, NULL);
1493 }
1494 }
1495 }
1496 }
1497
1498
1499 /**
1500 * Convert a GL texture target enum such as GL_TEXTURE_2D or GL_TEXTURE_3D
1501 * into the corresponding Mesa texture target index.
1502 * Note that proxy targets are not valid here.
1503 * \return TEXTURE_x_INDEX or -1 if target is invalid
1504 */
1505 int
1506 _mesa_tex_target_to_index(const struct gl_context *ctx, GLenum target)
1507 {
1508 switch (target) {
1509 case GL_TEXTURE_1D:
1510 return _mesa_is_desktop_gl(ctx) ? TEXTURE_1D_INDEX : -1;
1511 case GL_TEXTURE_2D:
1512 return TEXTURE_2D_INDEX;
1513 case GL_TEXTURE_3D:
1514 return ctx->API != API_OPENGLES ? TEXTURE_3D_INDEX : -1;
1515 case GL_TEXTURE_CUBE_MAP:
1516 return ctx->Extensions.ARB_texture_cube_map
1517 ? TEXTURE_CUBE_INDEX : -1;
1518 case GL_TEXTURE_RECTANGLE:
1519 return _mesa_is_desktop_gl(ctx) && ctx->Extensions.NV_texture_rectangle
1520 ? TEXTURE_RECT_INDEX : -1;
1521 case GL_TEXTURE_1D_ARRAY:
1522 return _mesa_is_desktop_gl(ctx) && ctx->Extensions.EXT_texture_array
1523 ? TEXTURE_1D_ARRAY_INDEX : -1;
1524 case GL_TEXTURE_2D_ARRAY:
1525 return (_mesa_is_desktop_gl(ctx) && ctx->Extensions.EXT_texture_array)
1526 || _mesa_is_gles3(ctx)
1527 ? TEXTURE_2D_ARRAY_INDEX : -1;
1528 case GL_TEXTURE_BUFFER:
1529 return (_mesa_has_ARB_texture_buffer_object(ctx) ||
1530 _mesa_has_OES_texture_buffer(ctx)) ?
1531 TEXTURE_BUFFER_INDEX : -1;
1532 case GL_TEXTURE_EXTERNAL_OES:
1533 return _mesa_is_gles(ctx) && ctx->Extensions.OES_EGL_image_external
1534 ? TEXTURE_EXTERNAL_INDEX : -1;
1535 case GL_TEXTURE_CUBE_MAP_ARRAY:
1536 return _mesa_has_texture_cube_map_array(ctx)
1537 ? TEXTURE_CUBE_ARRAY_INDEX : -1;
1538 case GL_TEXTURE_2D_MULTISAMPLE:
1539 return ((_mesa_is_desktop_gl(ctx) && ctx->Extensions.ARB_texture_multisample) ||
1540 _mesa_is_gles31(ctx)) ? TEXTURE_2D_MULTISAMPLE_INDEX: -1;
1541 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
1542 return ((_mesa_is_desktop_gl(ctx) && ctx->Extensions.ARB_texture_multisample) ||
1543 _mesa_is_gles31(ctx))
1544 ? TEXTURE_2D_MULTISAMPLE_ARRAY_INDEX: -1;
1545 default:
1546 return -1;
1547 }
1548 }
1549
1550
1551 /**
1552 * Do actual texture binding. All error checking should have been done prior
1553 * to calling this function. Note that the texture target (1D, 2D, etc) is
1554 * always specified by the texObj->TargetIndex.
1555 *
1556 * \param unit index of texture unit to update
1557 * \param texObj the new texture object (cannot be NULL)
1558 */
1559 static void
1560 bind_texture(struct gl_context *ctx,
1561 unsigned unit,
1562 struct gl_texture_object *texObj)
1563 {
1564 struct gl_texture_unit *texUnit;
1565 int targetIndex;
1566
1567 assert(unit < ARRAY_SIZE(ctx->Texture.Unit));
1568 texUnit = &ctx->Texture.Unit[unit];
1569
1570 assert(texObj);
1571 assert(valid_texture_object(texObj));
1572
1573 targetIndex = texObj->TargetIndex;
1574 assert(targetIndex >= 0);
1575 assert(targetIndex < NUM_TEXTURE_TARGETS);
1576
1577 /* Check if this texture is only used by this context and is already bound.
1578 * If so, just return. For GL_OES_image_external, rebinding the texture
1579 * always must invalidate cached resources.
1580 */
1581 if (targetIndex != TEXTURE_EXTERNAL_INDEX) {
1582 bool early_out;
1583 mtx_lock(&ctx->Shared->Mutex);
1584 early_out = ((ctx->Shared->RefCount == 1)
1585 && (texObj == texUnit->CurrentTex[targetIndex]));
1586 mtx_unlock(&ctx->Shared->Mutex);
1587 if (early_out) {
1588 return;
1589 }
1590 }
1591
1592 /* flush before changing binding */
1593 FLUSH_VERTICES(ctx, _NEW_TEXTURE_OBJECT);
1594
1595 /* If the refcount on the previously bound texture is decremented to
1596 * zero, it'll be deleted here.
1597 */
1598 _mesa_reference_texobj(&texUnit->CurrentTex[targetIndex], texObj);
1599
1600 ctx->Texture.NumCurrentTexUsed = MAX2(ctx->Texture.NumCurrentTexUsed,
1601 unit + 1);
1602
1603 if (texObj->Name != 0)
1604 texUnit->_BoundTextures |= (1 << targetIndex);
1605 else
1606 texUnit->_BoundTextures &= ~(1 << targetIndex);
1607
1608 /* Pass BindTexture call to device driver */
1609 if (ctx->Driver.BindTexture) {
1610 ctx->Driver.BindTexture(ctx, unit, texObj->Target, texObj);
1611 }
1612 }
1613
1614
1615 /**
1616 * Implement glBindTexture(). Do error checking, look-up or create a new
1617 * texture object, then bind it in the current texture unit.
1618 *
1619 * \param target texture target.
1620 * \param texName texture name.
1621 */
1622 void GLAPIENTRY
1623 _mesa_BindTexture( GLenum target, GLuint texName )
1624 {
1625 GET_CURRENT_CONTEXT(ctx);
1626 struct gl_texture_object *newTexObj = NULL;
1627
1628 if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
1629 _mesa_debug(ctx, "glBindTexture %s %d\n",
1630 _mesa_enum_to_string(target), (GLint) texName);
1631
1632 int targetIndex = _mesa_tex_target_to_index(ctx, target);
1633 if (targetIndex < 0) {
1634 _mesa_error(ctx, GL_INVALID_ENUM, "glBindTexture(target = %s)",
1635 _mesa_enum_to_string(target));
1636 return;
1637 }
1638 assert(targetIndex < NUM_TEXTURE_TARGETS);
1639
1640 /*
1641 * Get pointer to new texture object (newTexObj)
1642 */
1643 if (texName == 0) {
1644 /* Use a default texture object */
1645 newTexObj = ctx->Shared->DefaultTex[targetIndex];
1646 }
1647 else {
1648 /* non-default texture object */
1649 newTexObj = _mesa_lookup_texture(ctx, texName);
1650 if (newTexObj) {
1651 /* error checking */
1652 if (newTexObj->Target != 0 && newTexObj->Target != target) {
1653 /* The named texture object's target doesn't match the
1654 * given target
1655 */
1656 _mesa_error( ctx, GL_INVALID_OPERATION,
1657 "glBindTexture(target mismatch)" );
1658 return;
1659 }
1660 if (newTexObj->Target == 0) {
1661 finish_texture_init(ctx, target, newTexObj, targetIndex);
1662 }
1663 }
1664 else {
1665 if (ctx->API == API_OPENGL_CORE) {
1666 _mesa_error(ctx, GL_INVALID_OPERATION,
1667 "glBindTexture(non-gen name)");
1668 return;
1669 }
1670
1671 /* if this is a new texture id, allocate a texture object now */
1672 newTexObj = ctx->Driver.NewTextureObject(ctx, texName, target);
1673 if (!newTexObj) {
1674 _mesa_error(ctx, GL_OUT_OF_MEMORY, "glBindTexture");
1675 return;
1676 }
1677
1678 /* and insert it into hash table */
1679 _mesa_HashInsert(ctx->Shared->TexObjects, texName, newTexObj);
1680 }
1681 }
1682
1683 assert(newTexObj->Target == target);
1684 assert(newTexObj->TargetIndex == targetIndex);
1685
1686 bind_texture(ctx, ctx->Texture.CurrentUnit, newTexObj);
1687 }
1688
1689
1690 /**
1691 * OpenGL 4.5 / GL_ARB_direct_state_access glBindTextureUnit().
1692 *
1693 * \param unit texture unit.
1694 * \param texture texture name.
1695 *
1696 * \sa glBindTexture().
1697 *
1698 * If the named texture is 0, this will reset each target for the specified
1699 * texture unit to its default texture.
1700 * If the named texture is not 0 or a recognized texture name, this throws
1701 * GL_INVALID_OPERATION.
1702 */
1703 void GLAPIENTRY
1704 _mesa_BindTextureUnit(GLuint unit, GLuint texture)
1705 {
1706 GET_CURRENT_CONTEXT(ctx);
1707 struct gl_texture_object *texObj;
1708
1709 if (unit >= _mesa_max_tex_unit(ctx)) {
1710 _mesa_error(ctx, GL_INVALID_VALUE, "glBindTextureUnit(unit=%u)", unit);
1711 return;
1712 }
1713
1714 if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
1715 _mesa_debug(ctx, "glBindTextureUnit %s %d\n",
1716 _mesa_enum_to_string(GL_TEXTURE0+unit), (GLint) texture);
1717
1718 /* Section 8.1 (Texture Objects) of the OpenGL 4.5 core profile spec
1719 * (20141030) says:
1720 * "When texture is zero, each of the targets enumerated at the
1721 * beginning of this section is reset to its default texture for the
1722 * corresponding texture image unit."
1723 */
1724 if (texture == 0) {
1725 unbind_textures_from_unit(ctx, unit);
1726 return;
1727 }
1728
1729 /* Get the non-default texture object */
1730 texObj = _mesa_lookup_texture(ctx, texture);
1731
1732 /* Error checking */
1733 if (!texObj) {
1734 _mesa_error(ctx, GL_INVALID_OPERATION,
1735 "glBindTextureUnit(non-gen name)");
1736 return;
1737 }
1738 if (texObj->Target == 0) {
1739 /* Texture object was gen'd but never bound so the target is not set */
1740 _mesa_error(ctx, GL_INVALID_OPERATION, "glBindTextureUnit(target)");
1741 return;
1742 }
1743 assert(valid_texture_object(texObj));
1744
1745 bind_texture(ctx, unit, texObj);
1746 }
1747
1748
1749 /**
1750 * OpenGL 4.4 / GL_ARB_multi_bind glBindTextures().
1751 */
1752 void GLAPIENTRY
1753 _mesa_BindTextures(GLuint first, GLsizei count, const GLuint *textures)
1754 {
1755 GET_CURRENT_CONTEXT(ctx);
1756 GLint i;
1757
1758 /* The ARB_multi_bind spec says:
1759 *
1760 * "An INVALID_OPERATION error is generated if <first> + <count>
1761 * is greater than the number of texture image units supported
1762 * by the implementation."
1763 */
1764 if (first + count > ctx->Const.MaxCombinedTextureImageUnits) {
1765 _mesa_error(ctx, GL_INVALID_OPERATION,
1766 "glBindTextures(first=%u + count=%d > the value of "
1767 "GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS=%u)",
1768 first, count, ctx->Const.MaxCombinedTextureImageUnits);
1769 return;
1770 }
1771
1772 if (textures) {
1773 /* Note that the error semantics for multi-bind commands differ from
1774 * those of other GL commands.
1775 *
1776 * The issues section in the ARB_multi_bind spec says:
1777 *
1778 * "(11) Typically, OpenGL specifies that if an error is generated by
1779 * a command, that command has no effect. This is somewhat
1780 * unfortunate for multi-bind commands, because it would require
1781 * a first pass to scan the entire list of bound objects for
1782 * errors and then a second pass to actually perform the
1783 * bindings. Should we have different error semantics?
1784 *
1785 * RESOLVED: Yes. In this specification, when the parameters for
1786 * one of the <count> binding points are invalid, that binding
1787 * point is not updated and an error will be generated. However,
1788 * other binding points in the same command will be updated if
1789 * their parameters are valid and no other error occurs."
1790 */
1791
1792 _mesa_HashLockMutex(ctx->Shared->TexObjects);
1793
1794 for (i = 0; i < count; i++) {
1795 if (textures[i] != 0) {
1796 struct gl_texture_unit *texUnit = &ctx->Texture.Unit[first + i];
1797 struct gl_texture_object *current = texUnit->_Current;
1798 struct gl_texture_object *texObj;
1799
1800 if (current && current->Name == textures[i])
1801 texObj = current;
1802 else
1803 texObj = _mesa_lookup_texture_locked(ctx, textures[i]);
1804
1805 if (texObj && texObj->Target != 0) {
1806 bind_texture(ctx, first + i, texObj);
1807 } else {
1808 /* The ARB_multi_bind spec says:
1809 *
1810 * "An INVALID_OPERATION error is generated if any value
1811 * in <textures> is not zero or the name of an existing
1812 * texture object (per binding)."
1813 */
1814 _mesa_error(ctx, GL_INVALID_OPERATION,
1815 "glBindTextures(textures[%d]=%u is not zero "
1816 "or the name of an existing texture object)",
1817 i, textures[i]);
1818 }
1819 } else {
1820 unbind_textures_from_unit(ctx, first + i);
1821 }
1822 }
1823
1824 _mesa_HashUnlockMutex(ctx->Shared->TexObjects);
1825 } else {
1826 /* Unbind all textures in the range <first> through <first>+<count>-1 */
1827 for (i = 0; i < count; i++)
1828 unbind_textures_from_unit(ctx, first + i);
1829 }
1830 }
1831
1832
1833 /**
1834 * Set texture priorities.
1835 *
1836 * \param n number of textures.
1837 * \param texName texture names.
1838 * \param priorities corresponding texture priorities.
1839 *
1840 * \sa glPrioritizeTextures().
1841 *
1842 * Looks up each texture in the hash, clamps the corresponding priority between
1843 * 0.0 and 1.0, and calls dd_function_table::PrioritizeTexture.
1844 */
1845 void GLAPIENTRY
1846 _mesa_PrioritizeTextures( GLsizei n, const GLuint *texName,
1847 const GLclampf *priorities )
1848 {
1849 GET_CURRENT_CONTEXT(ctx);
1850 GLint i;
1851
1852 if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
1853 _mesa_debug(ctx, "glPrioritizeTextures %d\n", n);
1854
1855 FLUSH_VERTICES(ctx, 0);
1856
1857 if (n < 0) {
1858 _mesa_error( ctx, GL_INVALID_VALUE, "glPrioritizeTextures" );
1859 return;
1860 }
1861
1862 if (!priorities)
1863 return;
1864
1865 for (i = 0; i < n; i++) {
1866 if (texName[i] > 0) {
1867 struct gl_texture_object *t = _mesa_lookup_texture(ctx, texName[i]);
1868 if (t) {
1869 t->Priority = CLAMP( priorities[i], 0.0F, 1.0F );
1870 }
1871 }
1872 }
1873
1874 ctx->NewState |= _NEW_TEXTURE_OBJECT;
1875 }
1876
1877
1878
1879 /**
1880 * See if textures are loaded in texture memory.
1881 *
1882 * \param n number of textures to query.
1883 * \param texName array with the texture names.
1884 * \param residences array which will hold the residence status.
1885 *
1886 * \return GL_TRUE if all textures are resident and
1887 * residences is left unchanged,
1888 *
1889 * Note: we assume all textures are always resident
1890 */
1891 GLboolean GLAPIENTRY
1892 _mesa_AreTexturesResident(GLsizei n, const GLuint *texName,
1893 GLboolean *residences)
1894 {
1895 GET_CURRENT_CONTEXT(ctx);
1896 GLboolean allResident = GL_TRUE;
1897 GLint i;
1898 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
1899
1900 if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
1901 _mesa_debug(ctx, "glAreTexturesResident %d\n", n);
1902
1903 if (n < 0) {
1904 _mesa_error(ctx, GL_INVALID_VALUE, "glAreTexturesResident(n)");
1905 return GL_FALSE;
1906 }
1907
1908 if (!texName || !residences)
1909 return GL_FALSE;
1910
1911 /* We only do error checking on the texture names */
1912 for (i = 0; i < n; i++) {
1913 struct gl_texture_object *t;
1914 if (texName[i] == 0) {
1915 _mesa_error(ctx, GL_INVALID_VALUE, "glAreTexturesResident");
1916 return GL_FALSE;
1917 }
1918 t = _mesa_lookup_texture(ctx, texName[i]);
1919 if (!t) {
1920 _mesa_error(ctx, GL_INVALID_VALUE, "glAreTexturesResident");
1921 return GL_FALSE;
1922 }
1923 }
1924
1925 return allResident;
1926 }
1927
1928
1929 /**
1930 * See if a name corresponds to a texture.
1931 *
1932 * \param texture texture name.
1933 *
1934 * \return GL_TRUE if texture name corresponds to a texture, or GL_FALSE
1935 * otherwise.
1936 *
1937 * \sa glIsTexture().
1938 *
1939 * Calls _mesa_HashLookup().
1940 */
1941 GLboolean GLAPIENTRY
1942 _mesa_IsTexture( GLuint texture )
1943 {
1944 struct gl_texture_object *t;
1945 GET_CURRENT_CONTEXT(ctx);
1946 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, GL_FALSE);
1947
1948 if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
1949 _mesa_debug(ctx, "glIsTexture %d\n", texture);
1950
1951 if (!texture)
1952 return GL_FALSE;
1953
1954 t = _mesa_lookup_texture(ctx, texture);
1955
1956 /* IsTexture is true only after object has been bound once. */
1957 return t && t->Target;
1958 }
1959
1960
1961 /**
1962 * Simplest implementation of texture locking: grab the shared tex
1963 * mutex. Examine the shared context state timestamp and if there has
1964 * been a change, set the appropriate bits in ctx->NewState.
1965 *
1966 * This is used to deal with synchronizing things when a texture object
1967 * is used/modified by different contexts (or threads) which are sharing
1968 * the texture.
1969 *
1970 * See also _mesa_lock/unlock_texture() in teximage.h
1971 */
1972 void
1973 _mesa_lock_context_textures( struct gl_context *ctx )
1974 {
1975 mtx_lock(&ctx->Shared->TexMutex);
1976
1977 if (ctx->Shared->TextureStateStamp != ctx->TextureStateTimestamp) {
1978 ctx->NewState |= _NEW_TEXTURE_OBJECT;
1979 ctx->TextureStateTimestamp = ctx->Shared->TextureStateStamp;
1980 }
1981 }
1982
1983
1984 void
1985 _mesa_unlock_context_textures( struct gl_context *ctx )
1986 {
1987 assert(ctx->Shared->TextureStateStamp == ctx->TextureStateTimestamp);
1988 mtx_unlock(&ctx->Shared->TexMutex);
1989 }
1990
1991
1992 void GLAPIENTRY
1993 _mesa_InvalidateTexSubImage(GLuint texture, GLint level, GLint xoffset,
1994 GLint yoffset, GLint zoffset, GLsizei width,
1995 GLsizei height, GLsizei depth)
1996 {
1997 struct gl_texture_object *t;
1998 struct gl_texture_image *image;
1999 GET_CURRENT_CONTEXT(ctx);
2000
2001 if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
2002 _mesa_debug(ctx, "glInvalidateTexSubImage %d\n", texture);
2003
2004 t = invalidate_tex_image_error_check(ctx, texture, level,
2005 "glInvalidateTexSubImage");
2006
2007 /* The GL_ARB_invalidate_subdata spec says:
2008 *
2009 * "...the specified subregion must be between -<b> and <dim>+<b> where
2010 * <dim> is the size of the dimension of the texture image, and <b> is
2011 * the size of the border of that texture image, otherwise
2012 * INVALID_VALUE is generated (border is not applied to dimensions that
2013 * don't exist in a given texture target)."
2014 */
2015 image = t->Image[0][level];
2016 if (image) {
2017 int xBorder;
2018 int yBorder;
2019 int zBorder;
2020 int imageWidth;
2021 int imageHeight;
2022 int imageDepth;
2023
2024 /* The GL_ARB_invalidate_subdata spec says:
2025 *
2026 * "For texture targets that don't have certain dimensions, this
2027 * command treats those dimensions as having a size of 1. For
2028 * example, to invalidate a portion of a two-dimensional texture,
2029 * the application would use <zoffset> equal to zero and <depth>
2030 * equal to one."
2031 */
2032 switch (t->Target) {
2033 case GL_TEXTURE_BUFFER:
2034 xBorder = 0;
2035 yBorder = 0;
2036 zBorder = 0;
2037 imageWidth = 1;
2038 imageHeight = 1;
2039 imageDepth = 1;
2040 break;
2041 case GL_TEXTURE_1D:
2042 xBorder = image->Border;
2043 yBorder = 0;
2044 zBorder = 0;
2045 imageWidth = image->Width;
2046 imageHeight = 1;
2047 imageDepth = 1;
2048 break;
2049 case GL_TEXTURE_1D_ARRAY:
2050 xBorder = image->Border;
2051 yBorder = 0;
2052 zBorder = 0;
2053 imageWidth = image->Width;
2054 imageHeight = image->Height;
2055 imageDepth = 1;
2056 break;
2057 case GL_TEXTURE_2D:
2058 case GL_TEXTURE_CUBE_MAP:
2059 case GL_TEXTURE_RECTANGLE:
2060 case GL_TEXTURE_2D_MULTISAMPLE:
2061 xBorder = image->Border;
2062 yBorder = image->Border;
2063 zBorder = 0;
2064 imageWidth = image->Width;
2065 imageHeight = image->Height;
2066 imageDepth = 1;
2067 break;
2068 case GL_TEXTURE_2D_ARRAY:
2069 case GL_TEXTURE_CUBE_MAP_ARRAY:
2070 case GL_TEXTURE_2D_MULTISAMPLE_ARRAY:
2071 xBorder = image->Border;
2072 yBorder = image->Border;
2073 zBorder = 0;
2074 imageWidth = image->Width;
2075 imageHeight = image->Height;
2076 imageDepth = image->Depth;
2077 break;
2078 case GL_TEXTURE_3D:
2079 xBorder = image->Border;
2080 yBorder = image->Border;
2081 zBorder = image->Border;
2082 imageWidth = image->Width;
2083 imageHeight = image->Height;
2084 imageDepth = image->Depth;
2085 break;
2086 default:
2087 assert(!"Should not get here.");
2088 xBorder = 0;
2089 yBorder = 0;
2090 zBorder = 0;
2091 imageWidth = 0;
2092 imageHeight = 0;
2093 imageDepth = 0;
2094 break;
2095 }
2096
2097 if (xoffset < -xBorder) {
2098 _mesa_error(ctx, GL_INVALID_VALUE, "glInvalidateSubTexImage(xoffset)");
2099 return;
2100 }
2101
2102 if (xoffset + width > imageWidth + xBorder) {
2103 _mesa_error(ctx, GL_INVALID_VALUE,
2104 "glInvalidateSubTexImage(xoffset+width)");
2105 return;
2106 }
2107
2108 if (yoffset < -yBorder) {
2109 _mesa_error(ctx, GL_INVALID_VALUE, "glInvalidateSubTexImage(yoffset)");
2110 return;
2111 }
2112
2113 if (yoffset + height > imageHeight + yBorder) {
2114 _mesa_error(ctx, GL_INVALID_VALUE,
2115 "glInvalidateSubTexImage(yoffset+height)");
2116 return;
2117 }
2118
2119 if (zoffset < -zBorder) {
2120 _mesa_error(ctx, GL_INVALID_VALUE,
2121 "glInvalidateSubTexImage(zoffset)");
2122 return;
2123 }
2124
2125 if (zoffset + depth > imageDepth + zBorder) {
2126 _mesa_error(ctx, GL_INVALID_VALUE,
2127 "glInvalidateSubTexImage(zoffset+depth)");
2128 return;
2129 }
2130 }
2131
2132 /* We don't actually do anything for this yet. Just return after
2133 * validating the parameters and generating the required errors.
2134 */
2135 return;
2136 }
2137
2138
2139 void GLAPIENTRY
2140 _mesa_InvalidateTexImage(GLuint texture, GLint level)
2141 {
2142 GET_CURRENT_CONTEXT(ctx);
2143
2144 if (MESA_VERBOSE & (VERBOSE_API|VERBOSE_TEXTURE))
2145 _mesa_debug(ctx, "glInvalidateTexImage(%d, %d)\n", texture, level);
2146
2147 invalidate_tex_image_error_check(ctx, texture, level,
2148 "glInvalidateTexImage");
2149
2150 /* We don't actually do anything for this yet. Just return after
2151 * validating the parameters and generating the required errors.
2152 */
2153 return;
2154 }
2155
2156 /*@}*/