add missing MirrorOnceBorder support where supported
This commit is contained in:
parent
1d60bb6544
commit
02c22a3440
1 changed files with 6 additions and 0 deletions
|
@ -180,6 +180,12 @@ inline GLenum WrapMode(Tegra::Texture::WrapMode wrap_mode) {
|
||||||
return GL_CLAMP_TO_BORDER;
|
return GL_CLAMP_TO_BORDER;
|
||||||
case Tegra::Texture::WrapMode::MirrorOnceClampToEdge:
|
case Tegra::Texture::WrapMode::MirrorOnceClampToEdge:
|
||||||
return GL_MIRROR_CLAMP_TO_EDGE;
|
return GL_MIRROR_CLAMP_TO_EDGE;
|
||||||
|
case Tegra::Texture::WrapMode::MirrorOnceBorder:
|
||||||
|
if (GL_EXT_texture_mirror_clamp) {
|
||||||
|
return GL_MIRROR_CLAMP_TO_BORDER_EXT;
|
||||||
|
} else {
|
||||||
|
return GL_MIRROR_CLAMP_TO_EDGE;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
LOG_ERROR(Render_OpenGL, "Unimplemented texture wrap mode={}", static_cast<u32>(wrap_mode));
|
LOG_ERROR(Render_OpenGL, "Unimplemented texture wrap mode={}", static_cast<u32>(wrap_mode));
|
||||||
return GL_REPEAT;
|
return GL_REPEAT;
|
||||||
|
|
Loading…
Reference in a new issue