Home
last modified time | relevance | path

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

/third_party/mesa3d/src/gallium/drivers/zink/
Dzink_program.c587 struct gfx_pipeline_cache_entry *pc_entry = entry->data; in zink_destroy_gfx_program() local
589 VKSCR(DestroyPipeline)(screen->dev, pc_entry->pipeline, NULL); in zink_destroy_gfx_program()
590 free(pc_entry); in zink_destroy_gfx_program()
611 struct compute_pipeline_cache_entry *pc_entry = entry->data; in zink_destroy_compute_program() local
613 VKSCR(DestroyPipeline)(screen->dev, pc_entry->pipeline, NULL); in zink_destroy_compute_program()
614 free(pc_entry); in zink_destroy_compute_program()
709 struct gfx_pipeline_cache_entry *pc_entry = CALLOC_STRUCT(gfx_pipeline_cache_entry); in zink_get_gfx_pipeline() local
710 if (!pc_entry) in zink_get_gfx_pipeline()
713 memcpy(&pc_entry->state, state, sizeof(*state)); in zink_get_gfx_pipeline()
714 pc_entry->pipeline = pipeline; in zink_get_gfx_pipeline()
[all …]