Qt/GPU Breakpoints: Added three more breakpoint types:

* IncomingDisplayTransfer: Triggered just before a display transfer is performed.
* GSPCommandProcessed: Triggered right after a GSP command is processed.
* BufferSwapped: Triggered when the frames flip
This commit is contained in:
Subv 2015-07-22 18:20:54 -05:00
parent 3a5352baf8
commit 6c0ea5f5e8
5 changed files with 24 additions and 7 deletions

View file

@ -25,11 +25,14 @@ public:
enum class Event {
FirstEvent = 0,
CommandLoaded = FirstEvent,
CommandProcessed,
PicaCommandLoaded = FirstEvent,
PicaCommandProcessed,
IncomingPrimitiveBatch,
FinishedPrimitiveBatch,
VertexLoaded,
IncomingDisplayTransfer,
GSPCommandProcessed,
BufferSwapped,
NumEvents
};