From ae9df74fce7e3583effc822b3003542cf753823d Mon Sep 17 00:00:00 2001 From: Yong He Date: Mon, 15 Nov 2021 13:52:37 -0800 Subject: Update gfx interface. (#2015) --- tools/gfx/renderer-shared.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tools/gfx/renderer-shared.cpp') 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; -- cgit v1.2.3