/mach-glfw-vulkan-example

mach-glfw Vulkan example

Primary LanguageZigOtherNOASSERTION

mach/glfw Vulkan example Hexops logo

This is an example for how to use mach-glfw and vulkan-zig together to create a basic Vulkan window.

This is nearly a 1:1 copy of the vulkan-zig example by @snektron, the only difference is using mach-glfw.

image

Getting started

Install the Vulkan SDK

You must install the LunarG Vulkan SDK: https://vulkan.lunarg.com/sdk/home

Clone the repository and dependencies

git clone --recurse-submodules https://github.com/hexops/mach-glfw-vulkan-example

Ensure glslc is on your PATH

On MacOS, you may e.g. place the following in your ~/.zprofile file:

export PATH=$PATH:$HOME/VulkanSDK/1.2.189.0/macOS/bin/

Run the example

zig build run

Cross compilation

At this time, cross compilation is not possible due to the Vulkan SDK requirement. We're working on this.