mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-20 07:50:45 +00:00
[vulkan] Use correct name for pipelines
Using the subpass name instead of the pipeline name makes for a confusing mess of duplicated names when subpasses have multiple pipelines.
This commit is contained in:
parent
a9fb1e5720
commit
8ae150cb9e
1 changed files with 1 additions and 1 deletions
|
@ -647,7 +647,7 @@ init_spCreate (uint32_t index, qfv_subpassinfo_t *sub, objstate_t *s)
|
|||
init_plCreate (&s->plc[i], s->spi->base_pipeline, s);
|
||||
}
|
||||
init_plCreate (&s->plc[i], &s->spi->pipelines[i], s);
|
||||
pln[i] = s->spi->name;
|
||||
pln[i] = s->spi->pipelines[i].name;
|
||||
s->inds.num_graph_pipelines++;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue