diff options
| author | assiduous <assiduous@diligentgraphics.com> | 2020-08-02 00:17:46 +0000 |
|---|---|---|
| committer | assiduous <assiduous@diligentgraphics.com> | 2020-08-02 19:21:44 +0000 |
| commit | cb8665cbb6bb002dc096a3e69dc36b1d6ceb7260 (patch) | |
| tree | 84423bf4f22a43cd8e24ebe75ed163ea3c15d252 /Graphics/GraphicsEngine | |
| parent | Fixed frame buffer attachment clear operations; updated clear render target t... (diff) | |
| download | DiligentCore-cb8665cbb6bb002dc096a3e69dc36b1d6ceb7260.tar.gz DiligentCore-cb8665cbb6bb002dc096a3e69dc36b1d6ceb7260.zip | |
Fixed build error
Diffstat (limited to 'Graphics/GraphicsEngine')
| -rw-r--r-- | Graphics/GraphicsEngine/include/DeviceContextBase.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Graphics/GraphicsEngine/include/DeviceContextBase.hpp b/Graphics/GraphicsEngine/include/DeviceContextBase.hpp index d217a115..9a9e5e89 100644 --- a/Graphics/GraphicsEngine/include/DeviceContextBase.hpp +++ b/Graphics/GraphicsEngine/include/DeviceContextBase.hpp @@ -884,7 +884,7 @@ inline void DeviceContextBase<BaseInterface, ImplementationTraits>::BeginRenderP if (Attribs.StateTransitionMode == RESOURCE_STATE_TRANSITION_MODE_TRANSITION) { StateTransitionDesc Barrier{pTex, RESOURCE_STATE_UNKNOWN, RequiredState, true}; - TransitionResourceStates(1, &Barrier); + this->TransitionResourceStates(1, &Barrier); } else if (Attribs.StateTransitionMode == RESOURCE_STATE_TRANSITION_MODE_VERIFY) { |
