mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-20 09:40:18 +00:00
13 lines
200 B
C#
13 lines
200 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Texture.Encoders
|
|
{
|
|
[Flags]
|
|
enum EncodeMode
|
|
{
|
|
Fast,
|
|
Exhaustive,
|
|
ModeMask = 0xff,
|
|
Multithreaded = 1 << 8
|
|
}
|
|
}
|