Contains filtering settings for draw commands, which tell Unity in which conditions it should render a given draw command.
Each draw range covers a continuous range of draw commands in the BatchCullingOutputDrawCommands.drawCommands array, and the settings in the BatchDrawRange struct apply to all of them. You must populate this with at least one draw range, but you can use more if necessary.
The culling callback must allocate the memory for this command using Unity.Collections.LowLevel.Unsafe.UnsafeUtility.Malloc with the Unity.Collections.Allocator.TempJob parameter. Unity releases this memory when it finishes rendering the draw commands.