HostInterface: Make SetUserDirectory() overridable by frontends

This commit is contained in:
Connor McLaughlin
2020-04-05 22:59:06 +10:00
parent 11e8a91e30
commit e7640d5367
13 changed files with 188 additions and 108 deletions

View File

@@ -31,6 +31,8 @@ public:
void SetVSync(bool enabled) override;
void Render() override;
private:
const char* GetGLSLVersionString() const;
std::string GetGLSLVersionHeader() const;
@@ -39,7 +41,6 @@ private:
bool CreateImGuiContext();
bool CreateGLResources();
void Render() override;
void RenderDisplay();
SDL_Window* m_window = nullptr;