mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-02-23 09:30:18 +00:00
11 lines
173 B
C#
11 lines
173 B
C#
|
namespace Ryujinx.Graphics.Texture.Encoders
|
|||
|
{
|
|||
|
enum EncodeMode
|
|||
|
{
|
|||
|
Fast,
|
|||
|
Exhaustive,
|
|||
|
ModeMask = 0xff,
|
|||
|
Multithreaded = 1 << 8
|
|||
|
}
|
|||
|
}
|