https://github.com/ajlekcahdp4/vulkan-learning
Just me learning vulkan C++ API
https://github.com/ajlekcahdp4/vulkan-learning
cpp vulkan-api vulkan-sdk
Last synced: about 2 months ago
JSON representation
Just me learning vulkan C++ API
- Host: GitHub
- URL: https://github.com/ajlekcahdp4/vulkan-learning
- Owner: ajlekcahdp4
- License: mit
- Created: 2022-09-26T13:38:07.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-20T10:10:03.000Z (over 2 years ago)
- Last Synced: 2025-02-09T15:46:38.834Z (4 months ago)
- Topics: cpp, vulkan-api, vulkan-sdk
- Language: C++
- Homepage:
- Size: 75.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vulkan-hpp learning
Repository with my attempts to learn vulkan C++ API## How to clone
```
git clone [email protected]:ajlekcahdp4/vulkan-learning.git
git submodule init
git submodule update
```
## How to build
```
cmake -S . -B build
make -C build -j12 install
```After that bin files will be installed in steps/XXX/bin/ and you wiil be able to run it using
```
./steps/XXX/bin/XXX
```