Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Graphics Programming with Vulkan and C++ [2026]
Rating: 4.2 out of 5(81 ratings)
886 students

Graphics Programming with Vulkan and C++ [2026]

Learn graphics programming now using the most popular graphics API
Created byHristo Iliev
Last updated 1/2026
English
English [Auto],

What you'll learn

  • Create graphics applications
  • Apply common rendering math
  • Use Vulkan for graphics programming
  • Apply good coding standards
  • Creating and managing windows
  • Writing shader code using GLSL
  • Setting up a project using CMake
  • Setup a graphics pipeline
  • Basic graphics theory

Course content

16 sections108 lectures6h 16m total length
  • Promo2:03

    Master Vulkan and modern C++ to build graphical 3D apps, render triangles, transform them, move data to the graphics card, and texture polygons across a Windows-based workflow in 12 sections.

  • Welcome3:53

    Learn how to access general course information and get help, use Google and StackOverflow, and leverage FAQ and Q&A forums, with lifetime access and a shareable certificate.

  • FAQ0:22
  • Course Overview2:30

    Master the basics of Vulkan from instance creation to the swap chain, then build the graphics pipeline and render your first triangle with vertex, index, and uniform buffers and textures.

  • Installing Vulkan SDK1:18

    Install the Vulcan sdk by downloading the latest Windows installer, then use the default options and finish the setup.

  • Can I Run It?1:14

    This lesson guides you to verify your system can run Vulkan by ensuring the SDK is installed, generating a vulkaninfo html report, and confirming a physical device with presentable surfaces.

Requirements

  • Good Understanding of modern C++ (pointers, references, lambdas)
  • Basic Understanding of OOP
  • Knowledge of the Standard C++ Library & Algorithms

Description

Welcome

Vulkan is the newest and most popular graphics API out there. It is the successor of the already deprecated OpenGL, and it is the future for any kind of cross-platform graphical applications. It is extremely performant, which makes it perfect for game and game engine development.

With this course I aim to teach you the very basics of computer graphics with Vulkan in some short and simple lessons. I believe everyone can learn and it is especially important to have easy to understand chunks that can be consumed in short bursts.

This course will cover: setting up your C++ project, creating a window, initializing Vulkan, rendering a simple triangle, compiling shaders, debugging issues, rendering vertices, basic transformations for 3D.

I will not go as far as to teach complex topics like post-processing or shadows since the course aims to be short and accessible. The course will get regular updates, though that will cover any major changes in the specification.

The course is taught on Microsoft Windows, but most of the knowledge gained can be used on any platform.

Technologies Used

  • Vulkan SDK—the main topic of the course is the Vulkan graphics library specification. This is what "talks" to the GPU of your PC and renders any graphical information that you send to it.

  • GLFW—Abstracts handling windows so that we don't have to call native platform functions. This way the course would be mostly accessible to people on any platform.

  • GLM—A mathematical library that will help with the transformation of 3D information.

  • CMake—for managing and compiling the project. We will use a modern setup that is straightforward to understand and use.

Who this course is for:

  • Junior C++ programmers
  • Game engine programmers
  • 3D graphics programmers switching to Vulkan