How we render the cube, in different render passes.
As a complex deferred rendering system, unreal engine not render mesh in one draw call. Instead, it contains many passes.
If you are not familiar with this concept, please check this image from https://unrealcommunity.wiki/unreal-schematics-2d6859
For example, our cube need to be rendered in both early Z pass for scene depth, and in base pass for GBuffer.
In other words, please imagine a table like this:
Early Z Pass | GBuffer Pass | Shadow Pass | ||
---|---|---|---|---|
Mesh 0 | Mesh Batch 0 | Draw Call 0 | Draw Call 1 | Draw Call 2 |
Mesh 0 | Mesh Batch 1 | Draw Call 3 | Draw Call 4 | Draw Call 5 |
Because they have different materials, the shaders used for rendering such as GBufferPass may also be different.
Because for the same Mesh, we have completely different drawing methods in different Passes:
This means that even if we only have a single FMeshBatch
, we need to generate more than one draw call. We must save the information related to each draw call somewhere. This is what we call a FMeshDrawCommand
. And we need someone to take the responsibility to generate FMeshDrawCommand
for each different pass, we call that one FMeshPassProcessor
.
If you want to know more, here is the official document.