Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


BeginTrace()

Start tracing shader variants and graphics states encountered at runtime.
Read time 1 minuteLast updated 13 days ago

Definition

public bool BeginTrace()

Returns

Type

Description

boolReturns true if tracing successfully started, false otherwise.

Remarks

Graphics states will only be traced when SystemInfo.supportsParallelPSOCreation is true.

Examples

using UnityEngine;using UnityEngine.Experimental.Rendering;public class BeginTraceExample : MonoBehaviour{ public GraphicsStateCollection graphicsStateCollection; void Start() { graphicsStateCollection = new GraphicsStateCollection(); graphicsStateCollection.BeginTrace(); } void OnDestroy() { graphicsStateCollection.EndTrace(); }}