diff --git a/src/renderers/webgpu/utils/WebGPUTextureUtils.js b/src/renderers/webgpu/utils/WebGPUTextureUtils.js index 47aea83f276d20..694e54aa6a59d4 100644 --- a/src/renderers/webgpu/utils/WebGPUTextureUtils.js +++ b/src/renderers/webgpu/utils/WebGPUTextureUtils.js @@ -698,7 +698,8 @@ class WebGPUTextureUtils { device.queue.copyExternalImageToTexture( { - source: image + source: image, + flipY: flipY }, { texture: textureGPU, mipLevel: 0, @@ -710,12 +711,6 @@ class WebGPUTextureUtils { } ); - if ( flipY === true ) { - - this._flipY( textureGPU, textureDescriptorGPU, originDepth ); - - } - } /**