(framebuffer)
| 1726 | } |
| 1727 | |
| 1728 | bindFramebuffer(framebuffer) { |
| 1729 | const gl = this.GL; |
| 1730 | gl.bindFramebuffer( |
| 1731 | gl.FRAMEBUFFER, |
| 1732 | framebuffer |
| 1733 | ? this.getFramebufferToBind(framebuffer) |
| 1734 | : null |
| 1735 | ); |
| 1736 | } |
| 1737 | |
| 1738 | framebufferYScale() { |
| 1739 | // WebGL textures are upside-down compared to textures that come from |
no test coverage detected