mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-23 04:27:10 +02:00
misc: chore: Fix object creation in Vulkan project
This commit is contained in:
parent
eae6dba610
commit
5f023ca49b
37 changed files with 172 additions and 172 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue