2014-05-18 15:52:22 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-05-18 15:52:22 +00:00
|
|
|
// 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-10-26 10:40:12 +00:00
|
|
|
class QPushButton;
|
2014-08-24 12:39:52 +00:00
|
|
|
class QTreeView;
|
2014-10-26 10:40:12 +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:
|
2014-08-24 12:39:52 +00:00
|
|
|
enum {
|
|
|
|
CommandIdRole = Qt::UserRole,
|
|
|
|
};
|
|
|
|
|
2014-05-18 15:52:22 +00:00
|
|
|
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;
|
2014-10-26 10:40:12 +00:00
|
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
|
2014-05-18 15:52:22 +00:00
|
|
|
|
|
|
|
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();
|
2014-08-24 15:23:02 +00:00
|
|
|
void OnCommandDoubleClicked(const QModelIndex&);
|
|
|
|
|
2014-08-24 12:39:52 +00:00
|
|
|
void SetCommandInfo(const QModelIndex&);
|
2014-08-14 17:21:55 +00:00
|
|
|
|
|
|
|
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-10-26 10:40:12 +00:00
|
|
|
|
2014-08-24 12:39:52 +00:00
|
|
|
QTreeView* list_widget;
|
|
|
|
QWidget* command_info_widget;
|
2014-10-26 10:40:12 +00:00
|
|
|
QPushButton* toggle_tracing;
|
2014-05-18 15:52:22 +00:00
|
|
|
};
|
2014-08-24 15:23:02 +00:00
|
|
|
|
|
|
|
class TextureInfoDockWidget : public QDockWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
TextureInfoDockWidget(const Pica::DebugUtils::TextureInfo& info, QWidget* parent = nullptr);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void UpdatePixmap(const QPixmap& pixmap);
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void OnAddressChanged(qint64 value);
|
|
|
|
void OnFormatChanged(int value);
|
|
|
|
void OnWidthChanged(int value);
|
|
|
|
void OnHeightChanged(int value);
|
|
|
|
void OnStrideChanged(int value);
|
|
|
|
|
|
|
|
private:
|
|
|
|
QPixmap ReloadPixmap() const;
|
|
|
|
|
|
|
|
Pica::DebugUtils::TextureInfo info;
|
|
|
|
};
|