Play-/Source/ui_qt/GSH_VulkanQt.h
Jean-Philip Desjardins 4c4e0341e0 Remove some macOS specific changes.
Does not seem necessary anymore and makes everything more stable.
2021-03-31 13:12:24 -04:00

21 lines
387 B
C++

#pragma once
#include "gs/GSH_Vulkan/GSH_Vulkan.h"
class QWindow;
class CGSH_VulkanQt : public CGSH_Vulkan
{
public:
CGSH_VulkanQt(QWindow*);
virtual ~CGSH_VulkanQt() = default;
static FactoryFunction GetFactoryFunction(QWindow*);
void InitializeImpl() override;
void ReleaseImpl() override;
void PresentBackbuffer() override;
private:
QWindow* m_renderWindow = nullptr;
};