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/debug-layer.h | |
| parent | 9606401e1de1002e3ad070bc5c6384fa5bc4d9ff (diff) | |
gfx Fence implementation improvements. (#2049)
Diffstat (limited to 'tools/gfx/debug-layer.h')
| -rw-r--r-- | tools/gfx/debug-layer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gfx/debug-layer.h b/tools/gfx/debug-layer.h index 71cf74260..07182d70d 100644 --- a/tools/gfx/debug-layer.h +++ b/tools/gfx/debug-layer.h @@ -566,8 +566,8 @@ public: virtual SLANG_NO_THROW void SLANG_MCALL executeCommandBuffers(uint32_t count, ICommandBuffer* const* commandBuffers, IFence* fence, uint64_t valueToSignal) override; virtual SLANG_NO_THROW void SLANG_MCALL waitOnHost() override; - 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; virtual SLANG_NO_THROW Result SLANG_MCALL getNativeHandle(NativeHandle* outHandle) override; }; |
