Once the CPU submits the draw call for the depth prepass, the GPU begins executing it. At this point, it is important to understand how the vertex shader works, as the depth prepass does not require a pixel shader for our cube.

<aside> ⚠️ If you want to debug vertex shader code like me, use PIX instead of RenderDoc.

</aside>

A short description of the process is as follows:

A simplified version is this image.

The core is:

(local) vertex position → LocalToWorld → WorldToClip → Output Position

In the case you want to check the details:

The most complex part is decoding the instance data, but we will discuss this later, so don't worry. For now, I recommend that you remember the first, simple image as a concept map and treat the second, more complex image as a reference.