Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/zink/
Dzink_program.c290 struct pipeline_cache_entry *pc_entry = entry->data; in zink_destroy_gfx_program() local
292 vkDestroyPipeline(screen->dev, pc_entry->pipeline, NULL); in zink_destroy_gfx_program()
293 free(pc_entry); in zink_destroy_gfx_program()
378 struct pipeline_cache_entry *pc_entry = CALLOC_STRUCT(pipeline_cache_entry); in zink_get_gfx_pipeline() local
379 if (!pc_entry) in zink_get_gfx_pipeline()
382 memcpy(&pc_entry->state, state, sizeof(*state)); in zink_get_gfx_pipeline()
383 pc_entry->pipeline = pipeline; in zink_get_gfx_pipeline()
386 … entry = _mesa_hash_table_insert_pre_hashed(prog->pipelines[vkmode], state->hash, state, pc_entry); in zink_get_gfx_pipeline()