* Called when the size of the framebuffer has changed (either by being * manually updated or from auto-size updates when its canvas changes size.) * Old textures and renderbuffers will be deleted, and then recreated with the * new size. * * @private
()
| 520 | * @private |
| 521 | */ |
| 522 | _handleResize() { |
| 523 | this._deleteTextures(); |
| 524 | this._recreateTextures(); |
| 525 | this.defaultCamera._resize(); |
| 526 | } |
| 527 | |
| 528 | /** |
| 529 | * Creates a new |
no test coverage detected