Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


SetExecutionFlags(CommandBufferExecutionFlags)

Set flags describing the intention for how the command buffer will be executed.
Read time 1 minuteLast updated 4 days ago

Definition

public void SetExecutionFlags(CommandBufferExecutionFlags flags)

Parameters

The flags to set.

Remarks

Setting execution flags to any value other than none allows exceptions to be thrown when issuing commands that are not compatible with the intended method of execution. For example, command buffers intended for use with async compute cannot contain commands that are used purely for rendering. This method can only be called against empty command buffers, so call it immediately after construction or after calling CommandBuffer.Clear.