diff options
-rw-r--r-- | wgpu/src/layer.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/wgpu/src/layer.rs b/wgpu/src/layer.rs index ab66264c..8af72b9d 100644 --- a/wgpu/src/layer.rs +++ b/wgpu/src/layer.rs @@ -270,7 +270,11 @@ impl<'a> Layer<'a> { ); } _ => { - // Unsupported! + // Not supported! + log::warn!( + "Unsupported primitive in `iced_wgpu`: {:?}", + primitive + ); } } } |