diff options
Diffstat (limited to 'tools/gfx/renderer-shared.cpp')
| -rw-r--r-- | tools/gfx/renderer-shared.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/gfx/renderer-shared.cpp b/tools/gfx/renderer-shared.cpp index 7dbee8ed5..705f1f95d 100644 --- a/tools/gfx/renderer-shared.cpp +++ b/tools/gfx/renderer-shared.cpp @@ -440,10 +440,11 @@ Result RendererBase::createFence(const IFence::Desc& desc, IFence** outFence) } Result RendererBase::waitForFences( - IFence** fences, uint32_t fenceCount, bool waitForAll, uint64_t timeout) + uint32_t fenceCount, IFence** fences, uint64_t* fenceValues, bool waitForAll, uint64_t timeout) { - SLANG_UNUSED(fences); SLANG_UNUSED(fenceCount); + SLANG_UNUSED(fences); + SLANG_UNUSED(fenceValues); SLANG_UNUSED(waitForAll); SLANG_UNUSED(timeout); return SLANG_E_NOT_AVAILABLE; |
