Stub PM4 0x8E opcode (#2998)

This commit is contained in:
Marcin Mikołajczyk 2025-05-27 21:09:03 +02:00 committed by GitHub
parent 99ccf56938
commit 139a253edc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 0 deletions

View file

@ -752,6 +752,10 @@ Liverpool::Task Liverpool::ProcessGraphics(std::span<const u32> dcb, std::span<c
strmout->buffer_select.Value()); strmout->buffer_select.Value());
break; break;
} }
case PM4ItOpcode::GetLodStats: {
LOG_WARNING(Render_Vulkan, "Unimplemented IT_GET_LOD_STATS");
break;
}
default: default:
UNREACHABLE_MSG("Unknown PM4 type 3 opcode {:#x} with count {}", UNREACHABLE_MSG("Unknown PM4 type 3 opcode {:#x} with count {}",
static_cast<u32>(opcode), count); static_cast<u32>(opcode), count);

View file

@ -71,6 +71,7 @@ enum class PM4ItOpcode : u32 {
IncrementDeCounter = 0x85, IncrementDeCounter = 0x85,
WaitOnCeCounter = 0x86, WaitOnCeCounter = 0x86,
WaitOnDeCounterDiff = 0x88, WaitOnDeCounterDiff = 0x88,
GetLodStats = 0x8E,
DrawIndexIndirectCountMulti = 0x9d, DrawIndexIndirectCountMulti = 0x9d,
}; };