ppsspp/Windows/GPU/WindowsGraphicsContext.h
Henrik Rydgård 1ea11c233c Remove "SwapBuffers" from the GraphicsContext interface.
Buildfixes

More buildfix

headless buildfix

One more buildfix
2023-08-11 01:57:02 +02:00

10 lines
234 B
C++

#pragma once
#include "Common/GraphicsContext.h"
#include "Common/CommonWindows.h"
class WindowsGraphicsContext : public GraphicsContext {
public:
virtual bool Init(HINSTANCE hInst, HWND window, std::string *error_message) = 0;
};