From e35251ac748974db1760d29161306d36d830dc92 Mon Sep 17 00:00:00 2001 From: offtkp Date: Tue, 24 Oct 2023 15:50:10 +0300 Subject: [PATCH] Minor hydra gl interface fixup --- src/hydra_core.cpp | 12 +++++++----- third_party/hydra_core | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/src/hydra_core.cpp b/src/hydra_core.cpp index 3c809dc3..25da6753 100644 --- a/src/hydra_core.cpp +++ b/src/hydra_core.cpp @@ -18,8 +18,8 @@ class HC_GLOBAL HydraCore final : public hydra::IBase, public hydra::IOpenGlRend void setOutputSize(hydra::Size size) override; // IOpenGlRendered + void resetContext() override; void setFbo(unsigned handle) override; - void setContext(void* context) override; void setGetProcAddress(void* function) override; // IFrontendDriven @@ -34,6 +34,7 @@ class HC_GLOBAL HydraCore final : public hydra::IBase, public hydra::IOpenGlRend RendererGL* renderer; void (*pollInputCallback)() = nullptr; int32_t (*checkButtonCallback)(uint32_t player, hydra::ButtonType button) = nullptr; + void* getProcAddress = nullptr; }; HydraCore::HydraCore() : emulator(new Emulator) { @@ -100,13 +101,13 @@ hydra::Size HydraCore::getNativeSize() { return {400, 480}; } // Size doesn't matter as the glBlitFramebuffer call is commented out for the core void HydraCore::setOutputSize(hydra::Size size) {} -void HydraCore::setGetProcAddress(void* function) { +void HydraCore::resetContext() { #ifdef __ANDROID__ - if (!gladLoadGLES2Loader(reinterpret_cast(function))) { + if (!gladLoadGLES2Loader(reinterpret_cast(getProcAddress))) { Helpers::panic("OpenGL ES init failed"); } #else - if (!gladLoadGLLoader(reinterpret_cast(function))) { + if (!gladLoadGLLoader(reinterpret_cast(getProcAddress))) { Helpers::panic("OpenGL init failed"); } #endif @@ -114,9 +115,10 @@ void HydraCore::setGetProcAddress(void* function) { emulator->initGraphicsContext(nullptr); } -void HydraCore::setContext(void*) {} void HydraCore::setFbo(unsigned handle) { renderer->setFBO(handle); } +void HydraCore::setGetProcAddress(void* function) { getProcAddress = function; } + void HydraCore::setPollInputCallback(void (*callback)()) { pollInputCallback = callback; } void HydraCore::setCheckButtonCallback(int32_t (*callback)(uint32_t player, hydra::ButtonType button)) { checkButtonCallback = callback; } diff --git a/third_party/hydra_core b/third_party/hydra_core index e4cc6b0f..28311efe 160000 --- a/third_party/hydra_core +++ b/third_party/hydra_core @@ -1 +1 @@ -Subproject commit e4cc6b0fc224583e509bc3472a4c11eafb69c041 +Subproject commit 28311efe6e96af0b192f07179fe87dadab479041