José Pereda

Results 245 comments of José Pereda

This is a known issue for any JavaFX app: https://bugs.openjdk.java.net/browse/JDK-8223746 Scene Builder has recently added a workaround to avoid it: https://github.com/gluonhq/scenebuilder/pull/358/files, which effectively overrides `java.library.path` for the application, or see...

Sure, no problem with that.

Absolutely! Extending the lighting options in the samples or having a new dedicated sample (based on your tests) would be great. Using JavaFX 16 (ea) is not a problem in...

GraalVM introduced the `resources:` protocol, and that has to be added as well to OpenJFX. It has been introduced already for Media on Linux (see https://github.com/johanvos/jfx/blob/master/modules/javafx.media/src/main/java/com/sun/media/jfxmedia/locator/ConnectionHolder.java#L346) So far, for iOS,...

There is a solution for having all the data points in one single `TriangleMesh`, and letting them be colored based on some function: The `ScatterMesh` [primitive](https://github.com/FXyz/FXyz/blob/2fb5051d9beb7a9184160943dd8f9f5577b44b7e/FXyz-Core/src/main/java/org/fxyz3d/shapes/primitives/ScatterMesh.java). It can deal with...

First, you can read about how to deal with [reflection](https://github.com/oracle/graal/blob/master/substratevm/REFLECTION.md) or reflection in [JNI](https://github.com/oracle/graal/blob/master/substratevm/JNI.md) while using GraalVM and native-image. Then, this is what Gluon Substrate does to solve this issues...

Possible explanation: there is one or more missing classes that when called via reflection fail silently and you don't get a stack trace to find them. Here is another option...

Yes, we are already considering that option (agent integration). In the meantime we have a small "core" of reflection/jni config files, that should cover the initial cases, and for more...

Hmm, `NSMenuFX` uses private API and it was created for JDK 8. I can barely make it work on Catalina (after adding several add-exports, add-opens), runs but only shows up...

Having a look at your sample, I can reproduce the issue now, thanks. The stacktrace led to https://github.com/codecentric/NSMenuFX/blob/master/src/main/java/de/codecentric/centerdevice/glass/TKSystemMenuAdapter.java#L32, where `MethodHandles` are used. The problem might be related to this known...