UNPKG

pixi.js

Version:

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

27 lines (24 loc) 774 B
import { defaultValue } from './defaultValue.mjs'; import { mapType } from './mapType.mjs'; "use strict"; function getUniformData(program, gl) { const uniforms = {}; const totalUniforms = gl.getProgramParameter(program, gl.ACTIVE_UNIFORMS); for (let i = 0; i < totalUniforms; i++) { const uniformData = gl.getActiveUniform(program, i); const name = uniformData.name.replace(/\[.*?\]$/, ""); const isArray = !!uniformData.name.match(/\[.*?\]$/); const type = mapType(gl, uniformData.type); uniforms[name] = { name, index: i, type, size: uniformData.size, isArray, value: defaultValue(type, uniformData.size) }; } return uniforms; } export { getUniformData }; //# sourceMappingURL=getUniformData.mjs.map