summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRodrigo Locatti <reinuseslisp@airmail.cc>2019-10-16 04:08:34 +0200
committerGitHub <noreply@github.com>2019-10-16 04:08:34 +0200
commit60315060b189e291e78ce190473f267208202593 (patch)
treeb582580d9a5466b82b33564482cde95cf17c9b2f
parentMerge pull request #2981 from lioncash/copy (diff)
parentvideo_core/surface: Add missing break in PixelFormatFromTextureFormat() (diff)
downloadyuzu-60315060b189e291e78ce190473f267208202593.tar
yuzu-60315060b189e291e78ce190473f267208202593.tar.gz
yuzu-60315060b189e291e78ce190473f267208202593.tar.bz2
yuzu-60315060b189e291e78ce190473f267208202593.tar.lz
yuzu-60315060b189e291e78ce190473f267208202593.tar.xz
yuzu-60315060b189e291e78ce190473f267208202593.tar.zst
yuzu-60315060b189e291e78ce190473f267208202593.zip
-rw-r--r--src/video_core/surface.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/surface.cpp b/src/video_core/surface.cpp
index 250afc6d6..ef6b3592e 100644
--- a/src/video_core/surface.cpp
+++ b/src/video_core/surface.cpp
@@ -252,6 +252,7 @@ PixelFormat PixelFormatFromTextureFormat(Tegra::Texture::TextureFormat format,
default:
break;
}
+ break;
case Tegra::Texture::TextureFormat::R32_G32_B32_A32:
switch (component_type) {
case Tegra::Texture::ComponentType::FLOAT: