(_ref)
| 51057 | /*#__PURE__*/ |
| 51058 | function () { |
| 51059 | function EffectManager(_ref) { |
| 51060 | var gl = _ref.gl, |
| 51061 | layerManager = _ref.layerManager; |
| 51062 | |
| 51063 | _classCallCheck(this, EffectManager); |
| 51064 | |
| 51065 | this.gl = gl; |
| 51066 | this.layerManager = layerManager; |
| 51067 | this._effects = []; |
| 51068 | } |
| 51069 | /** |
| 51070 | * Adds an effect to be managed. That effect's initialize function will |
| 51071 | * be called, and the effect's preDraw and draw callbacks will be |
nothing calls this directly
no test coverage detected