mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-07-02 17:40:47 -07:00
Partial support for shader memory barriers
This commit is contained in:
12
Ryujinx.Graphics.Shader/Decoders/BarrierMode.cs
Normal file
12
Ryujinx.Graphics.Shader/Decoders/BarrierMode.cs
Normal file
@ -0,0 +1,12 @@
|
||||
namespace Ryujinx.Graphics.Shader.Decoders
|
||||
{
|
||||
enum BarrierMode
|
||||
{
|
||||
ReductionPopCount = 2,
|
||||
Scan = 3,
|
||||
ReductionAnd = 0xa,
|
||||
ReductionOr = 0x12,
|
||||
Sync = 0x80,
|
||||
Arrive = 0x81
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user