mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
15de6e6b98
Needed to prevent clutter all over the codebase. Does not go all the way yet, goal would be a common render loop between platforms but not there yet.
11 lines
235 B
C++
11 lines
235 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;
|
|
};
|
|
|