Jon Harper
Jon Harper
The accepted answer dates from 2014, so I added a comment asking if new APIs had been developed in 7 years... I'll wait a bit to see if there's a...
It's been a week, I've made a PR..
With the new binaries, I get the following linker error when trying to build the native part of the example android app after recompiling/reinstalling esfml: ``` Compile++ thumb : sfml-activity
What is the example app suppose to look like ? Sound ? Graphics ?
Using https://github.com/MarioLiebisch/esfml/commit/87d0e5314310ff4af34ca94e2748bfc74c3a40a9 an android-ndk-9 I'm back to the following errors in logcat. 08-27 21:28:42.602: W/Adreno200-EGL(9950): eglMakeCurrent:2857: EGL_BAD_ALLOC 08-27 21:28:42.602: E/libEGL(9950): eglMakeCurrent:593 error 3003 (EGL_BAD_ALLOC) On screen, there is an action...
You are right about the warning of CMake. the following main method still gives the EGL_BAD_ALLOC errors : ``` int main(int argc, char *argv[]) { sf::RenderWindow window(sf::VideoMode::getDesktopMode(), ""); while(true); }...
I mean I updated the binaries in esfml and my ndk (make and make install), but didn't run ndk-build in the example app, cleaned the java project in eclipse and...
I got it to work thanks to http://stackoverflow.com/questions/12443016/why-is-eglmakecurrent-failing-with-egl-bad-alloc ``` diff diff --git a/src/sfml/window/Android/EGLContext.cpp b/src/sfml/window/Android/EGLContext.cpp index 31db24c..f8a4219 100644 --- a/src/sfml/window/Android/EGLContext.cpp +++ b/src/sfml/window/Android/EGLContext.cpp @@ -69,7 +69,11 @@ m_surface (EGL_NO_SURFACE) // Note: The...
we should improve the drawing of https://javadoc.io/static/com.powsybl/powsybl-core/6.4.1/com/powsybl/iidm/network/doc-files/nodeBreakerTopologyGraph.svg to have the pink edge more closely associated with the coupler, it's far to the right and not obvious that this is what...
We should add more voltage level examples to https://javadoc.io/doc/com.powsybl/powsybl-core/latest/com/powsybl/iidm/network/VoltageLevel.html (keep the existing simple and standard one, but add more to show what is possible) - a case with some busbars...