Skip to content

Commit 55af098

Browse files
committed
fix IGPUCommandBuffer's illegal qualified names in member declaration
1 parent 9acbc18 commit 55af098

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

include/nbl/video/IGPUCommandBuffer.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -524,14 +524,14 @@ class NBL_API2 IGPUCommandBuffer : public IBackendObject
524524
};
525525
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);
526526

527-
bool IGPUCommandBuffer::setRayTracingPipelineStackSize(uint32_t pipelineStackSize);
528-
bool IGPUCommandBuffer::traceRays(
527+
bool setRayTracingPipelineStackSize(uint32_t pipelineStackSize);
528+
bool traceRays(
529529
const asset::SBufferRange<const IGPUBuffer>& raygenGroupRange,
530530
const asset::SBufferRange<const IGPUBuffer>& missGroupsRange, uint32_t missGroupStride,
531531
const asset::SBufferRange<const IGPUBuffer>& hitGroupsRange, uint32_t hitGroupStride,
532532
const asset::SBufferRange<const IGPUBuffer>& callableGroupsRange, uint32_t callableGroupStride,
533533
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);
535535

536536
//! Secondary CommandBuffer execute
537537
bool executeCommands(const uint32_t count, IGPUCommandBuffer* const* const cmdbufs);
@@ -687,7 +687,7 @@ class NBL_API2 IGPUCommandBuffer : public IBackendObject
687687
const asset::SBufferRange<const IGPUBuffer>& hitGroupsRange, uint32_t hitGroupStride,
688688
const asset::SBufferRange<const IGPUBuffer>& callableGroupsRange, uint32_t callableGroupStride,
689689
uint32_t width, uint32_t height, uint32_t depth) = 0;
690-
virtual bool IGPUCommandBuffer::traceRaysIndirect_impl(
690+
virtual bool traceRaysIndirect_impl(
691691
const asset::SBufferBinding<const IGPUBuffer>& indirectBinding) = 0;
692692

693693
virtual bool executeCommands_impl(const uint32_t count, IGPUCommandBuffer* const* const cmdbufs) = 0;

0 commit comments

Comments
 (0)