summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineVulkan
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2019-10-24 07:01:54 +0000
committerEgor Yusov <egor.yusov@gmail.com>2019-10-24 07:01:54 +0000
commitab8a0d7f4a8622a5151dc6c077c05fba1cb12643 (patch)
tree8c719d5627a8a66310e09edcc7d3b20b58483ad6 /Graphics/GraphicsEngineVulkan
parentVk backend: optimized PrepareForDraw() by not calling BindDescriptorSetsWithD... (diff)
downloadDiligentCore-ab8a0d7f4a8622a5151dc6c077c05fba1cb12643.tar.gz
DiligentCore-ab8a0d7f4a8622a5151dc6c077c05fba1cb12643.zip
Fixed build issues
Diffstat (limited to 'Graphics/GraphicsEngineVulkan')
-rw-r--r--Graphics/GraphicsEngineVulkan/src/ShaderResourceLayoutVk.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Graphics/GraphicsEngineVulkan/src/ShaderResourceLayoutVk.cpp b/Graphics/GraphicsEngineVulkan/src/ShaderResourceLayoutVk.cpp
index 15d3647a..95f86bcc 100644
--- a/Graphics/GraphicsEngineVulkan/src/ShaderResourceLayoutVk.cpp
+++ b/Graphics/GraphicsEngineVulkan/src/ShaderResourceLayoutVk.cpp
@@ -586,7 +586,7 @@ bool ShaderResourceLayoutVk::VkResource::UpdateCachedResource(ShaderResourceCach
return false;
}
- PreUpdateObject(DstRes.pObject.RawPtr<const ObjectType>(), pObject.RawPtr<const ObjectType>());
+ PreUpdateObject(DstRes.pObject.RawPtr<ObjectType>(), pObject.RawPtr<ObjectType>());
DstRes.pObject.Attach(pObject.Detach());
return true;
}