mirror of
https://github.com/lubosz/overte.git
synced 2025-04-05 12:08:45 +02:00
vk/Pipelines: Unpack pipeline result.
The Vulkan C++ API apparently changed.
This commit is contained in:
parent
43bc517042
commit
79a2dbfd34
1 changed files with 2 additions and 1 deletions
|
@ -154,7 +154,8 @@ namespace vks {
|
|||
|
||||
vk::Pipeline create(const vk::PipelineCache& cache) {
|
||||
update();
|
||||
return device.createGraphicsPipeline(cache, pipelineCreateInfo);
|
||||
vk::ResultValue<vk::Pipeline> res = device.createGraphicsPipeline(cache, pipelineCreateInfo);
|
||||
return res.value;
|
||||
}
|
||||
|
||||
vk::Pipeline create() {
|
||||
|
|
Loading…
Reference in a new issue