summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineVulkan
diff options
context:
space:
mode:
authorassiduous <assiduous@diligentgraphics.com>2020-11-13 22:22:50 +0000
committerassiduous <assiduous@diligentgraphics.com>2020-11-13 22:22:50 +0000
commitd359125adafd13e80d79267e742a5f599f6fc390 (patch)
treedf44a7384b8cf921cf82225c879c1962c1fd5534 /Graphics/GraphicsEngineVulkan
parentFew updates to support Metal backend (diff)
downloadDiligentCore-d359125adafd13e80d79267e742a5f599f6fc390.tar.gz
DiligentCore-d359125adafd13e80d79267e742a5f599f6fc390.zip
Added comparison operators for LayoutElement and InputLayoutDesc; updated texture test to support Metal.
Diffstat (limited to 'Graphics/GraphicsEngineVulkan')
-rw-r--r--Graphics/GraphicsEngineVulkan/include/BufferVkImpl.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Graphics/GraphicsEngineVulkan/include/BufferVkImpl.hpp b/Graphics/GraphicsEngineVulkan/include/BufferVkImpl.hpp
index 8d1c187d..de95de16 100644
--- a/Graphics/GraphicsEngineVulkan/include/BufferVkImpl.hpp
+++ b/Graphics/GraphicsEngineVulkan/include/BufferVkImpl.hpp
@@ -127,6 +127,8 @@ private:
Uint32 m_DynamicOffsetAlignment = 0;
VkDeviceSize m_BufferMemoryAlignedOffset = 0;
+ // TODO (assiduous): improve cache performance, move dynamic allocations to
+ // device context.
std::vector<VulkanDynamicAllocation, STDAllocatorRawMem<VulkanDynamicAllocation>> m_DynamicAllocations;
VulkanUtilities::BufferWrapper m_VulkanBuffer;