2014-05-17 20:38:10 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-05-17 20:38:10 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QAbstractListModel>
|
|
|
|
#include <QDockWidget>
|
|
|
|
#include "video_core/gpu_debugger.h"
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
class GPUCommandStreamItemModel : public QAbstractListModel,
|
|
|
|
public GraphicsDebugger::DebuggerObserver {
|
2014-05-17 20:38:10 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
class GPUCommandStreamWidget : public QDockWidget {
|
2014-05-17 20:38:10 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2015-09-11 18:50:10 +00:00
|
|
|
GPUCommandStreamWidget(QWidget* parent = nullptr);
|
2014-05-17 20:38:10 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
};
|