diff options
| author | assiduous <assiduous@diligentgraphics.com> | 2020-11-06 02:45:33 +0000 |
|---|---|---|
| committer | assiduous <assiduous@diligentgraphics.com> | 2020-11-06 02:45:33 +0000 |
| commit | da9c4e570545d5306a0090662575245c11393a52 (patch) | |
| tree | d1dc1ce3ebaa183c958514809d27ce0d6fa5d826 /Graphics/GraphicsEngineVulkan | |
| parent | A number of minor updates/fixes (diff) | |
| download | DiligentCore-da9c4e570545d5306a0090662575245c11393a52.tar.gz DiligentCore-da9c4e570545d5306a0090662575245c11393a52.zip | |
Fixed gcc/clang compiler issue
Diffstat (limited to 'Graphics/GraphicsEngineVulkan')
| -rw-r--r-- | Graphics/GraphicsEngineVulkan/include/RenderDeviceVkImpl.hpp | 8 |
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 |
