|
|
@@ -15,7 +15,7 @@ export const mx_select = /*@__PURE__*/ Fn( ( [ b_immutable, t_immutable, f_immut
|
|
|
const t = float( t_immutable ).toVar();
|
|
|
const b = bool( b_immutable ).toVar();
|
|
|
|
|
|
- return select( b, t, f );
|
|
|
+ return select( b, t, f ).uniformFlow();
|
|
|
|
|
|
} ).setLayout( {
|
|
|
name: 'mx_select',
|
|
|
@@ -32,7 +32,7 @@ export const mx_negate_if = /*@__PURE__*/ Fn( ( [ val_immutable, b_immutable ] )
|
|
|
const b = bool( b_immutable ).toVar();
|
|
|
const val = float( val_immutable ).toVar();
|
|
|
|
|
|
- return select( b, val.negate(), val );
|
|
|
+ return select( b, val.negate(), val ).uniformFlow();
|
|
|
|
|
|
} ).setLayout( {
|
|
|
name: 'mx_negate_if',
|