lwjgl3-demos
lwjgl3-demos copied to clipboard
Demo suite for LWJGL 3
I finished intro1-5 but now don't know which one im supposed to look at next, is there a order im supposed to read through?
A graphical SWT application showing the demo classes in a tree structure, and to launch the demos in separate processes. To build: ``` mvnw package -Dclass=DemoLauncher ``` Then run the...
This PR is recommended to be merged to its own branch, rather than to the main branch, as the code is designed to compile against the official LWJGL 3.2.3 release,...
Glancing over the opengl examples I found a lot of warnings and bad practices: code duplication, non-private fields and various inconsistencies. I'd like to propose some simple refactorings to clean...
so that the LWJGL's build number is shown properly in debug output of the shaded uber jar. This would fix the following debug output which displays the LWJGL's build number...
OS name: macOS OS version: 12.0.1 Java version: 11.0.12 running demo: vulkan.raytracing.SimpleSphere logging: ``` $ java -XstartOnFirstThread -cp target/lwjgl3-demos.jar org.lwjgl.demo.vulkan.raytracing.SimpleSphere [LWJGL] Version: 3.3.0 SNAPSHOT [LWJGL] OS: Mac OS X v10.16...
Can we have some tags matching the demos to be compatible with the LWJGL3 release? Keeping the demos working with the latest and greatest features of LWJGL3 *snapshot* is great,...
Hi, thanks for the wonderful introductions to Vulkan in LWJGL. To prevent the following error when runnning `InstancedSpheresDemo.java`, I need to put `Thread.sleep(40);` before [`vkQueueWaitIdle(queue);`](https://github.com/LWJGL/lwjgl3-demos/blob/main/src/org/lwjgl/demo/vulkan/InstancedSpheresDemo.java#L1440): ``` [mvk-warn] VK_TIMEOUT: vkQueueWaitIdle timed...