mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-12-25 10:36:59 +00:00
misc: chore: Use explicit types in Vulkan project
This commit is contained in:
parent
e6b393e420
commit
2d1a4c3ce5
58 changed files with 682 additions and 667 deletions
|
|
@ -33,7 +33,7 @@ namespace Ryujinx.Graphics.Vulkan
|
|||
{
|
||||
if (bufferInfo.Buffer.Handle != 0UL)
|
||||
{
|
||||
var writeDescriptorSet = new WriteDescriptorSet
|
||||
WriteDescriptorSet writeDescriptorSet = new WriteDescriptorSet
|
||||
{
|
||||
SType = StructureType.WriteDescriptorSet,
|
||||
DstSet = _descriptorSets[setIndex],
|
||||
|
|
@ -56,7 +56,7 @@ namespace Ryujinx.Graphics.Vulkan
|
|||
|
||||
fixed (DescriptorBufferInfo* pBufferInfo = bufferInfo)
|
||||
{
|
||||
var writeDescriptorSet = new WriteDescriptorSet
|
||||
WriteDescriptorSet writeDescriptorSet = new WriteDescriptorSet
|
||||
{
|
||||
SType = StructureType.WriteDescriptorSet,
|
||||
DstSet = _descriptorSets[setIndex],
|
||||
|
|
@ -74,7 +74,7 @@ namespace Ryujinx.Graphics.Vulkan
|
|||
{
|
||||
if (imageInfo.ImageView.Handle != 0UL)
|
||||
{
|
||||
var writeDescriptorSet = new WriteDescriptorSet
|
||||
WriteDescriptorSet writeDescriptorSet = new WriteDescriptorSet
|
||||
{
|
||||
SType = StructureType.WriteDescriptorSet,
|
||||
DstSet = _descriptorSets[setIndex],
|
||||
|
|
@ -97,7 +97,7 @@ namespace Ryujinx.Graphics.Vulkan
|
|||
|
||||
fixed (DescriptorImageInfo* pImageInfo = imageInfo)
|
||||
{
|
||||
var writeDescriptorSet = new WriteDescriptorSet
|
||||
WriteDescriptorSet writeDescriptorSet = new WriteDescriptorSet
|
||||
{
|
||||
SType = StructureType.WriteDescriptorSet,
|
||||
DstSet = _descriptorSets[setIndex],
|
||||
|
|
@ -134,7 +134,7 @@ namespace Ryujinx.Graphics.Vulkan
|
|||
count++;
|
||||
}
|
||||
|
||||
var writeDescriptorSet = new WriteDescriptorSet
|
||||
WriteDescriptorSet writeDescriptorSet = new WriteDescriptorSet
|
||||
{
|
||||
SType = StructureType.WriteDescriptorSet,
|
||||
DstSet = _descriptorSets[setIndex],
|
||||
|
|
@ -156,7 +156,7 @@ namespace Ryujinx.Graphics.Vulkan
|
|||
{
|
||||
if (texelBufferView.Handle != 0UL)
|
||||
{
|
||||
var writeDescriptorSet = new WriteDescriptorSet
|
||||
WriteDescriptorSet writeDescriptorSet = new WriteDescriptorSet
|
||||
{
|
||||
SType = StructureType.WriteDescriptorSet,
|
||||
DstSet = _descriptorSets[setIndex],
|
||||
|
|
@ -190,7 +190,7 @@ namespace Ryujinx.Graphics.Vulkan
|
|||
count++;
|
||||
}
|
||||
|
||||
var writeDescriptorSet = new WriteDescriptorSet
|
||||
WriteDescriptorSet writeDescriptorSet = new WriteDescriptorSet
|
||||
{
|
||||
SType = StructureType.WriteDescriptorSet,
|
||||
DstSet = _descriptorSets[setIndex],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue