mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2026-03-29 06:38:39 +00:00
10 lines
171 B
C#
10 lines
171 B
C#
namespace Ryujinx.Graphics.Texture.Encoders
|
|
{
|
|
enum EncodeMode
|
|
{
|
|
Fast,
|
|
Exhaustive,
|
|
ModeMask = 0xff,
|
|
Multithreaded = 1 << 8,
|
|
}
|
|
}
|