From 98f46b397b76ead7aaa701ebdadb949ac9ecb7d6 Mon Sep 17 00:00:00 2001 From: Egor Yusov Date: Mon, 1 Oct 2018 19:55:30 -0700 Subject: Removed ForceRelease parameter of IDeviceContext::FinishFrame() --- Graphics/GraphicsEngineD3D11/include/DeviceContextD3D11Impl.h | 2 +- Graphics/GraphicsEngineD3D11/src/DeviceContextD3D11Impl.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'Graphics/GraphicsEngineD3D11') diff --git a/Graphics/GraphicsEngineD3D11/include/DeviceContextD3D11Impl.h b/Graphics/GraphicsEngineD3D11/include/DeviceContextD3D11Impl.h index e4aab32d..30f5c83f 100755 --- a/Graphics/GraphicsEngineD3D11/include/DeviceContextD3D11Impl.h +++ b/Graphics/GraphicsEngineD3D11/include/DeviceContextD3D11Impl.h @@ -86,7 +86,7 @@ public: virtual void Flush()override final; - virtual void FinishFrame(bool ForceRelease)override final; + virtual void FinishFrame()override final; void FinishCommandList(class ICommandList **ppCommandList)override final; diff --git a/Graphics/GraphicsEngineD3D11/src/DeviceContextD3D11Impl.cpp b/Graphics/GraphicsEngineD3D11/src/DeviceContextD3D11Impl.cpp index 0ea85161..369b632e 100755 --- a/Graphics/GraphicsEngineD3D11/src/DeviceContextD3D11Impl.cpp +++ b/Graphics/GraphicsEngineD3D11/src/DeviceContextD3D11Impl.cpp @@ -916,7 +916,7 @@ namespace Diligent m_pd3d11DeviceContext->Flush(); } - void DeviceContextD3D11Impl::FinishFrame(bool ForceRelease) + void DeviceContextD3D11Impl::FinishFrame() { } -- cgit v1.2.3