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

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

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
```