Suppose I have a one big shader program and want only specific ranges of vertices/triangles rendered.
What are some performant ways of doing this? Which one looks most promising?
I came up with 3 methods, are there some more?
- Batching draw calls
Draw(position, count)
using command lists. (Opengl hasglMultiDrawArrays
.)
If the ranges are known ahead of time, we don't need to worry about the time spent constructing them. However, since some ranges change unpredictably, it is probably unrealistic to keep command lists for all possibilities.
This method obviously reduces the time spent constructing the draw calls on CPU side and I assume that these calls already tell the GPU that it does not need to do any state changes.
- Call
Draw
on the whole buffer and keep updating a boolean per-vertex float buffer which would just multiply the output positions by 0/1 in inactive/active ranges.
The benefit here is only one draw call. However, we need to update the buffer and it seems like the buffer needs to be locked while we update it...
- Powerset defined in a constant buffer. For n ranges, we can use one n-bit constant
mask
compared against a static n-bitper_vertex_mask
. Vertex is visible ifmask & per_vertex_mask != 0
.
Constant buffers are probably cheaper to update than a whole vertex buffer. The number of ranges may however be too large for this method.