From e0054151b5b1b4bc44312e3ca737aa2a9a04ff35 Mon Sep 17 00:00:00 2001 From: skallweitNV <64953474+skallweitNV@users.noreply.github.com> Date: Sun, 12 May 2024 00:11:44 +0200 Subject: add missing Result to IRayTracingCommandEncoder::bindPipline (#4148) --- tools/gfx/debug-layer/debug-command-encoder.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tools/gfx/debug-layer/debug-command-encoder.cpp') diff --git a/tools/gfx/debug-layer/debug-command-encoder.cpp b/tools/gfx/debug-layer/debug-command-encoder.cpp index b7b06c2f4..6838732a0 100644 --- a/tools/gfx/debug-layer/debug-command-encoder.cpp +++ b/tools/gfx/debug-layer/debug-command-encoder.cpp @@ -470,16 +470,17 @@ void DebugRayTracingCommandEncoder::deserializeAccelerationStructure( baseObject->deserializeAccelerationStructure(getInnerObj(dest), source); } -void DebugRayTracingCommandEncoder::bindPipeline( +Result DebugRayTracingCommandEncoder::bindPipeline( IPipelineState* state, IShaderObject** outRootObject) { SLANG_GFX_API_FUNC; auto innerPipeline = getInnerObj(state); IShaderObject* innerRootObject = nullptr; commandBuffer->rootObject.reset(); - baseObject->bindPipeline(innerPipeline, &innerRootObject); + Result result = baseObject->bindPipeline(innerPipeline, &innerRootObject); commandBuffer->rootObject.baseObject.attach(innerRootObject); *outRootObject = &commandBuffer->rootObject; + return result; } Result DebugRayTracingCommandEncoder::bindPipelineWithRootObject( -- cgit v1.2.3