mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
0e3a84b4a8
It works after the move, on Windows and Android at least. Deletes the D3DX9 shader compiler loader, which was not used.
45 lines
905 B
C++
45 lines
905 B
C++
#include "SDL.h"
|
|
#include "SDL_syswm.h"
|
|
|
|
#include "Common/GraphicsContext.h"
|
|
#include "Common/GPU/Vulkan/VulkanContext.h"
|
|
#include "Common/GPU/Vulkan/VulkanDebug.h"
|
|
|
|
#include "Common/GPU/thin3d.h"
|
|
|
|
class VulkanRenderManager;
|
|
|
|
class SDLVulkanGraphicsContext : public GraphicsContext {
|
|
public:
|
|
SDLVulkanGraphicsContext() {}
|
|
~SDLVulkanGraphicsContext() {
|
|
delete draw_;
|
|
}
|
|
|
|
bool Init(SDL_Window *&window, int x, int y, int mode, std::string *error_message);
|
|
|
|
void Shutdown() override;
|
|
|
|
void SwapBuffers() override {
|
|
// We don't do it this way.
|
|
}
|
|
|
|
void Resize() override;
|
|
|
|
void Poll() override;
|
|
|
|
void SwapInterval(int interval) override {
|
|
}
|
|
void *GetAPIContext() override {
|
|
return vulkan_;
|
|
}
|
|
|
|
Draw::DrawContext *GetDrawContext() override {
|
|
return draw_;
|
|
}
|
|
private:
|
|
Draw::DrawContext *draw_ = nullptr;
|
|
VulkanContext *vulkan_ = nullptr;
|
|
VulkanRenderManager *renderManager_ = nullptr;
|
|
};
|