mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-14 22:20:18 +00:00
Mark more enums with [Flags]
This commit is contained in:
parent
f4fd186763
commit
83db4973d9
4 changed files with 13 additions and 2 deletions
|
@ -1,5 +1,8 @@
|
|||
namespace Ryujinx.Graphics.Nvdec.Vp9.Types
|
||||
using System;
|
||||
|
||||
namespace Ryujinx.Graphics.Nvdec.Vp9.Types
|
||||
{
|
||||
[Flags]
|
||||
internal enum PartitionType
|
||||
{
|
||||
PartitionNone,
|
||||
|
|
|
@ -228,6 +228,7 @@ namespace Ryujinx.Graphics.Shader.Decoders
|
|||
Rz = 3,
|
||||
}
|
||||
|
||||
[Flags]
|
||||
enum FComp
|
||||
{
|
||||
F = 0,
|
||||
|
@ -279,6 +280,7 @@ namespace Ryujinx.Graphics.Shader.Decoders
|
|||
S64 = 7,
|
||||
}
|
||||
|
||||
[Flags]
|
||||
enum ISrcDstFmt
|
||||
{
|
||||
U8 = 0,
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
using System;
|
||||
|
||||
namespace Ryujinx.HLE.HOS.Services.Spl
|
||||
{
|
||||
[Flags]
|
||||
enum ResultCode
|
||||
{
|
||||
ModuleId = 26,
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
namespace Ryujinx.HLE.HOS.Services.SurfaceFlinger
|
||||
using System;
|
||||
|
||||
namespace Ryujinx.HLE.HOS.Services.SurfaceFlinger
|
||||
{
|
||||
[Flags]
|
||||
enum Status : int
|
||||
{
|
||||
Success = 0,
|
||||
|
|
Loading…
Reference in a new issue