mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
21 lines
387 B
C++
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;
|
|
};
|