mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
destroyContext function stub
This commit is contained in:
parent
e35251ac74
commit
9e30e6a14c
2 changed files with 4 additions and 1 deletions
|
@ -19,6 +19,7 @@ class HC_GLOBAL HydraCore final : public hydra::IBase, public hydra::IOpenGlRend
|
||||||
|
|
||||||
// IOpenGlRendered
|
// IOpenGlRendered
|
||||||
void resetContext() override;
|
void resetContext() override;
|
||||||
|
void destroyContext() override;
|
||||||
void setFbo(unsigned handle) override;
|
void setFbo(unsigned handle) override;
|
||||||
void setGetProcAddress(void* function) override;
|
void setGetProcAddress(void* function) override;
|
||||||
|
|
||||||
|
@ -115,6 +116,8 @@ void HydraCore::resetContext() {
|
||||||
emulator->initGraphicsContext(nullptr);
|
emulator->initGraphicsContext(nullptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void HydraCore::destroyContext() {}
|
||||||
|
|
||||||
void HydraCore::setFbo(unsigned handle) { renderer->setFBO(handle); }
|
void HydraCore::setFbo(unsigned handle) { renderer->setFBO(handle); }
|
||||||
|
|
||||||
void HydraCore::setGetProcAddress(void* function) { getProcAddress = function; }
|
void HydraCore::setGetProcAddress(void* function) { getProcAddress = function; }
|
||||||
|
|
2
third_party/hydra_core
vendored
2
third_party/hydra_core
vendored
|
@ -1 +1 @@
|
||||||
Subproject commit 28311efe6e96af0b192f07179fe87dadab479041
|
Subproject commit 1cdb1eda5f368481e216416a119c85664e8c72ab
|
Loading…
Add table
Reference in a new issue