LWJGL Forum

Programming => Lightweight Java Gaming Library => Topic started by: pyros2097 on August 22, 2015, 04:41:58

Title: Can I use LWJGL in other languages like Go?
Post by: pyros2097 on August 22, 2015, 04:41:58
I want to be able to call the low level LWJGL C functions using ffi from other languages like Go, Pony or nodejs. Is that possible or will it need some hacks?
Title: Re: Can I use LWJGL in other languages like Go?
Post by: spasi on August 22, 2015, 07:29:11
The LWJGL native libraries export JNI functions only, i.e. functions that look like "Java_org_lwjgl_glfw_GLFW_glfwInit" and not like "glfwInit". What are you trying to do exactly?