From cb5b5163fe5912de3e31665435e0a339dcb78f70 Mon Sep 17 00:00:00 2001 From: Egor Yusov Date: Thu, 15 Mar 2018 22:22:07 -0700 Subject: Added vulkan backend stub --- Graphics/GraphicsEngine/interface/DeviceCaps.h | 3 ++- Graphics/GraphicsEngine/interface/GraphicsTypes.h | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) (limited to 'Graphics/GraphicsEngine') diff --git a/Graphics/GraphicsEngine/interface/DeviceCaps.h b/Graphics/GraphicsEngine/interface/DeviceCaps.h index bca44c1a..46207f66 100644 --- a/Graphics/GraphicsEngine/interface/DeviceCaps.h +++ b/Graphics/GraphicsEngine/interface/DeviceCaps.h @@ -37,7 +37,8 @@ namespace Diligent D3D11, ///< D3D11 device D3D12, ///< D3D12 device OpenGL, ///< OpenGL device - OpenGLES ///< OpenGLES device + OpenGLES, ///< OpenGLES device + Vulkan ///< Vulkan device }; /// Texture sampler capabilities diff --git a/Graphics/GraphicsEngine/interface/GraphicsTypes.h b/Graphics/GraphicsEngine/interface/GraphicsTypes.h index e742f927..85b3e19f 100644 --- a/Graphics/GraphicsEngine/interface/GraphicsTypes.h +++ b/Graphics/GraphicsEngine/interface/GraphicsTypes.h @@ -1001,6 +1001,12 @@ namespace Diligent Uint32 NumCommandsToFlushCmdList = 256; }; + /// Attributes specific to Vulkan engine + struct EngineVkAttribs : public EngineCreationAttribs + { + + }; + /// Box struct Box { -- cgit v1.2.3