b9aa3966c0
interpreter, and a rewrite of the GPU code.
14 lines
No EOL
340 B
C#
14 lines
No EOL
340 B
C#
namespace Ryujinx.Graphics.Gal
|
|
{
|
|
public enum GalTextureWrap
|
|
{
|
|
Repeat = 0,
|
|
MirroredRepeat = 1,
|
|
ClampToEdge = 2,
|
|
ClampToBorder = 3,
|
|
Clamp = 4,
|
|
MirrorClampToEdge = 5,
|
|
MirrorClampToBorder = 6,
|
|
MirrorClamp = 7
|
|
}
|
|
} |