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.
- Host: GitHub
- URL: https://github.com/stanthesoupking/vkhellotriangle
- Owner: stanthesoupking
- Created: 2019-11-08T02:27:19.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-08T04:24:25.000Z (over 6 years ago)
- Last Synced: 2025-06-02T06:28:37.812Z (about 1 year ago)
- Topics: hello-triangle, vulkan
- Language: C++
- Size: 285 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```