diff options
| author | assiduous <assiduous@diligentgraphics.com> | 2019-12-28 05:13:26 +0000 |
|---|---|---|
| committer | assiduous <assiduous@diligentgraphics.com> | 2019-12-28 05:13:26 +0000 |
| commit | 9ead3562fb06c14098b7885cc7c736ea4bbc292c (patch) | |
| tree | f1518a3383204ea2d72f6cb3e372dacdbff553a2 /Graphics/GraphicsEngineVulkan | |
| parent | Fixed minor issue with draw command test (diff) | |
| download | DiligentCore-9ead3562fb06c14098b7885cc7c736ea4bbc292c.tar.gz DiligentCore-9ead3562fb06c14098b7885cc7c736ea4bbc292c.zip | |
Added AdapterType member to DeviceCaps struct (API Version 240048)
Diffstat (limited to 'Graphics/GraphicsEngineVulkan')
| -rw-r--r-- | Graphics/GraphicsEngineVulkan/src/RenderDeviceVkImpl.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Graphics/GraphicsEngineVulkan/src/RenderDeviceVkImpl.cpp b/Graphics/GraphicsEngineVulkan/src/RenderDeviceVkImpl.cpp index 35f2b1ad..13c3775d 100644 --- a/Graphics/GraphicsEngineVulkan/src/RenderDeviceVkImpl.cpp +++ b/Graphics/GraphicsEngineVulkan/src/RenderDeviceVkImpl.cpp @@ -144,6 +144,7 @@ RenderDeviceVkImpl::RenderDeviceVkImpl(IReferenceCounters* m_DeviceCaps.DevType = DeviceType::Vulkan; m_DeviceCaps.MajorVersion = 1; m_DeviceCaps.MinorVersion = 0; + m_DeviceCaps.AdaterType = ADAPTER_TYPE_HARDWARE; m_DeviceCaps.bSeparableProgramSupported = True; m_DeviceCaps.bMultithreadedResourceCreationSupported = True; for (Uint32 fmt = 1; fmt < m_TextureFormatsInfo.size(); ++fmt) |
