mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-12-24 19:22:59 +00:00
11 lines
171 B
C#
11 lines
171 B
C#
namespace Ryujinx.Graphics.Texture.Encoders
|
|
{
|
|
enum EncodeMode
|
|
{
|
|
Fast,
|
|
Exhaustive,
|
|
ModeMask = 0xff,
|
|
Multithreaded = 1 << 8,
|
|
}
|
|
}
|