pixi.js
    Preparing search index...

    Interface GlobalUniformDataAdvanced

    Data structure for the global uniforms used in the renderer. This includes the projection matrix, world transform matrix, world color, resolution, and bind group.

    interface GlobalUniformData {
        bindGroup: BindGroup;
        offset: PointData;
        projectionMatrix: Matrix;
        resolution: number[];
        worldColor: number;
        worldTransformMatrix: Matrix;
    }
    Index

    Properties

    bindGroup: BindGroup
    offset: PointData
    projectionMatrix: Matrix
    resolution: number[]
    worldColor: number
    worldTransformMatrix: Matrix