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">

34 lines (32 loc) 644 B
"use strict"; const scaleModeToGlFilter = { linear: 9729, nearest: 9728 }; const mipmapScaleModeToGlFilter = { linear: { linear: 9987, nearest: 9985 }, nearest: { linear: 9986, nearest: 9984 } }; const wrapModeToGlAddress = { "clamp-to-edge": 33071, repeat: 10497, "mirror-repeat": 33648 }; const compareModeToGlCompare = { never: 512, less: 513, equal: 514, "less-equal": 515, greater: 516, "not-equal": 517, "greater-equal": 518, always: 519 }; export { compareModeToGlCompare, mipmapScaleModeToGlFilter, scaleModeToGlFilter, wrapModeToGlAddress }; //# sourceMappingURL=pixiToGlMaps.mjs.map