Class AOVRequestDataCollection
A collection of frame passes. To build one, AOVRequestBuilder
Inherited Members
Namespace: UnityEngine.Rendering.HighDefinition
Assembly: Unity.RenderPipelines.HighDefinition.Runtime.dll
Syntax
public class AOVRequestDataCollection : IEnumerable<AOVRequestData>, IEnumerable, IDisposable
Constructors
AOVRequestDataCollection(List<AOVRequestData>)
Build a new collection from requests.
Declaration
public AOVRequestDataCollection(List<AOVRequestData> aovRequestData)
Parameters
Type | Name | Description |
---|---|---|
List<AOVRequestData> | aovRequestData | Requests to include in the collection. |
Methods
Dispose()
Dispose the collection.
Declaration
public void Dispose()
GetEnumerator()
Enumerate the frame passes.
Declaration
public IEnumerator<AOVRequestData> GetEnumerator()
Returns
Type | Description |
---|---|
IEnumerator<AOVRequestData> | The enumerator over the values. |