Skip to content
Snippets Groups Projects
Commit 2ae88fee authored by bunnei's avatar bunnei
Browse files

shader_bytecode: Replace some UNIMPLEMENTED logs.

parent 16db8b9d
No related branches found
No related tags found
No related merge requests found
......@@ -477,7 +477,9 @@ union Instruction {
if (texture_info >= 12 && texture_info <= 13)
return TextureType::TextureCube;
UNIMPLEMENTED();
LOG_CRITICAL(HW_GPU, "Unhandled texture_info: {}",
static_cast<u32>(texture_info.Value()));
UNREACHABLE();
}
bool IsArrayTexture() const {
......@@ -523,7 +525,9 @@ union Instruction {
return TextureType::Texture3D;
}
UNIMPLEMENTED();
LOG_CRITICAL(HW_GPU, "Unhandled texture_info: {}",
static_cast<u32>(texture_info.Value()));
UNREACHABLE();
}
bool IsArrayTexture() const {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment