summaryrefslogtreecommitdiff
path: root/src/video_core/shader_environment.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2022-09-05 18:20:54 -0700
committerGravatar GitHub2022-09-05 18:20:54 -0700
commit4ffbbc534884841f9a5536e57539bf3d1642af26 (patch)
tree128d85b7223c376906ecb180d22e48e268a8c054 /src/video_core/shader_environment.cpp
parentMerge pull request #8847 from german77/stop (diff)
parentstyle: General style changes to match with the rest of the codebase (diff)
downloadyuzu-4ffbbc534884841f9a5536e57539bf3d1642af26.tar.gz
yuzu-4ffbbc534884841f9a5536e57539bf3d1642af26.tar.xz
yuzu-4ffbbc534884841f9a5536e57539bf3d1642af26.zip
Merge pull request #8837 from Morph1984/invalidate
(shader/pipeline)_cache: Raise shader/pipeline cache version
Diffstat (limited to 'src/video_core/shader_environment.cpp')
-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) {
39 return Shader::TextureType::Color1D; 39 return Shader::TextureType::Color1D;
40 case Tegra::Texture::TextureType::Texture2D: 40 case Tegra::Texture::TextureType::Texture2D:
41 case Tegra::Texture::TextureType::Texture2DNoMipmap: 41 case Tegra::Texture::TextureType::Texture2DNoMipmap:
42 if (entry.normalized_coords) { 42 return entry.normalized_coords ? Shader::TextureType::Color2D
43 return Shader::TextureType::Color2D; 43 : Shader::TextureType::Color2DRect;
44 } else {
45 return Shader::TextureType::Color2DRect;
46 }
47 case Tegra::Texture::TextureType::Texture3D: 44 case Tegra::Texture::TextureType::Texture3D:
48 return Shader::TextureType::Color3D; 45 return Shader::TextureType::Color3D;
49 case Tegra::Texture::TextureType::TextureCubemap: 46 case Tegra::Texture::TextureType::TextureCubemap: