(gl)
| 10539 | }]); |
| 10540 | |
| 10541 | function Renderbuffer(gl) { |
| 10542 | var _this; |
| 10543 | |
| 10544 | var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; |
| 10545 | (0, _classCallCheck2.default)(this, Renderbuffer); |
| 10546 | _this = (0, _possibleConstructorReturn2.default)(this, (0, _getPrototypeOf2.default)(Renderbuffer).call(this, gl, opts)); |
| 10547 | |
| 10548 | _this.initialize(opts); |
| 10549 | |
| 10550 | Object.seal((0, _assertThisInitialized2.default)((0, _assertThisInitialized2.default)(_this))); |
| 10551 | return _this; |
| 10552 | } // Creates and initializes a renderbuffer object's data store |
| 10553 | |
| 10554 | |
| 10555 | (0, _createClass2.default)(Renderbuffer, [{ |
nothing calls this directly
no test coverage detected