2017-06-27 16:00:23 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-07-06 22:40:15 +00:00
|
|
|
#include "DolphinQt/Config/Graphics/GraphicsWidget.h"
|
2017-06-27 16:00:23 +00:00
|
|
|
|
|
|
|
class GraphicsWindow;
|
|
|
|
class QCheckBox;
|
|
|
|
class QComboBox;
|
|
|
|
class QSpinBox;
|
|
|
|
|
|
|
|
class SoftwareRendererWidget final : public GraphicsWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit SoftwareRendererWidget(GraphicsWindow* parent);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void BackendChanged(const QString& backend);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void LoadSettings() override;
|
|
|
|
void SaveSettings() override;
|
|
|
|
|
|
|
|
void CreateWidgets();
|
|
|
|
void ConnectWidgets();
|
|
|
|
void AddDescriptions();
|
|
|
|
|
|
|
|
QComboBox* m_backend_combo;
|
2017-11-19 21:11:33 +00:00
|
|
|
QCheckBox* m_show_statistics;
|
2017-06-27 16:00:23 +00:00
|
|
|
QCheckBox* m_dump_textures;
|
|
|
|
QCheckBox* m_dump_objects;
|
|
|
|
QCheckBox* m_dump_tev_stages;
|
|
|
|
QCheckBox* m_dump_tev_fetches;
|
|
|
|
|
|
|
|
QSpinBox* m_object_range_min;
|
|
|
|
QSpinBox* m_object_range_max;
|
|
|
|
};
|