This repository has been archived on 2026-01-05. You can view files and clone it, but cannot push or open issues/pull-requests.
ryubing/Ryujinx.Graphics.Shader/Decoders/ReductionType.cs

14 lines
280 B
C#

namespace Ryujinx.Graphics.Shader.Decoders
{
enum ReductionType
{
U32 = 0,
S32 = 1,
U64 = 2,
FP32FtzRn = 3,
FP16x2FtzRn = 4,
S64 = 5,
SD32 = 6,
SD64 = 7
}
}