mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-12-20 17:04:09 +00:00
9 lines
129 B
C#
9 lines
129 B
C#
namespace Ryujinx.Graphics.Gpu.Image
|
|
{
|
|
enum SamplerMipFilter
|
|
{
|
|
None = 1,
|
|
Nearest,
|
|
Linear
|
|
}
|
|
}
|