UNPKG

pixi.js

Version:

PixiJS — The HTML5 Creation Engine =============

15 lines (14 loc) 348 B
export interface StructsAndGroups { groups: { group: number; binding: number; name: string; isUniform: boolean; type: string; }[]; structs: { name: string; members: Record<string, string>; }[]; } export declare function extractStructAndGroups(wgsl: string): StructsAndGroups;