This repository has been archived on 2026-01-05. You can view files and clone it, but cannot push or open issues/pull-requests.
|
namespace Ryujinx.Graphics.Shader.Decoders
|
|
{
|
|
enum VideoType
|
|
{
|
|
U8 = 0,
|
|
U16 = 1,
|
|
U32 = 2,
|
|
|
|
Signed = 1 << 2,
|
|
|
|
S8 = Signed | U8,
|
|
S16 = Signed | U16,
|
|
S32 = Signed | U32
|
|
}
|
|
}
|