diff options
| author | 2015-07-24 01:58:11 +0200 | |
|---|---|---|
| committer | 2015-07-24 01:58:11 +0200 | |
| commit | 1760eb5ca692b4ca289087eaae1e0975a545be3e (patch) | |
| tree | d10fbb61342af95db208b300e1185f9503f1a79c /src/citra_qt/debugger/graphics_breakpoints.cpp | |
| parent | Merge pull request #977 from yuriks/glenable-tex2d (diff) | |
| parent | Qt/GPU Breakpoints: Added three more breakpoint types: (diff) | |
| download | yuzu-1760eb5ca692b4ca289087eaae1e0975a545be3e.tar.gz yuzu-1760eb5ca692b4ca289087eaae1e0975a545be3e.tar.xz yuzu-1760eb5ca692b4ca289087eaae1e0975a545be3e.zip | |
Merge pull request #980 from Subv/more_breakpoints
Qt/GPU Breakpoints: Added three more breakpoint types.
Diffstat (limited to 'src/citra_qt/debugger/graphics_breakpoints.cpp')
| -rw-r--r-- | src/citra_qt/debugger/graphics_breakpoints.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/citra_qt/debugger/graphics_breakpoints.cpp b/src/citra_qt/debugger/graphics_breakpoints.cpp index 1da64f616..4606c01f2 100644 --- a/src/citra_qt/debugger/graphics_breakpoints.cpp +++ b/src/citra_qt/debugger/graphics_breakpoints.cpp | |||
| @@ -42,11 +42,14 @@ QVariant BreakPointModel::data(const QModelIndex& index, int role) const | |||
| 42 | case 0: | 42 | case 0: |
| 43 | { | 43 | { |
| 44 | static const std::map<Pica::DebugContext::Event, QString> map = { | 44 | static const std::map<Pica::DebugContext::Event, QString> map = { |
| 45 | { Pica::DebugContext::Event::CommandLoaded, tr("Pica command loaded") }, | 45 | { Pica::DebugContext::Event::PicaCommandLoaded, tr("Pica command loaded") }, |
| 46 | { Pica::DebugContext::Event::CommandProcessed, tr("Pica command processed") }, | 46 | { Pica::DebugContext::Event::PicaCommandProcessed, tr("Pica command processed") }, |
| 47 | { Pica::DebugContext::Event::IncomingPrimitiveBatch, tr("Incoming primitive batch") }, | 47 | { Pica::DebugContext::Event::IncomingPrimitiveBatch, tr("Incoming primitive batch") }, |
| 48 | { Pica::DebugContext::Event::FinishedPrimitiveBatch, tr("Finished primitive batch") }, | 48 | { Pica::DebugContext::Event::FinishedPrimitiveBatch, tr("Finished primitive batch") }, |
| 49 | { Pica::DebugContext::Event::VertexLoaded, tr("Vertex loaded") } | 49 | { Pica::DebugContext::Event::VertexLoaded, tr("Vertex loaded") }, |
| 50 | { Pica::DebugContext::Event::IncomingDisplayTransfer, tr("Incoming display transfer") }, | ||
| 51 | { Pica::DebugContext::Event::GSPCommandProcessed, tr("GSP command processed") }, | ||
| 52 | { Pica::DebugContext::Event::BufferSwapped, tr("Buffers swapped") } | ||
| 50 | }; | 53 | }; |
| 51 | 54 | ||
| 52 | DEBUG_ASSERT(map.size() == static_cast<size_t>(Pica::DebugContext::Event::NumEvents)); | 55 | DEBUG_ASSERT(map.size() == static_cast<size_t>(Pica::DebugContext::Event::NumEvents)); |