mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-13 16:46:40 +00:00
ce1d5be212
* Move GPU LLE emulation from HLE to Graphics * Graphics: Move Gal/Texture to Texture * Remove Engines/ directory and namespace * Use tables for image formats * Abstract OpCode decoding * Simplify image table * Do not leak Read* symbols in TextureReader * Fixups * Rename IGalFrameBuffer -> IGalRenderTarget * Remove MaxBpp hardcoded value * Change yet again texture data and add G8R8 flipping * Rename GalFrameBufferFormat to GalSurfaceFormat * Unident EnsureSetup in ImageHandler * Add IsCompressed * Address some feedback
67 lines
No EOL
2 KiB
C#
67 lines
No EOL
2 KiB
C#
using System;
|
|
|
|
using static Ryujinx.Graphics.Gal.Shader.ShaderDecodeHelper;
|
|
|
|
namespace Ryujinx.Graphics.Gal.Shader
|
|
{
|
|
static partial class ShaderDecode
|
|
{
|
|
public static void Bra(ShaderIrBlock Block, long OpCode, long Position)
|
|
{
|
|
if ((OpCode & 0x20) != 0)
|
|
{
|
|
//This reads the target offset from the constant buffer.
|
|
//Almost impossible to support with GLSL.
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
int Target = OpCode.Branch();
|
|
|
|
ShaderIrOperImm Imm = new ShaderIrOperImm(Target);
|
|
|
|
Block.AddNode(OpCode.PredNode(new ShaderIrOp(ShaderIrInst.Bra, Imm)));
|
|
}
|
|
|
|
public static void Exit(ShaderIrBlock Block, long OpCode, long Position)
|
|
{
|
|
int CCode = (int)OpCode & 0x1f;
|
|
|
|
//TODO: Figure out what the other condition codes mean...
|
|
if (CCode == 0xf)
|
|
{
|
|
Block.AddNode(OpCode.PredNode(new ShaderIrOp(ShaderIrInst.Exit)));
|
|
}
|
|
|
|
}
|
|
|
|
public static void Kil(ShaderIrBlock Block, long OpCode, long Position)
|
|
{
|
|
Block.AddNode(OpCode.PredNode(new ShaderIrOp(ShaderIrInst.Kil)));
|
|
}
|
|
|
|
public static void Ssy(ShaderIrBlock Block, long OpCode, long Position)
|
|
{
|
|
if ((OpCode & 0x20) != 0)
|
|
{
|
|
//This reads the target offset from the constant buffer.
|
|
//Almost impossible to support with GLSL.
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
int Offset = OpCode.Branch();
|
|
|
|
int Target = (int)(Position + Offset);
|
|
|
|
ShaderIrOperImm Imm = new ShaderIrOperImm(Target);
|
|
|
|
Block.AddNode(new ShaderIrOp(ShaderIrInst.Ssy, Imm));
|
|
}
|
|
|
|
public static void Sync(ShaderIrBlock Block, long OpCode, long Position)
|
|
{
|
|
//TODO: Implement Sync condition codes
|
|
|
|
Block.AddNode(OpCode.PredNode(new ShaderIrOp(ShaderIrInst.Sync)));
|
|
}
|
|
}
|
|
} |