diff options
author | Tony Wasserka <NeoBrainX@gmail.com> | 2014-05-17 22:38:10 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-06-12 12:10:49 +0200 |
commit | 87e98ff97be94edf8d4c50a9cf232a008213a928 (patch) | |
tree | 147076e1bf12fc83817600b405206d3f722ab215 /src/citra_qt/debugger/graphics.hxx | |
parent | Add initial graphics debugger interface. (diff) | |
download | yuzu-87e98ff97be94edf8d4c50a9cf232a008213a928.tar yuzu-87e98ff97be94edf8d4c50a9cf232a008213a928.tar.gz yuzu-87e98ff97be94edf8d4c50a9cf232a008213a928.tar.bz2 yuzu-87e98ff97be94edf8d4c50a9cf232a008213a928.tar.lz yuzu-87e98ff97be94edf8d4c50a9cf232a008213a928.tar.xz yuzu-87e98ff97be94edf8d4c50a9cf232a008213a928.tar.zst yuzu-87e98ff97be94edf8d4c50a9cf232a008213a928.zip |
Diffstat (limited to 'src/citra_qt/debugger/graphics.hxx')
-rw-r--r-- | src/citra_qt/debugger/graphics.hxx | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/citra_qt/debugger/graphics.hxx b/src/citra_qt/debugger/graphics.hxx new file mode 100644 index 000000000..72656f93c --- /dev/null +++ b/src/citra_qt/debugger/graphics.hxx @@ -0,0 +1,43 @@ +// Copyright 2014 Citra Emulator Project +// Licensed under GPLv2 +// Refer to the license.txt file included. + +#pragma once + +#include <QAbstractListModel> +#include <QDockWidget> + +#include "video_core/gpu_debugger.h" + +class GPUCommandStreamItemModel : public QAbstractListModel, public GraphicsDebugger::DebuggerObserver +{ + Q_OBJECT + +public: + GPUCommandStreamItemModel(QObject* parent); + + int rowCount(const QModelIndex& parent = QModelIndex()) const override; + QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override; + +public: + void GXCommandProcessed(int total_command_count) override; + +public slots: + void OnGXCommandFinishedInternal(int total_command_count); + +signals: + void GXCommandFinished(int total_command_count); + +private: + int command_count; +}; + +class GPUCommandStreamWidget : public QDockWidget +{ + Q_OBJECT + +public: + GPUCommandStreamWidget(QWidget* parent = 0); + +private: +}; |