Taos API Reference
    Preparing search index...

    Interface PassNode

    Internal: declared (uncompiled) pass. Captures the user's reads/writes, the new resources it created, and the execute callback. The compiler turns this into a CompiledPass.

    interface PassNode {
        name: string;
        type: PassType;
        order: number;
        reads: PassAccess[];
        writes: PassAccess[];
        created: number[];
        execute: ExecuteFn | null;
    }
    Index

    Properties

    name: string
    type: PassType
    order: number

    Author-declared insertion order (purely for debugging).

    reads: PassAccess[]
    writes: PassAccess[]
    created: number[]

    Resources the pass created via b.create*().

    execute: ExecuteFn | null