Interface ProgramOptions

interface ProgramOptions {
    cullFace?: number;
    depthFunc?: number;
    depthTest?: boolean;
    depthWrite?: boolean;
    fragment: string;
    frontFace?: number;
    transformFeedbackVaryings?: string[];
    transparent?: boolean;
    uniforms?: WTCGLUniformArray;
    vertex: string;
}

Properties

cullFace?: number
depthFunc?: number
depthTest?: boolean
depthWrite?: boolean
fragment: string
frontFace?: number
transformFeedbackVaryings?: string[]
transparent?: boolean
vertex: string