dc97457bf0
* Implement DADD, DFMA and DMUL shader instructions * Rename FP to FP32 * Correct double immediate * Classic mistake
14 lines
No EOL
192 B
C#
14 lines
No EOL
192 B
C#
namespace Ryujinx.Graphics.Shader.StructuredIr
|
|
{
|
|
enum VariableType
|
|
{
|
|
None,
|
|
Bool,
|
|
Scalar,
|
|
Int,
|
|
F32,
|
|
F64,
|
|
S32,
|
|
U32
|
|
}
|
|
} |