Version: 2021.3
언어: 한국어

Graphics.RenderMeshIndirect

매뉴얼로 전환
public static void RenderMeshIndirect (ref RenderParams rparams, Mesh mesh, GraphicsBuffer commandBuffer, int commandCount= 1, int startCommand= 0);

파라미터

rparams The parameters Unity uses to render the mesh.
mesh The Mesh to render.
commandBuffer A command buffer that provides rendering command arguments (see IndirectDrawIndexedArgs).
commandCount The number of rendering commands to execute in the commandBuffer.
startCommand The first command to execute in the commandBuffer.

설명

Renders multiple instances of a mesh using GPU instancing and rendering command arguments from commandBuffer.

This function renders multiple instances of the same Mesh, similar to Graphics.RenderMeshInstanced, but takes the rendering command arguments from commandBuffer. You can set up these command arguments with either the CPU or the GPU. The commandBuffer can contain multiple rendering commands that you can execute with a single call to this method. On supported platforms Unity may further optimize CPU performance of multi-command calls by submitting a single multi-draw rendering command to the low-level API. Use IndirectDrawIndexedArgs to setup the command buffer (instead of plain ints) as the layout of this structure can change depending on the platform.

Use this function to draw the same Mesh multiple times times using a custom shader and GPU controlled rendering arguments. Use RenderParams.worldBounds to define bounds to cull and sort the geometry rendered with the method as a single entity..

Add the following lines in the pass section of a shader to access command, instance and vertex ID's as specified in UnityIndirect.cginc:

#define UNITY_INDIRECT_DRAW_ARGS IndirectDrawIndexedArgs
#include "UnityIndirect.cginc"

Add the following line to the beginning of the shader function to setup the ID access functions:

InitIndirectDrawArgs(0); // pass SV_DrawID semantic value here for multi-draw support

See Also: RenderMeshInstanced.

The following example executes two indirect rendering commands. Each command renders 10 Mesh instances. The associated Material must use the below custom shader:

using UnityEngine;

public class ExampleClass : MonoBehaviour { public Material material; public Mesh mesh;

GraphicsBuffer commandBuf; GraphicsBuffer.IndirectDrawIndexedArgs[] commandData; const int commandCount = 2;

void Start() { commandBuf = new GraphicsBuffer(GraphicsBuffer.Target.IndirectArguments, commandCount, GraphicsBuffer.IndirectDrawIndexedArgs.size); commandData = new GraphicsBuffer.IndirectDrawIndexedArgs[commandCount]; }

void OnDestroy() { commandBuf?.Release(); commandBuf = null; }

void Update() { RenderParams rp = new RenderParams(material); rp.worldBounds = new Bounds(Vector3.zero, 10000*Vector3.one); // use tighter bounds for better FOV culling rp.matProps = new MaterialPropertyBlock(); rp.matProps.SetMatrix("_ObjectToWorld", Matrix4x4.Translate(new Vector3(-4.5f, 0, 0))); commandData[0].indexCountPerInstance = mesh.GetIndexCount(0); commandData[0].instanceCount = 10; commandData[1].indexCountPerInstance = mesh.GetIndexCount(0); commandData[1].instanceCount = 10; commandBuf.SetData(commandData); Graphics.RenderMeshIndirect(rp, mesh, commandBuf, commandCount); } }

Use the following example shader with the above C# example code:

          Shader "ExampleShader"
{
    SubShader
    {
        Pass
        {
            CGPROGRAM
            #pragma vertex vert
            #pragma fragment frag

#include "UnityCG.cginc" #define UNITY_INDIRECT_DRAW_ARGS IndirectDrawIndexedArgs #include "UnityIndirect.cginc"

struct v2f { float4 pos : SV_POSITION; float4 color : COLOR0; };

uniform float4x4 _ObjectToWorld;

v2f vert(appdata_base v, uint svInstanceID : SV_InstanceID) { InitIndirectDrawArgs(0); v2f o; uint cmdID = GetCommandID(0); uint instanceID = GetIndirectInstanceID(svInstanceID); float4 wpos = mul(_ObjectToWorld, v.vertex + float4(instanceID, cmdID, 0, 0)); o.pos = mul(UNITY_MATRIX_VP, wpos); o.color = float4(cmdID & 1 ? 0.0f : 1.0f, cmdID & 1 ? 1.0f : 0.0f, instanceID / float(GetIndirectInstanceCount()), 0.0f); return o; }

float4 frag(v2f i) : SV_Target { return i.color; } ENDCG } } }