mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-14 12:12:08 -07:00
Added more shader instructions, including BFE, BRA (partial), FMNMX, ISCADD, SHL, LD_C, some shader related fixes, added support for texture component selection
This commit is contained in:
12
Ryujinx.Graphics/Gal/Shader/ShaderIrCmnt.cs
Normal file
12
Ryujinx.Graphics/Gal/Shader/ShaderIrCmnt.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace Ryujinx.Graphics.Gal.Shader
|
||||
{
|
||||
class ShaderIrCmnt : ShaderIrNode
|
||||
{
|
||||
public string Comment { get; private set; }
|
||||
|
||||
public ShaderIrCmnt(string Comment)
|
||||
{
|
||||
this.Comment = Comment;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user