mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-22 13:18:54 -05:00
Pica/citra-qt: Replace command list view and command list debugging code with something more sophisticated.
This commit is contained in:
@ -33,6 +33,8 @@ static inline void WritePicaReg(u32 id, u32 value, u32 mask) {
|
||||
u32 old_value = registers[id];
|
||||
registers[id] = (old_value & ~mask) | (value & mask);
|
||||
|
||||
DebugUtils::OnPicaRegWrite(id, registers[id]);
|
||||
|
||||
switch(id) {
|
||||
// It seems like these trigger vertex rendering
|
||||
case PICA_REG_INDEX(trigger_draw):
|
||||
|
Reference in New Issue
Block a user