[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:
Bill Currie 2023-07-21 12:37:04 +09:00
parent a9fb1e5720
commit 8ae150cb9e

View file

@ -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++;
}