()
| 562 | } |
| 563 | |
| 564 | updatePixels() { |
| 565 | const fbo = this._getTempFramebuffer(); |
| 566 | fbo.pixels = this.pixels; |
| 567 | fbo.updatePixels(); |
| 568 | this.push(); |
| 569 | this.resetMatrix(); |
| 570 | this.clear(); |
| 571 | this.states.setValue("imageMode", constants.CORNER); |
| 572 | this.image( |
| 573 | fbo, |
| 574 | 0, |
| 575 | 0, |
| 576 | fbo.width, |
| 577 | fbo.height, |
| 578 | -fbo.width / 2, |
| 579 | -fbo.height / 2, |
| 580 | fbo.width, |
| 581 | fbo.height |
| 582 | ); |
| 583 | this.pop(); |
| 584 | this.GL.clearDepth(1); |
| 585 | this.GL.clear(this.GL.DEPTH_BUFFER_BIT); |
| 586 | } |
| 587 | |
| 588 | zClipRange() { |
| 589 | return [-1, 1]; |
nothing calls this directly
no test coverage detected