Browse Source
Merge pull request #3706 from degasus/fix_fallthrough_error
video_code: Fix implicit switch fallthrough.
pull/15/merge
Mat M
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
0 deletions
-
src/video_core/renderer_opengl/maxwell_to_gl.h
|
|
|
@ -191,6 +191,7 @@ inline GLenum TextureFilterMode(Tegra::Texture::TextureFilter filter_mode, |
|
|
|
case Tegra::Texture::TextureMipmapFilter::Linear: |
|
|
|
return GL_LINEAR_MIPMAP_LINEAR; |
|
|
|
} |
|
|
|
break; |
|
|
|
} |
|
|
|
case Tegra::Texture::TextureFilter::Nearest: { |
|
|
|
switch (mip_filter_mode) { |
|
|
|
@ -201,6 +202,7 @@ inline GLenum TextureFilterMode(Tegra::Texture::TextureFilter filter_mode, |
|
|
|
case Tegra::Texture::TextureMipmapFilter::Linear: |
|
|
|
return GL_NEAREST_MIPMAP_LINEAR; |
|
|
|
} |
|
|
|
break; |
|
|
|
} |
|
|
|
} |
|
|
|
LOG_ERROR(Render_OpenGL, "Unimplemented texture filter mode={}", static_cast<u32>(filter_mode)); |
|
|
|
|