Wire up timestamp queries (#5527)

This commit is contained in:
Connor Fitzgerald 2024-04-17 12:10:39 -04:00 committed by GitHub
parent 9f505e730f
commit 292995a748
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2311,6 +2311,20 @@ impl crate::context::Context for ContextWebGpu {
if let Some(label) = desc.label {
mapped_desc.label(label);
}
if let Some(ref timestamp_writes) = desc.timestamp_writes {
let query_set: &<ContextWebGpu as crate::Context>::QuerySetData =
downcast_ref(timestamp_writes.query_set.data.as_ref());
let mut writes = webgpu_sys::GpuComputePassTimestampWrites::new(&query_set.0);
if let Some(index) = timestamp_writes.beginning_of_pass_write_index {
writes.beginning_of_pass_write_index(index);
}
if let Some(index) = timestamp_writes.end_of_pass_write_index {
writes.end_of_pass_write_index(index);
}
mapped_desc.timestamp_writes(&writes);
}
create_identified(
encoder_data
.0
@ -2410,6 +2424,19 @@ impl crate::context::Context for ContextWebGpu {
mapped_desc.depth_stencil_attachment(&mapped_depth_stencil_attachment);
}
if let Some(ref timestamp_writes) = desc.timestamp_writes {
let query_set: &<ContextWebGpu as crate::Context>::QuerySetData =
downcast_ref(timestamp_writes.query_set.data.as_ref());
let mut writes = webgpu_sys::GpuRenderPassTimestampWrites::new(&query_set.0);
if let Some(index) = timestamp_writes.beginning_of_pass_write_index {
writes.beginning_of_pass_write_index(index);
}
if let Some(index) = timestamp_writes.end_of_pass_write_index {
writes.end_of_pass_write_index(index);
}
mapped_desc.timestamp_writes(&writes);
}
create_identified(encoder_data.0.begin_render_pass(&mapped_desc))
}