mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-04 12:32:24 -07:00
More Shader Gen Stuff
Mostly copied from GLSL since in terms of syntax within blocks they’re pretty similar. Likely the result will need tweaking… Isn’t that conveniant? “Do the simd_shuffle” atomics Remaining instructions Remove removed special instructions Getting somewhere…
This commit is contained in:
committed by
Isaac Marovitz
parent
1790050a14
commit
f07327166c
15
src/Ryujinx.Graphics.Shader/CodeGen/Msl/DefaultNames.cs
Normal file
15
src/Ryujinx.Graphics.Shader/CodeGen/Msl/DefaultNames.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace Ryujinx.Graphics.Shader.CodeGen.Msl
|
||||
{
|
||||
static class DefaultNames
|
||||
{
|
||||
public const string LocalNamePrefix = "temp";
|
||||
|
||||
public const string PerPatchAttributePrefix = "patchAttr";
|
||||
public const string IAttributePrefix = "inAttr";
|
||||
public const string OAttributePrefix = "outAttr";
|
||||
|
||||
public const string ArgumentNamePrefix = "a";
|
||||
|
||||
public const string UndefinedName = "undef";
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user