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
Fix read-only depth/stencil attachments (#497)
Read-only depth/stencil attachments must have load/store ops None (or
_Undefined enum value in C API). However, when converting
WGPURenderPassDepthStencilAttachment, WGPULoadOp_Undefined was being
mapped to Some(wgc::command::LoadOp::Load) rather than None. Same for
store op.