Merge pull request #1102 from ogniK5377/mirror-clamp-edge
Added WrapMode MirrorOnceClampToEdge
This commit is contained in:
commit
b0eb580931
|
@ -147,6 +147,8 @@ inline GLenum WrapMode(Tegra::Texture::WrapMode wrap_mode) {
|
||||||
// GL_CLAMP_TO_BORDER to get the border color of the texture, and then sample the edge to
|
// GL_CLAMP_TO_BORDER to get the border color of the texture, and then sample the edge to
|
||||||
// manually mix them. However the shader part of this is not yet implemented.
|
// manually mix them. However the shader part of this is not yet implemented.
|
||||||
return GL_CLAMP_TO_BORDER;
|
return GL_CLAMP_TO_BORDER;
|
||||||
|
case Tegra::Texture::WrapMode::MirrorOnceClampToEdge:
|
||||||
|
return GL_MIRROR_CLAMP_TO_EDGE;
|
||||||
}
|
}
|
||||||
LOG_CRITICAL(Render_OpenGL, "Unimplemented texture wrap mode={}", static_cast<u32>(wrap_mode));
|
LOG_CRITICAL(Render_OpenGL, "Unimplemented texture wrap mode={}", static_cast<u32>(wrap_mode));
|
||||||
UNREACHABLE();
|
UNREACHABLE();
|
||||||
|
|
|
@ -377,6 +377,8 @@ bool GMainWindow::SupportsRequiredGLExtensions() {
|
||||||
unsupported_ext.append("ARB_vertex_attrib_binding");
|
unsupported_ext.append("ARB_vertex_attrib_binding");
|
||||||
if (!GLAD_GL_ARB_vertex_type_10f_11f_11f_rev)
|
if (!GLAD_GL_ARB_vertex_type_10f_11f_11f_rev)
|
||||||
unsupported_ext.append("ARB_vertex_type_10f_11f_11f_rev");
|
unsupported_ext.append("ARB_vertex_type_10f_11f_11f_rev");
|
||||||
|
if (!GLAD_GL_ARB_texture_mirror_clamp_to_edge)
|
||||||
|
unsupported_ext.append("ARB_texture_mirror_clamp_to_edge");
|
||||||
|
|
||||||
// Extensions required to support some texture formats.
|
// Extensions required to support some texture formats.
|
||||||
if (!GLAD_GL_EXT_texture_compression_s3tc)
|
if (!GLAD_GL_EXT_texture_compression_s3tc)
|
||||||
|
|
|
@ -89,6 +89,8 @@ bool EmuWindow_SDL2::SupportsRequiredGLExtensions() {
|
||||||
unsupported_ext.push_back("ARB_vertex_attrib_binding");
|
unsupported_ext.push_back("ARB_vertex_attrib_binding");
|
||||||
if (!GLAD_GL_ARB_vertex_type_10f_11f_11f_rev)
|
if (!GLAD_GL_ARB_vertex_type_10f_11f_11f_rev)
|
||||||
unsupported_ext.push_back("ARB_vertex_type_10f_11f_11f_rev");
|
unsupported_ext.push_back("ARB_vertex_type_10f_11f_11f_rev");
|
||||||
|
if (!GLAD_GL_ARB_texture_mirror_clamp_to_edge)
|
||||||
|
unsupported_ext.push_back("ARB_texture_mirror_clamp_to_edge");
|
||||||
|
|
||||||
// Extensions required to support some texture formats.
|
// Extensions required to support some texture formats.
|
||||||
if (!GLAD_GL_EXT_texture_compression_s3tc)
|
if (!GLAD_GL_EXT_texture_compression_s3tc)
|
||||||
|
|
Reference in New Issue