* Ensure all readable textures are up-to-date. * @private * @param {'colorTexutre'|'depthTexture'} property The property to update
(property)
| 805 | * @param {'colorTexutre'|'depthTexture'} property The property to update |
| 806 | */ |
| 807 | _update(property) { |
| 808 | if (this.dirty[property]) { |
| 809 | this.renderer.updateFramebufferTexture(this, property); |
| 810 | this.dirty[property] = false; |
| 811 | } |
| 812 | } |
| 813 | |
| 814 | /** |
| 815 | * Ensures that the framebuffer is ready to be drawn to |
no test coverage detected