Searched refs:TexObjects (Results 1 – 8 of 8) sorted by relevance
/third_party/mesa3d/src/mesa/main/ |
D | shared.c | 74 shared->TexObjects = _mesa_NewHashTable(); in _mesa_alloc_shared_state() 440 if (shared->TexObjects) { in free_shared_state() 441 _mesa_HashDeleteAll(shared->TexObjects, delete_texture_cb, ctx); in free_shared_state() 442 _mesa_DeleteHashTable(shared->TexObjects); in free_shared_state()
|
D | texobj.c | 113 _mesa_HashLookup(ctx->Shared->TexObjects, id); in _mesa_lookup_texture() 139 _mesa_HashLookupLocked(ctx->Shared->TexObjects, id); in _mesa_lookup_texture_locked() 1091 _mesa_HashWalk(ctx->Shared->TexObjects, count_tex_size, &total); in _mesa_total_texture_memory() 1189 _mesa_HashLockMutex(ctx->Shared->TexObjects); in create_textures() 1191 _mesa_HashFindFreeKeys(ctx->Shared->TexObjects, textures, n); in create_textures() 1198 _mesa_HashUnlockMutex(ctx->Shared->TexObjects); in create_textures() 1204 _mesa_HashInsertLocked(ctx->Shared->TexObjects, texObj->Name, texObj, true); in create_textures() 1207 _mesa_HashUnlockMutex(ctx->Shared->TexObjects); in create_textures() 1479 _mesa_HashRemove(ctx->Shared->TexObjects, delObj->Name); in delete_textures() 1767 _mesa_HashInsert(ctx->Shared->TexObjects, texName, newTexObj, false); in _mesa_lookup_or_create_texture() [all …]
|
D | shaderimage.c | 711 _mesa_HashLockMutex(ctx->Shared->TexObjects); in bind_image_textures() 788 _mesa_HashUnlockMutex(ctx->Shared->TexObjects); in bind_image_textures()
|
D | debug.c | 412 _mesa_HashWalk(ctx->Shared->TexObjects, dump_texture_cb, ctx); in _mesa_dump_textures()
|
D | mtypes.h | 3375 struct _mesa_HashTable *TexObjects; /**< Texture objects hash table */ member
|
D | teximage.c | 2954 _mesa_HashInsert(ctx->Shared->TexObjects, texObj->Name, texObj, isGenName); in lookup_texture_ext_dsa()
|
/third_party/mesa3d/src/mesa/state_tracker/ |
D | st_context.c | 854 _mesa_HashEnableNameReuse(ctx->Shared->TexObjects); in st_create_context_priv() 1140 _mesa_HashWalk(ctx->Shared->TexObjects, destroy_tex_sampler_cb, st); in st_destroy_context()
|
/third_party/mesa3d/docs/relnotes/ |
D | 20.2.0.rst | 1312 - st/mesa: Clear texture's views when texture is removed from Shared->TexObjects
|