(program)
| 64960 | var _attributeUtils = require("../webgl-utils/attribute-utils"); |
| 64961 | var ProgramConfiguration = function() { |
| 64962 | function ProgramConfiguration1(program) { |
| 64963 | (0, _classCallCheckDefault.default)(this, ProgramConfiguration1); |
| 64964 | this.id = program.id; |
| 64965 | this.attributeInfos = []; |
| 64966 | this.attributeInfosByName = {}; |
| 64967 | this.attributeInfosByLocation = []; |
| 64968 | this.varyingInfos = []; |
| 64969 | this.varyingInfosByName = {}; |
| 64970 | Object.seal(this); |
| 64971 | this._readAttributesFromProgram(program); |
| 64972 | this._readVaryingsFromProgram(program); |
| 64973 | } |
| 64974 | (0, _createClassDefault.default)(ProgramConfiguration1, [ |
| 64975 | { |
| 64976 | key: "getAttributeInfo", |
nothing calls this directly
no outgoing calls
no test coverage detected