gameforge - v0.1.12
    Preparing search index...

    Enumeration PRECISION

    Constants that specify float precision in shaders.

    PIXI

    Index

    Enumeration Members

    Enumeration Members

    HIGH: "highp"

    highp is at least a 32 bit value. For floating point values they can range from: -2^62 to +2^62, for integer values they are similar to Uint32Array or Int32Array

    highp
    
    LOW: "lowp"

    lowp is at least an 9 bit value. For floating point values they can range from: -2 to +2, for integer values they are similar to Uint8Array or Int8Array

    lowp
    
    MEDIUM: "mediump"

    mediump is at least a 16 bit value. For floating point values they can range from: -2^14 to +2^14, for integer values they are similar to Uint16Array or Int16Array

    mediump