Skip to content

Commit 6bcf92d

Browse files
authored
gfx/metal uniform data binding and memory leak fix. (shader-slang#4644)
Co-authored-by: Yong He <yhe@nvidia.com>
1 parent bd6314d commit 6bcf92d

6 files changed

+15
-27
lines changed

tools/gfx/d3d11/d3d11-shader-object.cpp

+4-8
Original file line numberDiff line numberDiff line change
@@ -318,21 +318,17 @@ Result ShaderObjectImpl::bindAsConstantBuffer(
318318
// buffer for any "ordinary" data in `X`, and then bind the remaining
319319
// resources and sub-objects.
320320
//
321-
// The one important detail to keep track of its that *if* we bind
322-
// a constant buffer for ordinary data we will need to account for
323-
// it in the offset we use for binding the remaining data. That
324-
// detail is dealt with here by the way that `_bindOrdinaryDataBufferIfNeeded`
325-
// will modify the `offset` parameter if it binds anything.
326-
//
327321
BindingOffset offset = inOffset;
328322
SLANG_RETURN_ON_FAIL(_bindOrdinaryDataBufferIfNeeded(context, /*inout*/ offset, specializedLayout));
329323

330324
// Once the ordinary data buffer is bound, we can move on to binding
331325
// the rest of the state, which can use logic shared with the case
332326
// for interface-type sub-object ranges.
333327
//
334-
// Note that this call will use the `offset` value that might have
335-
// been modified during `_bindOrindaryDataBufferIfNeeded`.
328+
// Note that this call will use the `inOffset` value instead of the offset
329+
// modified by `_bindOrindaryDataBufferIfNeeded', because the indexOffset in
330+
// the binding range should already take care of the offset due to the default
331+
// cbuffer.
336332
//
337333
SLANG_RETURN_ON_FAIL(bindAsValue(context, inOffset, specializedLayout));
338334

tools/gfx/metal/metal-command-buffer.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ class CommandBufferImpl
2828
RootShaderObjectImpl m_rootObject;
2929
// RefPtr<MutableRootShaderObjectImpl> m_mutableRootShaderObject;
3030

31-
ResourceCommandEncoder* m_resourceCommandEncoder = nullptr;
32-
ComputeCommandEncoder* m_computeCommandEncoder = nullptr;
33-
RenderCommandEncoder* m_renderCommandEncoder = nullptr;
34-
RayTracingCommandEncoder* m_rayTracingCommandEncoder = nullptr;
31+
RefPtr<ResourceCommandEncoder> m_resourceCommandEncoder = nullptr;
32+
RefPtr<ComputeCommandEncoder> m_computeCommandEncoder = nullptr;
33+
RefPtr<RenderCommandEncoder> m_renderCommandEncoder = nullptr;
34+
RefPtr<RayTracingCommandEncoder> m_rayTracingCommandEncoder = nullptr;
3535

3636
NS::SharedPtr<MTL::RenderCommandEncoder> m_metalRenderCommandEncoder;
3737
NS::SharedPtr<MTL::ComputeCommandEncoder> m_metalComputeCommandEncoder;

tools/gfx/metal/metal-device.h

-4
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,6 @@ class DeviceImpl : public RendererBase
135135
NS::SharedPtr<MTL::Device> m_device;
136136
NS::SharedPtr<MTL::CommandQueue> m_commandQueue;
137137

138-
//DescriptorSetAllocator descriptorSetAllocator;
139-
140138
uint32_t m_queueAllocCount;
141139

142140
// A list to hold objects that may have a strong back reference to the device
@@ -150,8 +148,6 @@ class DeviceImpl : public RendererBase
150148
// worrying the `ShaderProgramImpl` object getting destroyed after the completion of
151149
// `DeviceImpl::~DeviceImpl()'.
152150
ChunkedList<RefPtr<RefObject>, 1024> m_deviceObjectsWithPotentialBackReferences;
153-
154-
//RefPtr<FramebufferImpl> m_emptyFramebuffer;
155151
};
156152

157153
} // namespace metal

tools/gfx/metal/metal-pipeline-state.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace metal
1414
class PipelineStateImpl : public PipelineStateBase
1515
{
1616
public:
17-
RefPtr<DeviceImpl> m_device;
17+
DeviceImpl* m_device;
1818
NS::SharedPtr<MTL::RenderPipelineState> m_renderPipelineState;
1919
NS::SharedPtr<MTL::DepthStencilState> m_depthStencilState;
2020
NS::SharedPtr<MTL::ComputePipelineState> m_computePipelineState;

tools/gfx/metal/metal-shader-object.cpp

+5-9
Original file line numberDiff line numberDiff line change
@@ -334,23 +334,19 @@ Result ShaderObjectImpl::bindAsConstantBuffer(
334334
// buffer for any "ordinary" data in `X`, and then bind the remaining
335335
// resources and sub-objects.
336336
//
337-
// The one important detail to keep track of its that *if* we bind
338-
// a constant buffer for ordinary data we will need to account for
339-
// it in the offset we use for binding the remaining data. That
340-
// detail is dealt with here by the way that `_bindOrdinaryDataBufferIfNeeded`
341-
// will modify the `offset` parameter if it binds anything.
342-
//
343337
BindingOffset offset = inOffset;
344338
SLANG_RETURN_ON_FAIL(_bindOrdinaryDataBufferIfNeeded(context, /*inout*/ offset, layout));
345339

346340
// Once the ordinary data buffer is bound, we can move on to binding
347341
// the rest of the state, which can use logic shared with the case
348342
// for interface-type sub-object ranges.
349343
//
350-
// Note that this call will use the `offset` value that might have
351-
// been modified during `_bindOrindaryDataBufferIfNeeded`.
344+
// Note that this call will use the `inOffset` value instead of the offset
345+
// modified by `_bindOrindaryDataBufferIfNeeded', because the indexOffset in
346+
// the binding range should already take care of the offset due to the default
347+
// cbuffer.
352348
//
353-
SLANG_RETURN_ON_FAIL(bindAsValue(context, offset, layout));
349+
SLANG_RETURN_ON_FAIL(bindAsValue(context, inOffset, layout));
354350

355351
return SLANG_OK;
356352
}

tools/gfx/metal/metal-shader-program.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace metal
1515
class ShaderProgramImpl : public ShaderProgramBase
1616
{
1717
public:
18-
BreakableReference<DeviceImpl> m_device;
18+
DeviceImpl* m_device;
1919
RefPtr<RootShaderObjectLayoutImpl> m_rootObjectLayout;
2020

2121
struct Module

0 commit comments

Comments
 (0)