From cube, to the graphcis API
It is now time to use the RHI command. RHI stands for 'Rendering Hardware Interface'. It abstracts the real graphics API of each platform, like DirectX or Vulkan. You can treat it as a simple mapping to the graphics API. For example, RHIDrawIndexedPrimitive
can be treated as DrawIndexedInstanced
.
Do you remember how to render a triangle when you learned DirectX 11 or 12?
We need to set up the render pipeline state, set the shaders and parameters, and use DrawIndexedInstanced
to dispatch a draw call.
If you forget, just find a hello triangle tutorial, for example:
"Direct3D 11 - Hello Triangle" - Anton's Graphics Tutorials
We need to perform almost the same action for each FMeshDrawCommand
. However, we should not directly call the API. Instead, we should add the command to a RHICommandList
. This list will be sent to and executed by the RHI thread at a later time.
In our one cube, and the depth pass, it generates the following commands:
So our story becomes:
FStaticMeshSceneProxy
:
FMeshBatch
objects.FMeshBatch
:
FMeshDrawCommand
list.
RHICommand
So let me show a summary image to conclude from FMeshBatch
to FMeshDrawCommand
and then to RHICommand
.
RHI is not exclusive to the Unreal Engine; many engines implement their own RHI layer. Additionally, there are RHI implementations that serve as middleware, such as NvRHI.