diff --git a/packages/core/src/renderTexture/RenderTextureSystem.js b/packages/core/src/renderTexture/RenderTextureSystem.js index 7902204..7e29532 100644 --- a/packages/core/src/renderTexture/RenderTextureSystem.js +++ b/packages/core/src/renderTexture/RenderTextureSystem.js @@ -130,6 +130,11 @@ this.destinationFrame.width = destinationFrame.width / resolution; this.destinationFrame.height = destinationFrame.height / resolution; + + if (sourceFrame === destinationFrame) + { + this.sourceFrame.copyFrom(this.destinationFrame); + } } /**