diff options
| author | Fernando S <fsahmkow27@gmail.com> | 2022-08-31 10:40:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-31 10:40:45 +0200 |
| commit | a83a5d2e4c8932df864dd4cea2b04d87a12c8760 (patch) | |
| tree | 53bd0ce10e965110c7811bd227443fd51e054eff /src/video_core/shader_environment.cpp | |
| parent | c881a67dbaa3efa962e60e3e60dd59371d15b6bb (diff) | |
| parent | b2a6dde4380a5526e9d936f92a9e3d6ad9393bfa (diff) | |
Merge pull request #8752 from vonchenplus/rectangle_texture
video_code: support rectangle texture
Diffstat (limited to 'src/video_core/shader_environment.cpp')
| -rw-r--r-- | src/video_core/shader_environment.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/video_core/shader_environment.cpp b/src/video_core/shader_environment.cpp index c4e923bbf..808d88eec 100644 --- a/src/video_core/shader_environment.cpp +++ b/src/video_core/shader_environment.cpp @@ -39,7 +39,11 @@ static Shader::TextureType ConvertType(const Tegra::Texture::TICEntry& entry) { return Shader::TextureType::Color1D; case Tegra::Texture::TextureType::Texture2D: case Tegra::Texture::TextureType::Texture2DNoMipmap: - return Shader::TextureType::Color2D; + if (entry.normalized_coords) { + return Shader::TextureType::Color2D; + } else { + return Shader::TextureType::Color2DRect; + } case Tegra::Texture::TextureType::Texture3D: return Shader::TextureType::Color3D; case Tegra::Texture::TextureType::TextureCubemap: @@ -53,7 +57,8 @@ static Shader::TextureType ConvertType(const Tegra::Texture::TICEntry& entry) { case Tegra::Texture::TextureType::TextureCubeArray: return Shader::TextureType::ColorArrayCube; default: - throw Shader::NotImplementedException("Unknown texture type"); + UNIMPLEMENTED(); + return Shader::TextureType::Color2D; } } |
