Skip to content

Commit 714fd18

Browse files
authored
Revert "Use default to replicate original meaning of 'none' (mrdoob#26453)" (mrdoob#26462)
This reverts commit 9abfda6.
1 parent fe2711f commit 714fd18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/jsm/renderers/webgpu/utils/WebGPUTextureUtils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ class WebGPUTextureUtils {
439439

440440
const options = {};
441441

442-
options.imageOrientation = ( texture.flipY === true ) ? 'flipY' : 'default';
442+
options.imageOrientation = ( texture.flipY === true ) ? 'flipY' : 'none';
443443
options.premultiplyAlpha = ( texture.premultiplyAlpha === true ) ? 'premultiply' : 'default';
444444

445445
return createImageBitmap( image, 0, 0, width, height, options );

0 commit comments

Comments
 (0)