mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-20 12:30:17 +00:00
15 lines
280 B
C#
15 lines
280 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Nvdec.Vp9.Types
|
|
{
|
|
[Flags]
|
|
internal enum PartitionType
|
|
{
|
|
PartitionNone,
|
|
PartitionHorz,
|
|
PartitionVert,
|
|
PartitionSplit,
|
|
PartitionTypes,
|
|
PartitionInvalid = PartitionTypes
|
|
}
|
|
}
|