maxwell_to_gl: Use GL_CLAMP to emulate Clamp wrap mode

This commit is contained in:
ReinUsesLisp 2019-05-21 20:29:41 -03:00
parent b76df62c00
commit a89cc0bafc
3 changed files with 4 additions and 7 deletions

View file

@ -251,7 +251,7 @@ enum class WrapMode : u32 {
Mirror = 1,
ClampToEdge = 2,
Border = 3,
ClampOGL = 4,
Clamp = 4,
MirrorOnceClampToEdge = 5,
MirrorOnceBorder = 6,
MirrorOnceClampOGL = 7,