https://github.com/lancelet/vulkan-tutorial-haskell
Me following the Vulkan Tutorial, but in Haskell
https://github.com/lancelet/vulkan-tutorial-haskell
Last synced: 10 months ago
JSON representation
Me following the Vulkan Tutorial, but in Haskell
- Host: GitHub
- URL: https://github.com/lancelet/vulkan-tutorial-haskell
- Owner: lancelet
- License: bsd-3-clause
- Created: 2020-05-16T07:52:08.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-20T10:41:54.000Z (over 5 years ago)
- Last Synced: 2025-01-13T21:27:13.907Z (12 months ago)
- Language: Haskell
- Size: 61.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Vulkan Tutorial
This is just me following the
[Vulkan Tutorial](https://vulkan-tutorial.com), and trying to translate it into
Haskell. So it's not very interesting.
## Miscellaneous Hints
For `ghcid`, to allow `libvulkan.dylib` to be found:
```
install_name_tool -add_rpath "$VULKAN_SDK/lib"
```
To fix permissions errors for `libvulkan.dylib`:
```
cd $VULKAN_SDK/lib
xattr -d com.apple.quarantine libvulkan.dylib
```