Home
last modified time | relevance | path

Searched refs:TexObjects (Results 1 – 6 of 6) sorted by relevance

/external/mesa3d/src/mesa/main/
Dshared.c73 shared->TexObjects = _mesa_NewHashTable(); in _mesa_alloc_shared_state()
426 if (shared->TexObjects) { in free_shared_state()
427 _mesa_HashDeleteAll(shared->TexObjects, delete_texture_cb, ctx); in free_shared_state()
428 _mesa_DeleteHashTable(shared->TexObjects); in free_shared_state()
Dtexobj.c110 _mesa_HashLookup(ctx->Shared->TexObjects, id); in _mesa_lookup_texture()
136 _mesa_HashLookupLocked(ctx->Shared->TexObjects, id); in _mesa_lookup_texture_locked()
1113 _mesa_HashWalk(ctx->Shared->TexObjects, count_tex_size, &total); in _mesa_total_texture_memory()
1212 _mesa_HashLockMutex(ctx->Shared->TexObjects); in create_textures()
1214 first = _mesa_HashFindFreeKeyBlock(ctx->Shared->TexObjects, n); in create_textures()
1222 _mesa_HashUnlockMutex(ctx->Shared->TexObjects); in create_textures()
1228 _mesa_HashInsertLocked(ctx->Shared->TexObjects, texObj->Name, texObj); in create_textures()
1233 _mesa_HashUnlockMutex(ctx->Shared->TexObjects); in create_textures()
1503 _mesa_HashRemove(ctx->Shared->TexObjects, delObj->Name); in delete_textures()
1780 _mesa_HashInsert(ctx->Shared->TexObjects, texName, newTexObj); in bind_texture()
[all …]
Dshaderimage.c691 _mesa_HashLockMutex(ctx->Shared->TexObjects); in bind_image_textures()
768 _mesa_HashUnlockMutex(ctx->Shared->TexObjects); in bind_image_textures()
Ddebug.c414 _mesa_HashWalk(ctx->Shared->TexObjects, dump_texture_cb, ctx); in _mesa_dump_textures()
Dmtypes.h3231 struct _mesa_HashTable *TexObjects; /**< Texture objects hash table */ member
/external/mesa3d/src/mesa/state_tracker/
Dst_context.c638 _mesa_HashWalk(ctx->Shared->TexObjects, destroy_tex_sampler_cb, st); in st_destroy_context()