summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2018-08-20 21:53:49 -0400
committerGravatar bunnei2018-08-20 21:53:49 -0400
commit2ae88feea771942afc3ec3422685725e5abd0e78 (patch)
treeb962f42d0ef852a3c8338628f9331f6c1b00c1f8 /src
parentgl_shader_decompiler: Implement Texture3D for TEXS. (diff)
downloadyuzu-2ae88feea771942afc3ec3422685725e5abd0e78.tar.gz
yuzu-2ae88feea771942afc3ec3422685725e5abd0e78.tar.xz
yuzu-2ae88feea771942afc3ec3422685725e5abd0e78.zip
shader_bytecode: Replace some UNIMPLEMENTED logs.
Diffstat (limited to 'src')
-rw-r--r--src/video_core/engines/shader_bytecode.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index 3ba6fe614..875b90359 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -477,7 +477,9 @@ union Instruction {
477 if (texture_info >= 12 && texture_info <= 13) 477 if (texture_info >= 12 && texture_info <= 13)
478 return TextureType::TextureCube; 478 return TextureType::TextureCube;
479 479
480 UNIMPLEMENTED(); 480 LOG_CRITICAL(HW_GPU, "Unhandled texture_info: {}",
481 static_cast<u32>(texture_info.Value()));
482 UNREACHABLE();
481 } 483 }
482 484
483 bool IsArrayTexture() const { 485 bool IsArrayTexture() const {
@@ -523,7 +525,9 @@ union Instruction {
523 return TextureType::Texture3D; 525 return TextureType::Texture3D;
524 } 526 }
525 527
526 UNIMPLEMENTED(); 528 LOG_CRITICAL(HW_GPU, "Unhandled texture_info: {}",
529 static_cast<u32>(texture_info.Value()));
530 UNREACHABLE();
527 } 531 }
528 532
529 bool IsArrayTexture() const { 533 bool IsArrayTexture() const {