José Pereda
José Pereda
Great, good to know. Are you seeing any side effects because of this “high” value now (4 vs 1)? Like selecting one item instead of the next one if you...
is this still an issue @johanvos ?
It has an impact of around 6 MB. These are the default charsets added: [link](https://github.com/oracle/graal/blob/79d85a3f0a41bb264dd396f6ff335da29525bcd1/substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/jdk/LocalizationFeature.java#L116-L128). Not sure how we could add more default ones, like `UTF-32BE` that seems to be...
@ennerf After https://github.com/gluonhq/substrate/pull/1103, you can also create a c file with all the missing methods that you need, like: `missing_symbols.c`: ``` #include void JNI_OnLoad_javajpeg() { fprintf(stderr, "We should never reach...
About quads, the plan is to add them to FXyz-Core, that contains primitives and other shapes based on TriangleMesh. After all, the `PolygonMesh`/`PolygonMeshView` [approach](https://github.com/javafxports/openjdk-jfx/blob/develop/apps/samples/3DViewer/src/main/java/com/javafx/experiments/shape3d/PolygonMeshView.java#L276) is just _another _TriangleMesh_. While it...
@nlisker I've created a [WIP] PR with [FXyz-Importers](https://github.com/FXyz/FXyz/pull/42), including obj for now. There is also a sample that can be run from FXyz-Samples. I've added you as collaborator of the...
@nlisker The next two importers are DAE and MAX I've tested DAE with a few files and it fails to import them. I believe most of the issues are related...
Agree, we want to have a release as soon as possible, to encourage others to use it and contribute. I guess OBJ/MAYA will have to do for now. We can...
@nlisker That's a good feature, but actually the FXyz-Samples has something quite similar for `TexturedMesh`, where you can set the material properties including the different textures (color, image, density map,...
I didn't know about that format, but any contribution is really welcome. @FalcoTheBold feel free to submit a PR, or if you want us to help you process missing parts...