mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-20 04:29:13 +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
|
||||
void resetContext() override;
|
||||
void destroyContext() override;
|
||||
void setFbo(unsigned handle) override;
|
||||
void setGetProcAddress(void* function) override;
|
||||
|
||||
|
@ -115,6 +116,8 @@ void HydraCore::resetContext() {
|
|||
emulator->initGraphicsContext(nullptr);
|
||||
}
|
||||
|
||||
void HydraCore::destroyContext() {}
|
||||
|
||||
void HydraCore::setFbo(unsigned handle) { renderer->setFBO(handle); }
|
||||
|
||||
void HydraCore::setGetProcAddress(void* function) { getProcAddress = function; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue