Home
last modified time | relevance | path

Searched refs:tex_handles (Results 1 – 7 of 7) sorted by relevance

/external/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dnvc0_tex.c562 nvc0->tex_handles[s][i] |= NVE4_TIC_ENTRY_INVALID; in nve4_validate_tic()
585 nvc0->tex_handles[s][i] &= ~NVE4_TIC_ENTRY_INVALID; in nve4_validate_tic()
586 nvc0->tex_handles[s][i] |= tic->id; in nve4_validate_tic()
591 nvc0->tex_handles[s][i] |= NVE4_TIC_ENTRY_INVALID; in nve4_validate_tic()
695 nvc0->tex_handles[s][i] |= NVE4_TSC_ENTRY_INVALID; in nve4_validate_tsc()
709 nvc0->tex_handles[s][i] &= ~NVE4_TSC_ENTRY_INVALID; in nve4_validate_tsc()
710 nvc0->tex_handles[s][i] |= tsc->id << 20; in nve4_validate_tsc()
713 nvc0->tex_handles[s][i] |= NVE4_TSC_ENTRY_INVALID; in nve4_validate_tsc()
784 PUSH_DATA (push, nvc0->tex_handles[s][i]); in nve4_set_tex_handles()
Dnve4_compute.c377 PUSH_DATAp(push, &nvc0->tex_handles[s][i], n); in nve4_compute_set_tex_handles()
964 nvc0->tex_handles[s][i] |= NVE4_TIC_ENTRY_INVALID; in nve4_compute_validate_textures()
994 nvc0->tex_handles[s][i] &= ~NVE4_TIC_ENTRY_INVALID; in nve4_compute_validate_textures()
995 nvc0->tex_handles[s][i] |= tic->id; in nve4_compute_validate_textures()
1000 nvc0->tex_handles[s][i] |= NVE4_TIC_ENTRY_INVALID; in nve4_compute_validate_textures()
Dnvc0_context.c485 memset(nvc0->tex_handles, ~0, sizeof(nvc0->tex_handles)); in nvc0_create()
Dnvc0_context.h234 uint32_t tex_handles[6][PIPE_MAX_SAMPLERS]; /* for nve4 */ member
/external/mesa3d/src/gallium/drivers/radeonsi/
Dsi_descriptors.c2289 if (!_mesa_hash_table_insert(sctx->tex_handles, (void *)(uintptr_t)handle, tex_handle)) { in si_create_texture_handle()
2307 entry = _mesa_hash_table_search(sctx->tex_handles, (void *)(uintptr_t)handle); in si_delete_texture_handle()
2317 _mesa_hash_table_remove(sctx->tex_handles, entry); in si_delete_texture_handle()
2329 entry = _mesa_hash_table_search(sctx->tex_handles, (void *)(uintptr_t)handle); in si_make_texture_handle_resident()
Dsi_pipe.c318 _mesa_hash_table_destroy(sctx->tex_handles, NULL); in si_destroy_context()
701 sctx->tex_handles = _mesa_hash_table_create(NULL, _mesa_hash_pointer, _mesa_key_pointer_equal); in si_create_context()
Dsi_pipe.h1183 struct hash_table *tex_handles; member