@@ -524,14 +524,14 @@ class NBL_API2 IGPUCommandBuffer : public IBackendObject
524
524
};
525
525
bool resolveImage (const IGPUImage* const srcImage, const IGPUImage::LAYOUT srcImageLayout, IGPUImage* const dstImage, const IGPUImage::LAYOUT dstImageLayout, const uint32_t regionCount, const SImageResolve* const pRegions);
526
526
527
- bool IGPUCommandBuffer:: setRayTracingPipelineStackSize (uint32_t pipelineStackSize);
528
- bool IGPUCommandBuffer:: traceRays (
527
+ bool setRayTracingPipelineStackSize (uint32_t pipelineStackSize);
528
+ bool traceRays (
529
529
const asset::SBufferRange<const IGPUBuffer>& raygenGroupRange,
530
530
const asset::SBufferRange<const IGPUBuffer>& missGroupsRange, uint32_t missGroupStride,
531
531
const asset::SBufferRange<const IGPUBuffer>& hitGroupsRange, uint32_t hitGroupStride,
532
532
const asset::SBufferRange<const IGPUBuffer>& callableGroupsRange, uint32_t callableGroupStride,
533
533
uint32_t width, uint32_t height, uint32_t depth);
534
- bool IGPUCommandBuffer:: traceRaysIndirect (const asset::SBufferBinding<const IGPUBuffer>& indirectBinding);
534
+ bool traceRaysIndirect (const asset::SBufferBinding<const IGPUBuffer>& indirectBinding);
535
535
536
536
// ! Secondary CommandBuffer execute
537
537
bool executeCommands (const uint32_t count, IGPUCommandBuffer* const * const cmdbufs);
@@ -687,7 +687,7 @@ class NBL_API2 IGPUCommandBuffer : public IBackendObject
687
687
const asset::SBufferRange<const IGPUBuffer>& hitGroupsRange, uint32_t hitGroupStride,
688
688
const asset::SBufferRange<const IGPUBuffer>& callableGroupsRange, uint32_t callableGroupStride,
689
689
uint32_t width, uint32_t height, uint32_t depth) = 0;
690
- virtual bool IGPUCommandBuffer:: traceRaysIndirect_impl (
690
+ virtual bool traceRaysIndirect_impl (
691
691
const asset::SBufferBinding<const IGPUBuffer>& indirectBinding) = 0;
692
692
693
693
virtual bool executeCommands_impl (const uint32_t count, IGPUCommandBuffer* const * const cmdbufs) = 0;
0 commit comments