UNPKG

pixi.js

Version:

<p align="center"> <a href="https://pixijs.com" target="_blank" rel="noopener noreferrer"> <img height="150" src="https://files.pixijs.download/branding/pixijs-logo-transparent-dark.svg?v=1" alt="PixiJS logo"> </a> </p> <br/> <p align="center">

20 lines (19 loc) 532 B
import type { StructsAndGroups } from './extractStructAndGroups'; /** * @param vertexStructsAndGroups * @param fragmentStructsAndGroups * @internal */ export declare function removeStructAndGroupDuplicates(vertexStructsAndGroups: StructsAndGroups, fragmentStructsAndGroups: StructsAndGroups): { structs: { name: string; members: Record<string, string>; }[]; groups: { group: number; binding: number; name: string; isUniform: boolean; type: string; }[]; };