mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-02-22 17:10:19 +00:00
It recompresses ASTC textures into BC7, which might reduce VRAM usage significantly on games that uses ASTC textures
10 lines
173 B
C#
10 lines
173 B
C#
namespace Ryujinx.Graphics.Texture.Encoders
|
|
{
|
|
enum EncodeMode
|
|
{
|
|
Fast,
|
|
Exhaustive,
|
|
ModeMask = 0xff,
|
|
Multithreaded = 1 << 8
|
|
}
|
|
}
|