diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2018-07-22 03:31:41 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2018-07-22 03:31:41 +0000 |
| commit | 03a7b275d254f6db7267ff894aeebb58e2e6e72f (patch) | |
| tree | f05b1a86581210a21b0fe42fed4f239b25412a55 /unityplugin/GhostCubePlugin/PluginSource | |
| parent | Updated readme (diff) | |
| download | DiligentEngine-03a7b275d254f6db7267ff894aeebb58e2e6e72f.tar.gz DiligentEngine-03a7b275d254f6db7267ff894aeebb58e2e6e72f.zip | |
Added IFence interface
Diffstat (limited to 'unityplugin/GhostCubePlugin/PluginSource')
| -rw-r--r-- | unityplugin/GhostCubePlugin/PluginSource/src/RenderAPI_D3D12.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/unityplugin/GhostCubePlugin/PluginSource/src/RenderAPI_D3D12.cpp b/unityplugin/GhostCubePlugin/PluginSource/src/RenderAPI_D3D12.cpp index 3850cf6..4f57a93 100644 --- a/unityplugin/GhostCubePlugin/PluginSource/src/RenderAPI_D3D12.cpp +++ b/unityplugin/GhostCubePlugin/PluginSource/src/RenderAPI_D3D12.cpp @@ -86,6 +86,11 @@ public: m_ResourcesToTransition.push_back(ResourceState); } + void SignalFence(ID3D12Fence* pFence, Uint64 Value) + { + UNSUPPORTED("Signalling fence via unity command graphics is not supported"); + } + private: IUnityGraphicsD3D12v2* const m_pUnityGraphicsD3D12; HANDLE m_WaitForGPUEventHandle = {}; |
