Interface WebGLActiveInfo

    Part of the WebGL API and represents the information returned by calling the WebGLRenderingContext.getActiveAttrib() and WebGLRenderingContext.getActiveUniform() methods.

    MDN Reference

    interface WebGLActiveInfo {
        name: string;
        size: number;
        type: number;
    }

    Properties

    Properties

    name: string
    size: number
    type: number