diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2018-10-02 02:55:30 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2018-10-02 02:55:30 +0000 |
| commit | 98f46b397b76ead7aaa701ebdadb949ac9ecb7d6 (patch) | |
| tree | 1a0f2be785f2add72f908b1d4b949912f24735fa /Graphics/GraphicsEngineD3D11 | |
| parent | Fixed typo in repo desc. (diff) | |
| download | DiligentCore-98f46b397b76ead7aaa701ebdadb949ac9ecb7d6.tar.gz DiligentCore-98f46b397b76ead7aaa701ebdadb949ac9ecb7d6.zip | |
Removed ForceRelease parameter of IDeviceContext::FinishFrame()
Diffstat (limited to 'Graphics/GraphicsEngineD3D11')
| -rwxr-xr-x | Graphics/GraphicsEngineD3D11/include/DeviceContextD3D11Impl.h | 2 | ||||
| -rwxr-xr-x | Graphics/GraphicsEngineD3D11/src/DeviceContextD3D11Impl.cpp | 2 |
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()
{
}
|
