From 500d10f295df1f9c43a4a9cb2ed678df9f22be56 Mon Sep 17 00:00:00 2001 From: mklefrancois <38076163+mklefrancois@users.noreply.github.com> Date: Wed, 10 Jun 2020 12:05:35 +0200 Subject: [PATCH] Fixes for Vulkan SDK 1.2.141 --- ray_tracing_animation/hello_vulkan.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ray_tracing_animation/hello_vulkan.cpp b/ray_tracing_animation/hello_vulkan.cpp index 88896d0..5a80c6e 100644 --- a/ray_tracing_animation/hello_vulkan.cpp +++ b/ray_tracing_animation/hello_vulkan.cpp @@ -1016,6 +1016,6 @@ void HelloVulkan::createCompPipelines() nvvk::createShaderStageInfo(m_device, nvh::loadFile("shaders/anim.comp.spv", true, defaultSearchPaths), VK_SHADER_STAGE_COMPUTE_BIT); - m_compPipeline = m_device.createComputePipeline({}, computePipelineCreateInfo, nullptr); + m_compPipeline = m_device.createComputePipeline({}, computePipelineCreateInfo).value; m_device.destroy(computePipelineCreateInfo.stage.module); }