summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineVulkan
diff options
context:
space:
mode:
authorassiduous <assiduous@diligentgraphics.com>2020-07-27 02:16:18 +0000
committerassiduous <assiduous@diligentgraphics.com>2020-08-02 19:21:40 +0000
commit8798aa2e94602372a61c362d5c3f288cc07388c9 (patch)
tree9ef14b8e949cac5dd65d74ddb2b81ebdd43c7e43 /Graphics/GraphicsEngineVulkan
parentImplemented SubpassDependencyDesc struct (diff)
downloadDiligentCore-8798aa2e94602372a61c362d5c3f288cc07388c9.tar.gz
DiligentCore-8798aa2e94602372a61c362d5c3f288cc07388c9.zip
Added BeginRenderPass, NextSubpass, and EndRenderPass device context methods
Diffstat (limited to 'Graphics/GraphicsEngineVulkan')
-rw-r--r--Graphics/GraphicsEngineVulkan/include/DeviceContextVkImpl.hpp9
-rw-r--r--Graphics/GraphicsEngineVulkan/src/DeviceContextVkImpl.cpp15
2 files changed, 24 insertions, 0 deletions
diff --git a/Graphics/GraphicsEngineVulkan/include/DeviceContextVkImpl.hpp b/Graphics/GraphicsEngineVulkan/include/DeviceContextVkImpl.hpp
index 83e2c077..50d1eb0c 100644
--- a/Graphics/GraphicsEngineVulkan/include/DeviceContextVkImpl.hpp
+++ b/Graphics/GraphicsEngineVulkan/include/DeviceContextVkImpl.hpp
@@ -133,6 +133,15 @@ public:
ITextureView* pDepthStencil,
RESOURCE_STATE_TRANSITION_MODE StateTransitionMode) override final;
+ /// Implementation of IDeviceContext::BeginRenderPass() in Direct3D11 backend.
+ virtual void DILIGENT_CALL_TYPE BeginRenderPass(const BeginRenderPassAttribs& Attribs) override final;
+
+ /// Implementation of IDeviceContext::NextSubpass() in Direct3D11 backend.
+ virtual void DILIGENT_CALL_TYPE NextSubpass() override final;
+
+ /// Implementation of IDeviceContext::EndRenderPass() in Direct3D11 backend.
+ virtual void DILIGENT_CALL_TYPE EndRenderPass() override final;
+
// clang-format off
/// Implementation of IDeviceContext::Draw() in Vulkan backend.
virtual void DILIGENT_CALL_TYPE Draw (const DrawAttribs& Attribs) override final;
diff --git a/Graphics/GraphicsEngineVulkan/src/DeviceContextVkImpl.cpp b/Graphics/GraphicsEngineVulkan/src/DeviceContextVkImpl.cpp
index d61ddc97..efa7e34b 100644
--- a/Graphics/GraphicsEngineVulkan/src/DeviceContextVkImpl.cpp
+++ b/Graphics/GraphicsEngineVulkan/src/DeviceContextVkImpl.cpp
@@ -1190,6 +1190,21 @@ void DeviceContextVkImpl::ResetRenderTargets()
m_CommandBuffer.EndRenderPass();
}
+void DeviceContextVkImpl::BeginRenderPass(const BeginRenderPassAttribs& Attribs)
+{
+ UNEXPECTED("Method not implemented");
+}
+
+void DeviceContextVkImpl::NextSubpass()
+{
+ UNEXPECTED("Method not implemented");
+}
+
+void DeviceContextVkImpl::EndRenderPass()
+{
+ UNEXPECTED("Method not implemented");
+}
+
void DeviceContextVkImpl::UpdateBufferRegion(BufferVkImpl* pBuffVk,
Uint64 DstOffset,
Uint64 NumBytes,