diff options
Diffstat (limited to 'tools/gfx/renderer-shared.h')
| -rw-r--r-- | tools/gfx/renderer-shared.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/gfx/renderer-shared.h b/tools/gfx/renderer-shared.h index 504f49bd7..eeb10b527 100644 --- a/tools/gfx/renderer-shared.h +++ b/tools/gfx/renderer-shared.h @@ -536,6 +536,12 @@ public: SLANG_UNUSED(outObject); return SLANG_E_NOT_AVAILABLE; } + + virtual SLANG_NO_THROW Result SLANG_MCALL copyFrom(IShaderObject* other) override + { + SLANG_UNUSED(other); + return SLANG_E_NOT_AVAILABLE; + } }; template<typename TShaderObjectImpl, typename TShaderObjectLayoutImpl, typename TShaderObjectData> @@ -1233,7 +1239,7 @@ public: // Provides a default implementation that returns SLANG_E_NOT_AVAILABLE. virtual SLANG_NO_THROW Result SLANG_MCALL - waitForFences(IFence** fences, uint32_t fenceCount, bool waitForAll, uint64_t timeout) override; + waitForFences(uint32_t fenceCount, IFence** fences, uint64_t* fenceValues, bool waitForAll, uint64_t timeout) override; Result getShaderObjectLayout( slang::TypeReflection* type, |
