mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-14 15:47:51 +00:00
shader_ir: Add error message for EXIT.FCSM_TR
This commit is contained in:
parent
8a635a351b
commit
fc4fc348bc
1 changed files with 3 additions and 0 deletions
|
@ -359,6 +359,9 @@ Node ShaderIR::GetConditionCode(Tegra::Shader::ConditionCode cc) const {
|
||||||
switch (cc) {
|
switch (cc) {
|
||||||
case Tegra::Shader::ConditionCode::NEU:
|
case Tegra::Shader::ConditionCode::NEU:
|
||||||
return GetInternalFlag(InternalFlag::Zero, true);
|
return GetInternalFlag(InternalFlag::Zero, true);
|
||||||
|
case Tegra::Shader::ConditionCode::FCSM_TR:
|
||||||
|
UNIMPLEMENTED_MSG("EXIT.FCSM_TR is not implemented");
|
||||||
|
return MakeNode<PredicateNode>(Pred::NeverExecute, false);
|
||||||
default:
|
default:
|
||||||
UNIMPLEMENTED_MSG("Unimplemented condition code: {}", static_cast<u32>(cc));
|
UNIMPLEMENTED_MSG("Unimplemented condition code: {}", static_cast<u32>(cc));
|
||||||
return MakeNode<PredicateNode>(Pred::NeverExecute, false);
|
return MakeNode<PredicateNode>(Pred::NeverExecute, false);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue