summaryrefslogtreecommitdiffstats
path: root/tools/gfx/renderer-shared.cpp
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2021-11-15 13:52:37 -0800
committerGitHub <noreply@github.com>2021-11-15 13:52:37 -0800
commitae9df74fce7e3583effc822b3003542cf753823d (patch)
tree3bfff7def0c448a868876e0656babd2c84472fca /tools/gfx/renderer-shared.cpp
parent7a4f08ee0411220c728bf42832d98e72d72167e2 (diff)
Update gfx interface. (#2015)
Diffstat (limited to 'tools/gfx/renderer-shared.cpp')
-rw-r--r--tools/gfx/renderer-shared.cpp5
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;