(program)
| 12548 | /*#__PURE__*/ |
| 12549 | function () { |
| 12550 | function ProgramConfiguration(program) { |
| 12551 | (0, _classCallCheck2.default)(this, ProgramConfiguration); |
| 12552 | this.id = program.id; |
| 12553 | this.attributeInfos = []; |
| 12554 | this.attributeInfosByName = {}; |
| 12555 | this.varyingInfos = []; |
| 12556 | this.varyingInfosByName = {}; |
| 12557 | Object.seal(this); |
| 12558 | |
| 12559 | this._readAttributesFromProgram(program); |
| 12560 | |
| 12561 | this._readVaryingsFromProgram(program); |
| 12562 | } |
| 12563 | |
| 12564 | (0, _createClass2.default)(ProgramConfiguration, [{ |
| 12565 | key: "getAttributeInfo", |
nothing calls this directly
no outgoing calls
no test coverage detected