From 447e3eee8d135f46f9acc4a14b5a8197dd91aa6f Mon Sep 17 00:00:00 2001 From: Erich Gubler Date: Thu, 16 May 2024 18:44:58 -0400 Subject: [PATCH] fix: ensure render pipelines have at least 1 target --- CHANGELOG.md | 4 ++++ wgpu-core/src/device/resource.rs | 10 ++++++++++ wgpu-core/src/pipeline.rs | 5 +++++ 3 files changed, 19 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f67e017b..e31473abc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -90,6 +90,10 @@ By @stefnotch in [#5410](https://github.com/gfx-rs/wgpu/pull/5410) ### Bug Fixes +### General + +- Ensure render pipelines have at least 1 target. By @ErichDonGubler in [#5715](https://github.com/gfx-rs/wgpu/pull/5715) + #### Vulkan - Fix enablement of subgroup ops extension on Vulkan devices that don't support Vulkan 1.3. By @cwfitzgerald in [#5624](https://github.com/gfx-rs/wgpu/pull/5624). diff --git a/wgpu-core/src/device/resource.rs b/wgpu-core/src/device/resource.rs index 7ac3878ef..3fdb66462 100644 --- a/wgpu-core/src/device/resource.rs +++ b/wgpu-core/src/device/resource.rs @@ -3044,8 +3044,11 @@ impl Device { ); } + let mut target_specified = false; + for (i, cs) in color_targets.iter().enumerate() { if let Some(cs) = cs.as_ref() { + target_specified = true; let error = loop { if cs.write_mask.contains_invalid_bits() { break Some(pipeline::ColorStateError::InvalidWriteMask(cs.write_mask)); @@ -3073,6 +3076,7 @@ impl Device { if !hal::FormatAspects::from(cs.format).contains(hal::FormatAspects::COLOR) { break Some(pipeline::ColorStateError::FormatNotColor(cs.format)); } + if desc.multisample.count > 1 && !format_features .flags @@ -3091,6 +3095,7 @@ impl Device { .supported_sample_counts(), )); } + if let Some(blend_mode) = cs.blend { for factor in [ blend_mode.color.src_factor, @@ -3130,6 +3135,7 @@ impl Device { } if let Some(ds) = depth_stencil_state { + target_specified = true; let error = loop { let format_features = self.describe_format_features(adapter, ds.format)?; if !format_features @@ -3180,6 +3186,10 @@ impl Device { } } + if !target_specified { + return Err(pipeline::CreateRenderPipelineError::NoTargetSpecified); + } + // Get the pipeline layout from the desc if it is provided. let pipeline_layout = match desc.layout { Some(pipeline_layout_id) => { diff --git a/wgpu-core/src/pipeline.rs b/wgpu-core/src/pipeline.rs index bfb2c331d..ee8f8668c 100644 --- a/wgpu-core/src/pipeline.rs +++ b/wgpu-core/src/pipeline.rs @@ -495,6 +495,11 @@ pub enum CreateRenderPipelineError { PipelineExpectsShaderToUseDualSourceBlending, #[error("Shader entry point expects the pipeline to make use of dual-source blending.")] ShaderExpectsPipelineToUseDualSourceBlending, + #[error("{}", concat!( + "At least one color attachment or depth-stencil attachment was expected, ", + "but no render target for the pipeline was specified." + ))] + NoTargetSpecified, } bitflags::bitflags! {