summaryrefslogtreecommitdiffstats
path: root/tools/gfx/cuda/cuda-command-buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gfx/cuda/cuda-command-buffer.h')
-rw-r--r--tools/gfx/cuda/cuda-command-buffer.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/tools/gfx/cuda/cuda-command-buffer.h b/tools/gfx/cuda/cuda-command-buffer.h
index 76d9aa01f..05329d67c 100644
--- a/tools/gfx/cuda/cuda-command-buffer.h
+++ b/tools/gfx/cuda/cuda-command-buffer.h
@@ -11,14 +11,11 @@ using namespace Slang;
namespace cuda
{
-class CommandBufferImpl
- : public ICommandBuffer
- , public CommandWriter
- , public ComObject
+class CommandBufferImpl : public ICommandBuffer, public CommandWriter, public ComObject
{
public:
SLANG_COM_OBJECT_IUNKNOWN_ALL
- ICommandBuffer* getInterface(const Guid& guid);
+ ICommandBuffer* getInterface(const Guid& guid);
public:
DeviceImpl* m_device;
@@ -33,11 +30,11 @@ public:
IRenderCommandEncoder** outEncoder) override;
virtual SLANG_NO_THROW void SLANG_MCALL
- encodeResourceCommands(IResourceCommandEncoder** outEncoder) override;
+ encodeResourceCommands(IResourceCommandEncoder** outEncoder) override;
virtual SLANG_NO_THROW void SLANG_MCALL
- encodeComputeCommands(IComputeCommandEncoder** outEncoder) override;
+ encodeComputeCommands(IComputeCommandEncoder** outEncoder) override;
virtual SLANG_NO_THROW void SLANG_MCALL
- encodeRayTracingCommands(IRayTracingCommandEncoder** outEncoder) override;
+ encodeRayTracingCommands(IRayTracingCommandEncoder** outEncoder) override;
virtual SLANG_NO_THROW void SLANG_MCALL close() override {}