You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, resolving the following function will generate a WGSL function with no arguments:
tgpu.fn([d.arrayOf(d.f32,gridSize)]).does(()=>{// do something}).$name('fill');
That's because the arguments are based on what's in the AST, and not what's in the shell.
Arguments omitted from the AST should be given unique but random names, like param_0, param_1, etc...
The text was updated successfully, but these errors were encountered:
Currently, resolving the following function will generate a WGSL function with no arguments:
That's because the arguments are based on what's in the AST, and not what's in the shell.
Arguments omitted from the AST should be given unique but random names, like param_0, param_1, etc...
The text was updated successfully, but these errors were encountered: