RenderPass constructor

const RenderPass({
  1. required String name,
  2. required RenderPassType type,
  3. String? description,
  4. required String code,
  5. required List<Input> inputs,
  6. required List<Output> outputs,
})

Builds a RenderPass

Implementation

const RenderPass(
    {required this.name,
    required this.type,
    this.description,
    required this.code,
    required this.inputs,
    required this.outputs});