File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3653,7 +3653,7 @@ typedef struct VulkanDescriptorPoolSize VulkanDescriptorPoolSize;
36533653struct EngineVkCreateInfo DILIGENT_DERIVE (EngineCreateInfo )
36543654
36553655 /// The number of Vulkan instance layers in ppInstanceLayerNames array.
3656- Uint32 IntanceLayerCount DEFAULT_INITIALIZER (0 );
3656+ Uint32 InstanceLayerCount DEFAULT_INITIALIZER (0 );
36573657
36583658 /// A list of additional Vulkan instance layers to enable.
36593659 const char * const * ppInstanceLayerNames DEFAULT_INITIALIZER (nullptr );
Original file line number Diff line number Diff line change @@ -653,7 +653,7 @@ void EngineFactoryVkImpl::CreateDeviceAndContextsVk(const EngineVkCreateInfo& En
653653 InstanceCI.EnableValidation = EngineCI.EnableValidation ;
654654 InstanceCI.EnableDeviceSimulation = m_EnableDeviceSimulation;
655655 InstanceCI.LogExtensions = true ;
656- InstanceCI.EnabledLayerCount = EngineCI.IntanceLayerCount ;
656+ InstanceCI.EnabledLayerCount = EngineCI.InstanceLayerCount ;
657657 InstanceCI.ppEnabledLayerNames = EngineCI.ppInstanceLayerNames ;
658658 InstanceCI.ExtensionCount = EngineCI.InstanceExtensionCount ;
659659 InstanceCI.ppExtensionNames = EngineCI.ppInstanceExtensionNames ;
You can’t perform that action at this time.
0 commit comments