public void SetGlobalBuffer (string name, ComputeBuffer value);
public void SetGlobalBuffer (int nameID, ComputeBuffer value);
public void SetGlobalBuffer (string name, GraphicsBuffer value);
public void SetGlobalBuffer (int nameID, GraphicsBuffer value);

Parameters

nameIDThe name ID of the property retrieved by Shader.PropertyToID.
nameThe name of the property.
valueThe buffer to set.

Description

Add a "set global shader buffer property" command.

When the command buffer will be executed, a global shader buffer property will be set at this point. The effect is as if Shader.SetGlobalBuffer was called.