liverpool: Stub SetPredication with a warning

* Better than outright crash
This commit is contained in:
IndecisiveTurtle 2025-02-24 11:48:32 +02:00
parent 84700588db
commit 59a8615393

View File

@ -395,6 +395,10 @@ Liverpool::Task Liverpool::ProcessGraphics(std::span<const u32> dcb, std::span<c
header + 2, (count - 1) * sizeof(u32));
break;
}
case PM4ItOpcode::SetPredication: {
LOG_WARNING(Render_Vulkan, "Unimplemented IT_SET_PREDICATION");
break;
}
case PM4ItOpcode::IndexType: {
const auto* index_type = reinterpret_cast<const PM4CmdDrawIndexType*>(header);
regs.index_buffer_type.raw = index_type->raw;