# VlTk ### A simplified toolkit for creating applications using Vulkan # Introduction VLTK is an open source, multi-platform, simple toolkit for the Rust language for developing Vulkan applications. This library provides only drawing tools using Vulkan. Therefore, you can use your preferred library for windowing. # Compile VlTk ## *Vulkan SDK is required for build* ```bash git clone https://github.com/OvertimeCoder/VlTk.git cd VlTk cargo build ``` # Example ```bash git clone https://github.com/OvertimeCoder/VlTk.git cd VlTk cargo run --example triangle ``` # Dependencies - [ash](https://github.com/ash-rs/ash) - [ash-window](https://github.com/ash-rs/ash) - [winit](https://github.com/rust-windowing/winit) - [raw-window-handle](https://github.com/rust-windowing/raw-window-handle)