Interface WebGLShaderPrecisionFormat

    Part of the WebGL API and represents the information returned by calling the WebGLRenderingContext.getShaderPrecisionFormat() method.

    MDN Reference

    interface WebGLShaderPrecisionFormat {
        precision: number;
        rangeMax: number;
        rangeMin: number;
    }

    Properties

    precision: number
    rangeMax: number
    rangeMin: number