f92cbc5501
Adds a Qt and SDL2 frontend for Vulkan. It also finishes the missing bits on Vulkan initialization.
45 lines
962 B
C++
45 lines
962 B
C++
// Copyright 2016 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
#include <vector>
|
|
#include <QString>
|
|
#include <QWidget>
|
|
#include "core/settings.h"
|
|
|
|
namespace Ui {
|
|
class ConfigureGraphics;
|
|
}
|
|
|
|
class ConfigureGraphics : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ConfigureGraphics(QWidget* parent = nullptr);
|
|
~ConfigureGraphics() override;
|
|
|
|
void ApplyConfiguration();
|
|
|
|
private:
|
|
void changeEvent(QEvent* event) override;
|
|
void RetranslateUI();
|
|
|
|
void SetConfiguration();
|
|
|
|
void UpdateBackgroundColorButton(QColor color);
|
|
void UpdateDeviceComboBox();
|
|
void UpdateDeviceSelection(int device);
|
|
|
|
void RetrieveVulkanDevices();
|
|
|
|
Settings::RendererBackend GetCurrentGraphicsBackend() const;
|
|
|
|
std::unique_ptr<Ui::ConfigureGraphics> ui;
|
|
QColor bg_color;
|
|
|
|
std::vector<QString> vulkan_devices;
|
|
u32 vulkan_device{};
|
|
};
|