Pica/citra-qt: Replace command list view and command list debugging code with something more sophisticated.
This commit is contained in:
parent
0465adf206
commit
26ade98411
8 changed files with 142 additions and 194 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue