mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-25 16:02:57 +00:00
10 lines
173 B
C#
10 lines
173 B
C#
namespace Ryujinx.Graphics.Texture.Encoders
|
|
{
|
|
enum EncodeMode
|
|
{
|
|
Fast,
|
|
Exhaustive,
|
|
ModeMask = 0xff,
|
|
Multithreaded = 1 << 8
|
|
}
|
|
}
|