From 8153e29c98aa9b68fd47809c09a693ca9fb0b83e Mon Sep 17 00:00:00 2001 From: Joshua Groves Date: Wed, 16 Sep 2020 01:05:12 -0230 Subject: [PATCH] [rs] Temporarily no-op debug marker functions for web --- wgpu/src/backend/web.rs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/wgpu/src/backend/web.rs b/wgpu/src/backend/web.rs index 73258f8258..3848c5eba0 100644 --- a/wgpu/src/backend/web.rs +++ b/wgpu/src/backend/web.rs @@ -90,15 +90,15 @@ impl crate::ComputePassInner for ComputePass { } fn insert_debug_marker(&mut self, _label: &str) { - unimplemented!() + // TODO } fn push_debug_group(&mut self, _group_label: &str) { - unimplemented!() + // TODO } fn pop_debug_group(&mut self) { - unimplemented!() + // TODO } fn dispatch(&mut self, x: u32, y: u32, z: u32) { @@ -263,15 +263,15 @@ impl crate::RenderPassInner for RenderPass { } fn insert_debug_marker(&mut self, _label: &str) { - unimplemented!() + // TODO } fn push_debug_group(&mut self, _group_label: &str) { - unimplemented!() + // TODO } fn pop_debug_group(&mut self) { - unimplemented!() + // TODO } fn execute_bundles<'a, I: Iterator>(&mut self, _render_bundles: I) { @@ -1465,13 +1465,13 @@ impl crate::Context for Context { } fn command_encoder_insert_debug_marker(&self, encoder: &Self::CommandEncoderId, label: &str) { - unimplemented!() + // TODO } fn command_encoder_push_debug_group(&self, encoder: &Self::CommandEncoderId, label: &str) { - unimplemented!() + // TODO } fn command_encoder_pop_debug_group(&self, encoder: &Self::CommandEncoderId) { - unimplemented!() + // TODO } fn render_bundle_encoder_finish(