An open API service indexing awesome lists of open source software.

https://github.com/stanthesoupking/vkhellotriangle

Hello triangle implemented in Vulkan.
https://github.com/stanthesoupking/vkhellotriangle

hello-triangle vulkan

Last synced: 10 months ago
JSON representation

Hello triangle implemented in Vulkan.

Awesome Lists containing this project

README

          

# vkHelloTriangle
Hello triangle program implemented in Vulkan. This is mainly intended to be used as a starting point for new Vulkan projects. The code was created by following the [Beginners Guide to Vulkan](https://www.khronos.org/blog/beginners-guide-to-vulkan).

## Compiling
To compile you will first need to make sure that you have a copy of the VulkanSDK and CMake installed.

```bash
mkdir build
cd build
cmake ../
make
```