mirror of
https://github.com/GreemDev/Ryujinx
synced 2024-11-22 01:43:23 +01:00
11 lines
197 B
C#
11 lines
197 B
C#
namespace Ryujinx.Graphics.Gpu.Image
|
|
{
|
|
/// <summary>
|
|
/// Sampler texture minification filter.
|
|
/// </summary>
|
|
enum SamplerMinFilter
|
|
{
|
|
Nearest = 1,
|
|
Linear
|
|
}
|
|
}
|