1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2025-01-08 20:26:03 +00:00
Ryujinx/src/Ryujinx.Graphics.Shader/Translation/HelperFunctionName.cs
gdkchan fe30c03cac
Implement soft float64 conversion on shaders when host has no support (#5159)
* Implement soft float64 conversion on shaders when host has no support

* Shader cache version bump

* Fix rebase error
2023-06-08 17:09:14 -03:00

10 lines
No EOL
201 B
C#

namespace Ryujinx.Graphics.Shader.Translation
{
enum HelperFunctionName
{
ConvertDoubleToFloat,
ConvertFloatToDouble,
TexelFetchScale,
TextureSizeUnscale
}
}