mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-01-15 12:20:04 -06:00
Support single precision contants for double precision operations (#1673)
This commit is contained in:
parent
a16f201a6f
commit
ce9105a130
@ -10,7 +10,7 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Glsl
|
|||||||
|
|
||||||
public static bool TryFormat(int value, VariableType dstType, out string formatted)
|
public static bool TryFormat(int value, VariableType dstType, out string formatted)
|
||||||
{
|
{
|
||||||
if (dstType == VariableType.F32)
|
if (dstType == VariableType.F32 || dstType == VariableType.F64)
|
||||||
{
|
{
|
||||||
return TryFormatFloat(BitConverter.Int32BitsToSingle(value), out formatted);
|
return TryFormatFloat(BitConverter.Int32BitsToSingle(value), out formatted);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user