File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/renderers/webgl-fallback/nodes Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ import { DataTexture } from '../../../textures/DataTexture.js';
1010import { error } from '../../../utils.js' ;
1111
1212const glslPolyfills = {
13- bitcast_int_uint : new CodeNode ( /* glsl */ 'uint tsl_bitcast_int_to_uint ( int x ) { return floatBitsToUint( intBitsToFloat ( x ) ); }' ) ,
14- bitcast_uint_int : new CodeNode ( /* glsl */ 'int tsl_bitcast_uint_to_int ( uint x ) { return floatBitsToInt( uintBitsToFloat ( x ) ); }' )
13+ bitcast_int_uint : new CodeNode ( /* glsl */ 'uint tsl_bitcast_uint_to_int ( int x ) { return floatBitsToInt( uintBitsToFloat ( x ) ); }' ) ,
14+ bitcast_uint_int : new CodeNode ( /* glsl */ 'uint tsl_bitcast_int_to_uint ( int x ) { return floatBitsToUint( intBitsToFloat ( x ) ); }' )
1515} ;
1616
1717const glslMethods = {
You can’t perform that action at this time.
0 commit comments