Project meant as a starting point to anyone looking to get into Vulkan, with commented code and a Follow Along
guide with further explanations. As a bonus, a similar setup is done through OpenGL in the HelloTriangleOGL.py
file, in order to compare both approaches as well as set a reference point to someone that might already be familiar with the latter API. Being a Python project, there are some requirements that need to be installed though.
For Vulkan:
- Vulkan SDK
- pip install vulkan
- pip install glfw
For OpenGL:
- pip install pygame
- pip install PyOpenGL