mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 21:46:39 +00:00
Fix copy-paste mistake, also related to astc...
This commit is contained in:
parent
4731c7545d
commit
f03a43fa38
1 changed files with 4 additions and 4 deletions
|
@ -70,10 +70,10 @@ namespace Ryujinx.Graphics.Gal.OpenGL
|
||||||
GL.TexParameter(TextureTarget.Texture2D, TextureParameterName.TextureSwizzleA, SwizzleA);
|
GL.TexParameter(TextureTarget.Texture2D, TextureParameterName.TextureSwizzleA, SwizzleA);
|
||||||
}
|
}
|
||||||
|
|
||||||
private GalTexture ConvertAstcTextureToRgba(GalTexture Texture)
|
private static GalTexture ConvertAstcTextureToRgba(GalTexture Texture)
|
||||||
{
|
{
|
||||||
int TextureBlockWidth = GetAstcBlockWidth(Texture.Format);
|
int TextureBlockWidth = GetAstcBlockWidth(Texture.Format);
|
||||||
int TextureBlockHeight = GetAstcBlockWidth(Texture.Format);
|
int TextureBlockHeight = GetAstcBlockHeight(Texture.Format);
|
||||||
|
|
||||||
Texture.Data = ASTCDecoder.DecodeToRGBA8888(
|
Texture.Data = ASTCDecoder.DecodeToRGBA8888(
|
||||||
Texture.Data,
|
Texture.Data,
|
||||||
|
@ -87,7 +87,7 @@ namespace Ryujinx.Graphics.Gal.OpenGL
|
||||||
return Texture;
|
return Texture;
|
||||||
}
|
}
|
||||||
|
|
||||||
private int GetAstcBlockWidth(GalTextureFormat Format)
|
private static int GetAstcBlockWidth(GalTextureFormat Format)
|
||||||
{
|
{
|
||||||
switch (Format)
|
switch (Format)
|
||||||
{
|
{
|
||||||
|
@ -110,7 +110,7 @@ namespace Ryujinx.Graphics.Gal.OpenGL
|
||||||
throw new ArgumentException(nameof(Format));
|
throw new ArgumentException(nameof(Format));
|
||||||
}
|
}
|
||||||
|
|
||||||
private int GetAstcBlockHeight(GalTextureFormat Format)
|
private static int GetAstcBlockHeight(GalTextureFormat Format)
|
||||||
{
|
{
|
||||||
switch (Format)
|
switch (Format)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue