@@ -352,7 +352,7 @@ void PipelineResourceSignatureVkImpl::CreateSetLayouts(const bool IsSerialized)
352352 CacheGroupOffsets[CacheGroup] += ResDesc.GetArraySize ();
353353
354354 VkDescriptorSetLayoutBinding vkSetLayoutBinding{};
355- vkSetLayoutBinding.binding = pAttribs->BindingIndex ;
355+ vkSetLayoutBinding.binding = pAttribs->BindingIndex ;
356356 // For inline constants, descriptor count is 1 (single uniform buffer)
357357 vkSetLayoutBinding.descriptorCount = ResDesc.GetArraySize ();
358358 vkSetLayoutBinding.stageFlags = ShaderTypesToVkShaderStageFlags (ResDesc.ShaderStages );
@@ -376,9 +376,9 @@ void PipelineResourceSignatureVkImpl::CreateSetLayouts(const bool IsSerialized)
376376 " Only constant buffers can have INLINE_CONSTANTS flag" );
377377
378378 InlineConstantBufferAttribsVk& InlineCBAttribs = m_InlineConstantBuffers[InlineConstantBufferIdx++];
379- InlineCBAttribs.DescrSet = pAttribs->DescrSet ;
380- InlineCBAttribs.BindingIndex = pAttribs->BindingIndex ;
381- InlineCBAttribs.NumConstants = ResDesc.ArraySize ; // For inline constants, ArraySize is the number of 32-bit constants
379+ InlineCBAttribs.DescrSet = pAttribs->DescrSet ;
380+ InlineCBAttribs.BindingIndex = pAttribs->BindingIndex ;
381+ InlineCBAttribs.NumConstants = ResDesc.ArraySize ; // For inline constants, ArraySize is the number of 32-bit constants
382382
383383 // Create a USAGE_DYNAMIC uniform buffer for emulating inline constants
384384 // All SRBs created from this signature will share the same inline constant buffer.
@@ -755,7 +755,7 @@ void PipelineResourceSignatureVkImpl::InitSRBResourceCache(ShaderResourceCacheVk
755755 Attr.BindingIndex ,
756756 0 , // ArrayIndex
757757 RefCntAutoPtr<IDeviceObject>{InlineCBAttr.pBuffer },
758- 0 , // BufferBaseOffset
758+ 0 , // BufferBaseOffset
759759 InlineCBAttr.NumConstants * sizeof (Uint32) // BufferRangeSize
760760 });
761761 }
@@ -910,8 +910,8 @@ void PipelineResourceSignatureVkImpl::CommitDynamicResources(const ShaderResourc
910910 const Uint32 CacheOffset = Attr.CacheOffset (CacheType);
911911 // For inline constants, GetArraySize() returns 1 (actual array size for cache),
912912 // while ArraySize contains the number of 32-bit constants
913- const Uint32 ArraySize = ResDesc.GetArraySize ();
914- const DescriptorType DescrType = Attr.GetDescriptorType ();
913+ const Uint32 ArraySize = ResDesc.GetArraySize ();
914+ const DescriptorType DescrType = Attr.GetDescriptorType ();
915915
916916#ifdef DILIGENT_DEBUG
917917 {
0 commit comments