We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1bf444 commit 1b948fbCopy full SHA for 1b948fb
wgpu-core/src/command/render.rs
@@ -638,9 +638,9 @@ impl WebGpuError for ColorAttachmentError {
638
pub enum AttachmentError {
639
#[error("The format of the depth-stencil attachment ({0:?}) is not a depth-or-stencil format")]
640
InvalidDepthStencilAttachmentFormat(wgt::TextureFormat),
641
- #[error("Read-only attachment with load")]
+ #[error("LoadOp must be None for read-only attachments")]
642
ReadOnlyWithLoad,
643
- #[error("Read-only attachment with store")]
+ #[error("StoreOp must be None for read-only attachments")]
644
ReadOnlyWithStore,
645
#[error("Attachment without load")]
646
NoLoad,
0 commit comments