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
.. similar just happened me in naga v23.0.0 but with local variables, the error messsage points to min_d declaration, or rather strangely the first min function but gives no context to textureStore call
error:
┌─ :26:17│26 │ let min_d = min(min(d[0], d[1]), min(d[2], d[3]));│ ^^^ naga::Expression [23]Entry point depth_downsample_main at Compute is invalid:
The value [23] can not be stored
The text was updated successfully, but these errors were encountered:
I know why this is because, funnily enough, I was getting irritated with this same issue yesterday. For some reason, we narrow the span associated with expression errors in function calls to the callee identifier.
from gfx-rs/naga#2089 (comment)
.. similar just happened me in naga v23.0.0 but with local variables, the error messsage points to min_d declaration, or rather strangely the first
min
function but gives no context to textureStore callerror:
The text was updated successfully, but these errors were encountered: