mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-19 19:01:00 -05:00
misc: chore: Fix object creation in Vulkan project
This commit is contained in:
@@ -83,7 +83,7 @@ namespace Ryujinx.Graphics.Vulkan
|
||||
updateAfterBindFlags[setIndex] = true;
|
||||
}
|
||||
|
||||
DescriptorSetLayoutCreateInfo descriptorSetLayoutCreateInfo = new DescriptorSetLayoutCreateInfo
|
||||
DescriptorSetLayoutCreateInfo descriptorSetLayoutCreateInfo = new()
|
||||
{
|
||||
SType = StructureType.DescriptorSetLayoutCreateInfo,
|
||||
PBindings = pLayoutBindings,
|
||||
@@ -99,7 +99,7 @@ namespace Ryujinx.Graphics.Vulkan
|
||||
|
||||
fixed (DescriptorSetLayout* pLayouts = layouts)
|
||||
{
|
||||
PipelineLayoutCreateInfo pipelineLayoutCreateInfo = new PipelineLayoutCreateInfo
|
||||
PipelineLayoutCreateInfo pipelineLayoutCreateInfo = new()
|
||||
{
|
||||
SType = StructureType.PipelineLayoutCreateInfo,
|
||||
PSetLayouts = pLayouts,
|
||||
|
||||
Reference in New Issue
Block a user