summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineD3D11
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2018-10-02 02:55:30 +0000
committerEgor Yusov <egor.yusov@gmail.com>2018-10-02 02:55:30 +0000
commit98f46b397b76ead7aaa701ebdadb949ac9ecb7d6 (patch)
tree1a0f2be785f2add72f908b1d4b949912f24735fa /Graphics/GraphicsEngineD3D11
parentFixed typo in repo desc. (diff)
downloadDiligentCore-98f46b397b76ead7aaa701ebdadb949ac9ecb7d6.tar.gz
DiligentCore-98f46b397b76ead7aaa701ebdadb949ac9ecb7d6.zip
Removed ForceRelease parameter of IDeviceContext::FinishFrame()
Diffstat (limited to 'Graphics/GraphicsEngineD3D11')
-rwxr-xr-xGraphics/GraphicsEngineD3D11/include/DeviceContextD3D11Impl.h2
-rwxr-xr-xGraphics/GraphicsEngineD3D11/src/DeviceContextD3D11Impl.cpp2
2 files changed, 2 insertions, 2 deletions
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()
{
}