mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 13:18:40 +00:00
b9aa3966c0
interpreter, and a rewrite of the GPU code.
14 lines
340 B
C#
14 lines
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
|
|
}
|
|
} |