Vulkan is a Graphics API at a much lower level to the hardware than OpenGL, but also meaning more control over all of the inner workings which go into displaying graphics on our monitors.
To fully understand how Vulkan is set up, I will first go through the steps to get a project up and running. Then in later chapters - break down the steps which need a deeper explanation.
It can be quite daunting when we see all the steps necessary, but hopefully by the end of this blog you will understand their place and purpose, even as a complete beginner!
Vulkan requires us to do a lot of setting up to begin with. I'm going to abstract the steps needed into an ordered list so you understand what's required, but don't feel like you have to understand every step mentioned thus far.
The graphics pipeline takes all of the data for our scene and works out what should be rendered - and also how it should be rendered.
In the 'First steps' chapter it was mentioned that Swap Chains are made up of Framebuffers. These are blocks of memory, output from the graphics pipeline and contain properties (aka: attachments) like a "colour buffer" or "depth buffer" which are essentially color values for each pixel that are copied from the VRAM of the gpu and presented onto the screen.
You may have heard the term 60hz as a refresh rate on your monitor - this is a standard frequency meaning 60 cycles per second. Most of the time, a swap chain will use double-buffering which uses 2 framebuffers at the same time. The framebuffer being displayed is referred to as the front-buffer, and the one being rendered to by the graphics pipeline is the "back-buffer".
It's up to the swap chain to decide when to swap these buffers around, this is referred to as V-Sync and essentially swaps them according to the refresh rate (hz) and updates the image on our monitor.
Well now we know what framebuffers are and that our swap chain is full of them, next we will delve a bit deeper into swap chains. The swap chain determines a few factors as to how we finally start presenting the images produced by our graphics pipeline to our monitors. Some settings include:
Present Modes: Decides how often we should refresh the images from our swap chain
So to round up everything we've just gone over even more briefly:
- The graphics pipeline takes a bunch of inputs such as our models & shaders - outputs a framebuffer which sits in memory as a back-buffer until the swap chain
swaps it into the front-buffer, causing the image to appear on our monitor.
The rabbit hole goes much deeper, however the aim of this blog was to give an abstracted, easy to understand overview of how Vulkan (and most GPU API's) work. I hope this gives you enough knowledge and confidence to start your very own project and good luck on your journey into graphics programming!
See also:
Next steps in Vulkan