diff --git a/src/Algorithm.cpp b/src/Algorithm.cpp index d5ed0d768..a3ecee004 100644 --- a/src/Algorithm.cpp +++ b/src/Algorithm.cpp @@ -305,7 +305,7 @@ Algorithm::createPipeline() this->mFreePipeline = true; #else vk::Pipeline pipeline = - this->mDevice->createComputePipeline(*this->mPipelineCache, pipelineInfo); + this->mDevice->createComputePipeline(*this->mPipelineCache, pipelineInfo).value; this->mPipeline = std::make_shared(pipeline); this->mFreePipeline = true; #endif