Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hrydgard
GitHub Repository: hrydgard/ppsspp
Path: blob/master/Windows/GPU/WindowsGraphicsContext.h
3185 views
1
#pragma once
2
3
#include "Common/GraphicsContext.h"
4
#include "Common/CommonWindows.h"
5
6
class WindowsGraphicsContext : public GraphicsContext {
7
public:
8
virtual bool Init(HINSTANCE hInst, HWND window, std::string *error_message) = 0;
9
};
10
11