Searched refs:TexObjects (Results 1 – 8 of 8) sorted by relevance
/third_party/mesa3d/src/mesa/main/ |
D | shared.c | 76 shared->TexObjects = _mesa_NewHashTable(); in _mesa_alloc_shared_state() 442 if (shared->TexObjects) { in free_shared_state() 443 _mesa_HashDeleteAll(shared->TexObjects, delete_texture_cb, ctx); in free_shared_state() 444 _mesa_DeleteHashTable(shared->TexObjects); in free_shared_state()
|
D | texobj.c | 120 _mesa_HashLookup(ctx->Shared->TexObjects, id); in _mesa_lookup_texture() 146 _mesa_HashLookupLocked(ctx->Shared->TexObjects, id); in _mesa_lookup_texture_locked() 1104 _mesa_HashWalk(ctx->Shared->TexObjects, count_tex_size, &total); in _mesa_total_texture_memory() 1202 _mesa_HashLockMutex(ctx->Shared->TexObjects); in create_textures() 1204 _mesa_HashFindFreeKeys(ctx->Shared->TexObjects, textures, n); in create_textures() 1211 _mesa_HashUnlockMutex(ctx->Shared->TexObjects); in create_textures() 1217 _mesa_HashInsertLocked(ctx->Shared->TexObjects, texObj->Name, texObj, true); in create_textures() 1220 _mesa_HashUnlockMutex(ctx->Shared->TexObjects); in create_textures() 1488 _mesa_HashRemove(ctx->Shared->TexObjects, delObj->Name); in delete_textures() 1714 _mesa_HashInsert(ctx->Shared->TexObjects, texName, newTexObj, false); in _mesa_lookup_or_create_texture() [all …]
|
D | shaderimage.c | 714 _mesa_HashLockMutex(ctx->Shared->TexObjects); in bind_image_textures() 791 _mesa_HashUnlockMutex(ctx->Shared->TexObjects); in bind_image_textures()
|
D | debug.c | 415 _mesa_HashWalk(ctx->Shared->TexObjects, dump_texture_cb, ctx); in _mesa_dump_textures()
|
D | mtypes.h | 2431 struct _mesa_HashTable *TexObjects; /**< Texture objects hash table */ member
|
D | teximage.c | 2946 _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 | 745 _mesa_HashEnableNameReuse(ctx->Shared->TexObjects); in st_create_context_priv() 942 _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
|