citra_qt: Replace 'Pica Framebuffer Debugger' with 'Pica Surface Viewer'

This commit is contained in:
Jannik Vogel 2016-04-09 18:23:15 +02:00
parent 75cbfeee58
commit 7d7849d71a
9 changed files with 876 additions and 583 deletions

View file

@ -61,25 +61,3 @@ private:
QWidget* command_info_widget;
QPushButton* toggle_tracing;
};
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;
};