Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 834 Bytes

File metadata and controls

20 lines (12 loc) · 834 Bytes

A repository for tracking my learning of Vulkan

Fist resource

My learning started with this

As the tutorial website says this tutorial teaches the basics of Vukan, as such it was a good place to start. While the tutorial uses C++17, it doesn't really use any modern C++ techniques.

The results of this are in the tutorial_website folder

Status: Completed

Second resource

Afterwards, I continued learning from this YouTube series.

It was chosen as it goes into more advanced topics and actually uses modern C++ features. Althou it still uses the C vulkan API instead of the C++ one, it wraps the up into modern C++ compliant objects.

The results of this are in the tutorial_series folder

Status: In Progress