mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-08-15 13:26:57 +00:00
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
11 lines
171 B
C#
11 lines
171 B
C#
namespace Ryujinx.Graphics.Texture.Encoders
|
|
{
|
|
enum EncodeMode
|
|
{
|
|
Fast,
|
|
Exhaustive,
|
|
ModeMask = 0xff,
|
|
Multithreaded = 1 << 8,
|
|
}
|
|
}
|