summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/decode
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-11-06 01:25:00 +0100
committerGitHub <noreply@github.com>2020-11-06 01:25:00 +0100
commita111a9ae2c0d3009e405ed7735f214437dbf6c47 (patch)
treea2e32633a8d097a5d37a991c3252d91ddc292c7a /src/video_core/shader/decode
parentMerge pull request #4889 from lioncash/setting-global (diff)
parentshader: Partially implement texture cube array shadow (diff)
downloadyuzu-a111a9ae2c0d3009e405ed7735f214437dbf6c47.tar
yuzu-a111a9ae2c0d3009e405ed7735f214437dbf6c47.tar.gz
yuzu-a111a9ae2c0d3009e405ed7735f214437dbf6c47.tar.bz2
yuzu-a111a9ae2c0d3009e405ed7735f214437dbf6c47.tar.lz
yuzu-a111a9ae2c0d3009e405ed7735f214437dbf6c47.tar.xz
yuzu-a111a9ae2c0d3009e405ed7735f214437dbf6c47.tar.zst
yuzu-a111a9ae2c0d3009e405ed7735f214437dbf6c47.zip
Diffstat (limited to 'src/video_core/shader/decode')
-rw-r--r--src/video_core/shader/decode/texture.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/video_core/shader/decode/texture.cpp b/src/video_core/shader/decode/texture.cpp
index 4e932a4b6..02fdccd86 100644
--- a/src/video_core/shader/decode/texture.cpp
+++ b/src/video_core/shader/decode/texture.cpp
@@ -556,7 +556,6 @@ Node4 ShaderIR::GetTextureCode(Instruction instr, TextureType texture_type,
const bool is_shadow = depth_compare != nullptr;
const bool is_bindless = bindless_reg.has_value();
- UNIMPLEMENTED_IF(texture_type == TextureType::TextureCube && is_array && is_shadow);
ASSERT_MSG(texture_type != TextureType::Texture3D || !is_array || !is_shadow,
"Illegal texture type");