diff options
| author | Yong He <yonghe@outlook.com> | 2021-12-08 15:20:14 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-08 15:20:14 -0800 |
| commit | 6c08cd900c0a02140b6af9de97b05c0a955243a4 (patch) | |
| tree | da9ff09d501f1d24d087fdb055763fe469988523 /tools/gfx/immediate-renderer-base.cpp | |
| parent | 9606401e1de1002e3ad070bc5c6384fa5bc4d9ff (diff) | |
gfx Fence implementation improvements. (#2049)
Diffstat (limited to 'tools/gfx/immediate-renderer-base.cpp')
| -rw-r--r-- | tools/gfx/immediate-renderer-base.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gfx/immediate-renderer-base.cpp b/tools/gfx/immediate-renderer-base.cpp index 34cc70b74..df46cc200 100644 --- a/tools/gfx/immediate-renderer-base.cpp +++ b/tools/gfx/immediate-renderer-base.cpp @@ -595,8 +595,8 @@ public: virtual SLANG_NO_THROW void SLANG_MCALL waitOnHost() override { getRenderer()->waitForGpu(); } - virtual SLANG_NO_THROW Result SLANG_MCALL - waitForFences(uint32_t fenceCount, IFence** fences, uint64_t* waitValues) override + virtual SLANG_NO_THROW Result SLANG_MCALL waitForFenceValuesOnDevice( + uint32_t fenceCount, IFence** fences, uint64_t* waitValues) override { return SLANG_FAIL; } |
