Releases: dkorpel/glfw-d
Releases · dkorpel/glfw-d
v1.1.2
v1.1.1
v1.1.0
Rumble support
Joystick rumble support has been added, based on glfw/glfw#1678.
int glfwSetJoystickRumble(int jid, float slowMotorIntensity, float fastMotorIntensity);As of writing, the PR has not been merged, so the final API is not yet confirmed. To avoid breaking changes it is therefore only available using the version identifier GLFW_PREVIEW_JOYSTICK_RUMBLE. Once the function gets in GLFW 3.4, the preview flag will not be necessary anymore.
New examples
Instead of having a single example, there are now three:
glfw-d:empty-window: the oldglfw-d:examplewhich opens an empty windowglfw-d:triangle-gl: a simple 'hello world triangle' using OpenGLglfw-d:triangle-vulkan: a Vulkan example
Vulkan fixes
The library no longer gives compile errors when compiling with version identifier VK_VERSION_1_0.
The vulkan example uses erupteD instead of glfw's Vulkan module, so the Vulkan functions remain untested though.
v1.0.1
Initial release
- Support GLFW for Windows and Linux (x11)
- macOS and wayland not supported