We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d544d0 commit 327f43dCopy full SHA for 327f43d
examples/jsm/loaders/LogLuvLoader.js
@@ -399,7 +399,8 @@ UTIF.toRGBA = function ( out, type ) {
399
400
}
401
402
- const intp = ( out[ 't262' ] ? out[ 't262' ][ 0 ] : 2 ), bps = ( out[ 't258' ] ? Math.min( 32, out[ 't258' ][ 0 ] ) : 1 );
+ let intp = out[ 't262' ] ? out[ 't262' ][ 0 ] : 2;
403
+ const bps = out[ 't258' ] ? Math.min( 32, out[ 't258' ][ 0 ] ) : 1;
404
405
if ( out[ 't262' ] == null && bps == 1 ) intp = 0;
406
0 commit comments