mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-06-11 14:59:14 +00:00
feature: .NET 10 (ryubing/ryujinx!214)
See merge request ryubing/ryujinx!214
This commit is contained in:
@@ -228,7 +228,7 @@ namespace Ryujinx.Graphics.Shader.Instructions
|
||||
sourcesList.Add(context.Copy(GetSrcReg(context, srcC)));
|
||||
}
|
||||
|
||||
int coordsCount = type.GetDimensions();
|
||||
int coordsCount = type.Dimensions;
|
||||
|
||||
for (int index = 0; index < coordsCount; index++)
|
||||
{
|
||||
@@ -335,7 +335,7 @@ namespace Ryujinx.Graphics.Shader.Instructions
|
||||
sourcesList.Add(context.Copy(Register(srcC, RegisterType.Gpr)));
|
||||
}
|
||||
|
||||
int coordsCount = type.GetDimensions();
|
||||
int coordsCount = type.Dimensions;
|
||||
|
||||
for (int index = 0; index < coordsCount; index++)
|
||||
{
|
||||
@@ -507,7 +507,7 @@ namespace Ryujinx.Graphics.Shader.Instructions
|
||||
sourcesList.Add(context.Copy(GetSrcReg(context, srcC)));
|
||||
}
|
||||
|
||||
int coordsCount = type.GetDimensions();
|
||||
int coordsCount = type.Dimensions;
|
||||
|
||||
for (int index = 0; index < coordsCount; index++)
|
||||
{
|
||||
@@ -612,7 +612,7 @@ namespace Ryujinx.Graphics.Shader.Instructions
|
||||
sourcesList.Add(context.Copy(Register(srcC, RegisterType.Gpr)));
|
||||
}
|
||||
|
||||
int coordsCount = type.GetDimensions();
|
||||
int coordsCount = type.Dimensions;
|
||||
|
||||
for (int index = 0; index < coordsCount; index++)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user