mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 20:58:44 +00:00
dc97457bf0
* Implement DADD, DFMA and DMUL shader instructions * Rename FP to FP32 * Correct double immediate * Classic mistake
14 lines
192 B
C#
14 lines
192 B
C#
namespace Ryujinx.Graphics.Shader.StructuredIr
|
|
{
|
|
enum VariableType
|
|
{
|
|
None,
|
|
Bool,
|
|
Scalar,
|
|
Int,
|
|
F32,
|
|
F64,
|
|
S32,
|
|
U32
|
|
}
|
|
} |