diff options
| author | assiduous <assiduous@diligentgraphics.com> | 2020-01-28 17:22:17 +0000 |
|---|---|---|
| committer | assiduous <assiduous@diligentgraphics.com> | 2020-01-28 17:22:17 +0000 |
| commit | ff5cbaa7be4411abf6fc6d77f8520bcb40a72bf6 (patch) | |
| tree | 54828822dd8addfb0ae681bb14152dcb70e40346 /Graphics/GraphicsEngineVulkan | |
| parent | Implemented C interface for Vulkan backend (diff) | |
| download | DiligentCore-ff5cbaa7be4411abf6fc6d77f8520bcb40a72bf6.tar.gz DiligentCore-ff5cbaa7be4411abf6fc6d77f8520bcb40a72bf6.zip | |
Added Vulkan C API tests
Diffstat (limited to 'Graphics/GraphicsEngineVulkan')
| -rw-r--r-- | Graphics/GraphicsEngineVulkan/interface/BufferVk.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Graphics/GraphicsEngineVulkan/interface/BufferVk.h b/Graphics/GraphicsEngineVulkan/interface/BufferVk.h index 4e5f5300..b75f672c 100644 --- a/Graphics/GraphicsEngineVulkan/interface/BufferVk.h +++ b/Graphics/GraphicsEngineVulkan/interface/BufferVk.h @@ -41,6 +41,8 @@ static const INTERFACE_ID IID_BufferVk = #define DILIGENT_INTERFACE_NAME IBufferVk #include "../../../Primitives/interface/DefineInterfaceHelperMacros.h" +// clang-format off + /// Exposes Vulkan-specific functionality of a buffer object. DILIGENT_INTERFACE(IBufferVk, IBuffer) { @@ -51,7 +53,7 @@ DILIGENT_INTERFACE(IBufferVk, IBuffer) /// \param [in] AccessFlags - Vulkan access flags to be set for this buffer VIRTUAL void METHOD(SetAccessFlags)(THIS_ - VkAccessFlags AccessFlags) PURE; + VkAccessFlags AccessFlags) PURE; /// If the buffer state is known to the engine (i.e. not Diligent::RESOURCE_STATE_UNKNOWN), /// returns Vulkan access flags corresponding to the state. If the state is unknown, returns 0. |
