CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/Windows/GPU/WindowsGraphicsContext.h
Views: 1401
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