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.
location
max_color_attachments
1 parent 762d7df commit 738b576Copy full SHA for 738b576
wgpu-core/src/validation.rs
@@ -313,8 +313,10 @@ pub enum StageError {
313
MultipleEntryPointsFound,
314
#[error(transparent)]
315
InvalidResource(#[from] InvalidResourceError),
316
- #[error("Location[{location}] {var}'s index exceeds `max_color_attachments` ({limit})")]
317
- ColorAttachmentLocationExceedsLimit {
+ #[error(
+ "Location[{location}] {var}'s index exceeds the `max_color_attachments` limit ({limit})"
318
+ )]
319
+ ColorAttachmentLocationTooLarge {
320
location: u32,
321
var: InterfaceVar,
322
limit: u32,
0 commit comments