LWJGL Forum

Programming => Vulkan => Topic started by: Kudze on April 14, 2016, 20:56:57

Title: Some stupid questions
Post by: Kudze on April 14, 2016, 20:56:57
Allright so as I can see Vulkan is impelemted in lwjgl3 (It has the package in it) But I can't find any documentations or anything to grab on. I want to start developing my game engine on vulkan in java. So is there any documentations on vulkan in java?
Title: Re: Some stupid questions
Post by: spasi on April 14, 2016, 21:37:35
The Vulkan bindings come with extensive Javadoc (http://javadoc.lwjgl.org/), but you should read the Vulkan specification (https://www.khronos.org/registry/vulkan/specs/1.0-wsi_extensions/xhtml/vkspec.html) first.

You can find Vulkan demos in the LWJGL 3 demo repository (https://github.com/LWJGL/lwjgl3-demos/tree/master/src/org/lwjgl/demo/vulkan). There's also the HelloVulkan (https://github.com/LWJGL/lwjgl3/blob/master/modules/core/src/test/java/org/lwjgl/demo/vulkan/HelloVulkan.java) sample.
Title: Re: Some stupid questions
Post by: Kudze on April 15, 2016, 15:48:08
Thank you :)
Title: Re: Some stupid questions
Post by: jfelrod1960 on March 26, 2017, 19:49:14
Yes spasi thank you!