summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader_environment.cpp
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2022-08-31 14:51:47 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2022-08-31 14:51:47 +0200
commit95333654861b62167b9a8052ff3faaa931930d17 (patch)
treef60aa1189c92caffa19db809bf00684be0f140ae /src/video_core/shader_environment.cpp
parent(shader/pipeline)_cache: Raise shader/pipeline cache version (diff)
downloadyuzu-95333654861b62167b9a8052ff3faaa931930d17.tar
yuzu-95333654861b62167b9a8052ff3faaa931930d17.tar.gz
yuzu-95333654861b62167b9a8052ff3faaa931930d17.tar.bz2
yuzu-95333654861b62167b9a8052ff3faaa931930d17.tar.lz
yuzu-95333654861b62167b9a8052ff3faaa931930d17.tar.xz
yuzu-95333654861b62167b9a8052ff3faaa931930d17.tar.zst
yuzu-95333654861b62167b9a8052ff3faaa931930d17.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/shader_environment.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/video_core/shader_environment.cpp b/src/video_core/shader_environment.cpp
index 808d88eec..5f7625947 100644
--- a/src/video_core/shader_environment.cpp
+++ b/src/video_core/shader_environment.cpp
@@ -39,11 +39,8 @@ static Shader::TextureType ConvertType(const Tegra::Texture::TICEntry& entry) {
return Shader::TextureType::Color1D;
case Tegra::Texture::TextureType::Texture2D:
case Tegra::Texture::TextureType::Texture2DNoMipmap:
- if (entry.normalized_coords) {
- return Shader::TextureType::Color2D;
- } else {
- return Shader::TextureType::Color2DRect;
- }
+ return entry.normalized_coords ? Shader::TextureType::Color2D
+ : Shader::TextureType::Color2DRect;
case Tegra::Texture::TextureType::Texture3D:
return Shader::TextureType::Color3D;
case Tegra::Texture::TextureType::TextureCubemap: