diff options
| author | 2016-09-18 09:38:01 +0900 | |
|---|---|---|
| committer | 2016-09-18 09:38:01 +0900 | |
| commit | dc8479928c5aee4c6ad6fe4f59006fb604cee701 (patch) | |
| tree | 569a7f13128450bbab973236615587ff00bced5f /src/citra_qt/debugger/graphics_cmdlists.h | |
| parent | Travis: Import Dolphin’s clang-format hook. (diff) | |
| download | yuzu-dc8479928c5aee4c6ad6fe4f59006fb604cee701.tar.gz yuzu-dc8479928c5aee4c6ad6fe4f59006fb604cee701.tar.xz yuzu-dc8479928c5aee4c6ad6fe4f59006fb604cee701.zip | |
Sources: Run clang-format on everything.
Diffstat (limited to 'src/citra_qt/debugger/graphics_cmdlists.h')
| -rw-r--r-- | src/citra_qt/debugger/graphics_cmdlists.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/citra_qt/debugger/graphics_cmdlists.h b/src/citra_qt/debugger/graphics_cmdlists.h index 8a2a294b9..b2242eca4 100644 --- a/src/citra_qt/debugger/graphics_cmdlists.h +++ b/src/citra_qt/debugger/graphics_cmdlists.h | |||
| @@ -7,14 +7,13 @@ | |||
| 7 | #include <QAbstractListModel> | 7 | #include <QAbstractListModel> |
| 8 | #include <QDockWidget> | 8 | #include <QDockWidget> |
| 9 | 9 | ||
| 10 | #include "video_core/gpu_debugger.h" | ||
| 11 | #include "video_core/debug_utils/debug_utils.h" | 10 | #include "video_core/debug_utils/debug_utils.h" |
| 11 | #include "video_core/gpu_debugger.h" | ||
| 12 | 12 | ||
| 13 | class QPushButton; | 13 | class QPushButton; |
| 14 | class QTreeView; | 14 | class QTreeView; |
| 15 | 15 | ||
| 16 | class GPUCommandListModel : public QAbstractListModel | 16 | class GPUCommandListModel : public QAbstractListModel { |
| 17 | { | ||
| 18 | Q_OBJECT | 17 | Q_OBJECT |
| 19 | 18 | ||
| 20 | public: | 19 | public: |
| @@ -27,7 +26,8 @@ public: | |||
| 27 | int columnCount(const QModelIndex& parent = QModelIndex()) const override; | 26 | int columnCount(const QModelIndex& parent = QModelIndex()) const override; |
| 28 | int rowCount(const QModelIndex& parent = QModelIndex()) const override; | 27 | int rowCount(const QModelIndex& parent = QModelIndex()) const override; |
| 29 | QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override; | 28 | QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override; |
| 30 | QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override; | 29 | QVariant headerData(int section, Qt::Orientation orientation, |
| 30 | int role = Qt::DisplayRole) const override; | ||
| 31 | 31 | ||
| 32 | public slots: | 32 | public slots: |
| 33 | void OnPicaTraceFinished(const Pica::DebugUtils::PicaTrace& trace); | 33 | void OnPicaTraceFinished(const Pica::DebugUtils::PicaTrace& trace); |
| @@ -36,8 +36,7 @@ private: | |||
| 36 | Pica::DebugUtils::PicaTrace pica_trace; | 36 | Pica::DebugUtils::PicaTrace pica_trace; |
| 37 | }; | 37 | }; |
| 38 | 38 | ||
| 39 | class GPUCommandListWidget : public QDockWidget | 39 | class GPUCommandListWidget : public QDockWidget { |
| 40 | { | ||
| 41 | Q_OBJECT | 40 | Q_OBJECT |
| 42 | 41 | ||
| 43 | public: | 42 | public: |