@@ -334,23 +334,19 @@ Result ShaderObjectImpl::bindAsConstantBuffer(
334
334
// buffer for any "ordinary" data in `X`, and then bind the remaining
335
335
// resources and sub-objects.
336
336
//
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
- //
343
337
BindingOffset offset = inOffset;
344
338
SLANG_RETURN_ON_FAIL (_bindOrdinaryDataBufferIfNeeded (context, /* inout*/ offset, layout));
345
339
346
340
// Once the ordinary data buffer is bound, we can move on to binding
347
341
// the rest of the state, which can use logic shared with the case
348
342
// for interface-type sub-object ranges.
349
343
//
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.
352
348
//
353
- SLANG_RETURN_ON_FAIL (bindAsValue (context, offset , layout));
349
+ SLANG_RETURN_ON_FAIL (bindAsValue (context, inOffset , layout));
354
350
355
351
return SLANG_OK;
356
352
}
0 commit comments