12 lines
211 B
C#
12 lines
211 B
C#
namespace Ryujinx.Graphics.Gpu.Image
|
|
{
|
|
/// <summary>
|
|
/// Sampler texture mipmap level filter.
|
|
/// </summary>
|
|
enum SamplerMipFilter
|
|
{
|
|
None = 1,
|
|
Nearest,
|
|
Linear
|
|
}
|
|
}
|