mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-05 17:57:42 +02:00
9 lines
129 B
C#
9 lines
129 B
C#
namespace Ryujinx.Graphics.Gpu.Image
|
|
{
|
|
enum SamplerMipFilter
|
|
{
|
|
None = 1,
|
|
Nearest,
|
|
Linear
|
|
}
|
|
}
|