diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2020-05-29 05:51:10 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-29 10:51:10 +0200 |
| commit | 44d7fcff399888d311f61772a53146d924ee5b62 (patch) | |
| tree | b79faa532e47b3a4e688939691e5cbf4b6efd21f /Ryujinx.Graphics.Gpu/State/MethodOffset.cs | |
| parent | 12cfaf56f083cdf250381c3525eaf4ecf5ee9257 (diff) | |
Implement FIFO semaphore (#1286)
* Implement FIFO semaphore
* New enum for FIFO semaphore operation
Diffstat (limited to 'Ryujinx.Graphics.Gpu/State/MethodOffset.cs')
| -rw-r--r-- | Ryujinx.Graphics.Gpu/State/MethodOffset.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Gpu/State/MethodOffset.cs b/Ryujinx.Graphics.Gpu/State/MethodOffset.cs index b39ff9b5..da54a469 100644 --- a/Ryujinx.Graphics.Gpu/State/MethodOffset.cs +++ b/Ryujinx.Graphics.Gpu/State/MethodOffset.cs @@ -8,7 +8,8 @@ namespace Ryujinx.Graphics.Gpu.State /// </remarks> enum MethodOffset { - BindChannel = 0x00, + BindChannel = 0x0, + Semaphore = 0x4, FenceValue = 0x1c, FenceAction = 0x1d, WaitForIdle = 0x44, |
