mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-03-17 03:51:08 +00:00
* Move shuffle handling out of the backend to a transform pass * Handle subgroup sizes higher than 32 * Stop using the subgroup size control extension * Make GenerateShuffleFunction static * Shader cache version bump
14 lines
240 B
C#
14 lines
240 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Shader.StructuredIr
|
|
{
|
|
[Flags]
|
|
enum HelperFunctionsMask
|
|
{
|
|
MultiplyHighS32 = 1 << 2,
|
|
MultiplyHighU32 = 1 << 3,
|
|
SwizzleAdd = 1 << 10,
|
|
FSI = 1 << 11,
|
|
}
|
|
}
|