Merge pull request #90 from gizmo98/patch-2
[libretro-ppsspp.git] / headless / WindowsHeadlessHostDx9.h
blobea41e64db63fa1df3890a4a4908e7016728aa7a2
1 // Copyright (c) 2012- PPSSPP Project.
3 // This program is free software: you can redistribute it and/or modify
4 // it under the terms of the GNU General Public License as published by
5 // the Free Software Foundation, version 2.0 or later versions.
7 // This program is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 // GNU General Public License 2.0 for more details.
12 // A copy of the GPL 2.0 should have been included with the program.
13 // If not, see http://www.gnu.org/licenses/
15 // Official git repository and contact information can be found at
16 // https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
18 #pragma once
20 #include "StubHost.h"
21 #include "WindowsHeadlessHost.h"
23 #undef HEADLESSHOST_CLASS
24 #define HEADLESSHOST_CLASS WindowsHeadlessHost
26 #include "Common/CommonWindows.h"
28 // TODO: Get rid of this junk
29 class WindowsHeadlessHostDx9 : public WindowsHeadlessHost
31 public:
32 bool InitGraphics(std::string *error_message) override;
33 void ShutdownGraphics() override;
35 void SwapBuffers() override;
37 private:
38 bool ResizeGL() override;