summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineVulkan
diff options
context:
space:
mode:
authorassiduous <assiduous@diligentgraphics.com>2020-11-06 02:45:33 +0000
committerassiduous <assiduous@diligentgraphics.com>2020-11-06 02:45:33 +0000
commitda9c4e570545d5306a0090662575245c11393a52 (patch)
treed1dc1ce3ebaa183c958514809d27ce0d6fa5d826 /Graphics/GraphicsEngineVulkan
parentA number of minor updates/fixes (diff)
downloadDiligentCore-da9c4e570545d5306a0090662575245c11393a52.tar.gz
DiligentCore-da9c4e570545d5306a0090662575245c11393a52.zip
Fixed gcc/clang compiler issue
Diffstat (limited to 'Graphics/GraphicsEngineVulkan')
-rw-r--r--Graphics/GraphicsEngineVulkan/include/RenderDeviceVkImpl.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/Graphics/GraphicsEngineVulkan/include/RenderDeviceVkImpl.hpp b/Graphics/GraphicsEngineVulkan/include/RenderDeviceVkImpl.hpp
index bd95d81b..8680b819 100644
--- a/Graphics/GraphicsEngineVulkan/include/RenderDeviceVkImpl.hpp
+++ b/Graphics/GraphicsEngineVulkan/include/RenderDeviceVkImpl.hpp
@@ -199,10 +199,10 @@ public:
struct Properties
{
- const Uint32 ShaderGroupHandleSize = 0;
- const Uint32 MaxShaderRecordStride = 0;
- const Uint32 ShaderGroupBaseAlignment = 0;
- const Uint32 MaxDrawMeshTasksCount = 0;
+ const Uint32 ShaderGroupHandleSize;
+ const Uint32 MaxShaderRecordStride;
+ const Uint32 ShaderGroupBaseAlignment;
+ const Uint32 MaxDrawMeshTasksCount;
};
const Properties& GetProperties() const