2014-05-18 15:52:22 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2014-08-14 17:21:55 +00:00
|
|
|
#include <QAbstractListModel>
|
2014-05-18 15:52:22 +00:00
|
|
|
#include <QDockWidget>
|
|
|
|
|
|
|
|
#include "video_core/gpu_debugger.h"
|
2014-08-14 17:21:55 +00:00
|
|
|
#include "video_core/debug_utils/debug_utils.h"
|
2014-05-18 15:52:22 +00:00
|
|
|
|
2014-08-14 17:21:55 +00:00
|
|
|
class GPUCommandListModel : public QAbstractListModel
|
2014-05-18 15:52:22 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
GPUCommandListModel(QObject* parent);
|
|
|
|
|
2014-10-26 04:56:13 +00:00
|
|
|
int columnCount(const QModelIndex& parent = QModelIndex()) const override;
|
2014-05-18 15:52:22 +00:00
|
|
|
int rowCount(const QModelIndex& parent = QModelIndex()) const override;
|
|
|
|
QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override;
|
|
|
|
|
|
|
|
public slots:
|
2014-08-14 17:21:55 +00:00
|
|
|
void OnPicaTraceFinished(const Pica::DebugUtils::PicaTrace& trace);
|
2014-05-18 15:52:22 +00:00
|
|
|
|
|
|
|
private:
|
2014-08-14 17:21:55 +00:00
|
|
|
Pica::DebugUtils::PicaTrace pica_trace;
|
2014-05-18 15:52:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class GPUCommandListWidget : public QDockWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
GPUCommandListWidget(QWidget* parent = 0);
|
|
|
|
|
2014-08-14 17:21:55 +00:00
|
|
|
public slots:
|
|
|
|
void OnToggleTracing();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void TracingFinished(const Pica::DebugUtils::PicaTrace&);
|
|
|
|
|
2014-05-18 15:52:22 +00:00
|
|
|
private:
|
2014-08-14 17:21:55 +00:00
|
|
|
std::unique_ptr<Pica::DebugUtils::PicaTrace> pica_trace;
|
2014-05-18 15:52:22 +00:00
|
|
|
};
|