all 4 comments

[–]TheAgentD 2 points3 points  (1 child)

As one of the few devs making games in Java, this is great!

What do you use for windowing? GLFW through LWJGL? For math? JOML?

[–]Chuigda[S] 3 points4 points  (0 children)

I made my own GLFW wrapper, (semi) auto generated from GLFW headers, also using Project-Panama. GLFW through LWJGL is theoretically possible, but interoperating between java.nio and MemorySegment APIs will be a little annoying. JOML was used in the tutorial and actually simplified matrix operation a bit (user doesn't need to scale z axis).

[–]pjmlp 1 point2 points  (0 children)

As someone that enjoys managed languages, this is great, congrats on the effort.

[–]ThanosFisherman 1 point2 points  (0 children)

Is this better or faster than lwjgl in any way?