/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ext/webgpu/query_set.rs
104 строки
2 KB
Kenta Moriuchi
chore: Happy New Year 2026 (#31748)
08 янв 2026, 18:28
Не верифицирован
08 янв 2026, 18:28
8193cf9
Код
Авторство
О чём код?
// Copyright 2018-2026 the Deno authors. MIT license. use deno_core::GarbageCollected; use deno_core::WebIDL; use deno_core::op2; use deno_core::webidl::WebIdlInterfaceConverter; use deno_error::JsErrorBox; use crate::Instance; use crate::error::GPUGenericError; pub struct GPUQuerySet { pub instance: Instance, pub id: wgpu_core::id::QuerySetId, pub r#type: GPUQueryType, pub count: u32, pub label: String, } impl Drop for GPUQuerySet { fn drop(&mut self) { self.instance.query_set_drop(self.id); } } impl WebIdlInterfaceConverter for GPUQuerySet { const NAME: &'static str = "GPUQuerySet"; } // SAFETY: we're sure this can be GCed unsafe impl GarbageCollected for GPUQuerySet { fn trace(&self, _visitor: &mut deno_core::v8::cppgc::Visitor) {} fn get_name(&self) -> &'static std::ffi::CStr { c"GPUQuerySet" } } #[op2] impl GPUQuerySet { #[constructor] #[cppgc] fn constructor(_: bool) -> Result<GPUQuerySet, GPUGenericError> { Err(GPUGenericError::InvalidConstructor) } #[getter] #[string] fn label(&self) -> String { self.label.clone() } #[setter] #[string] fn label(&self, #[webidl] _label: String) { // TODO(@crowlKats): no-op, needs wpgu to implement changing the label } #[fast] #[undefined] fn destroy(&self) -> Result<(), JsErrorBox> { // TODO(https://github.com/gfx-rs/wgpu/issues/6495): Destroy the query // set. Until that is supported, it is okay to do nothing here, the // query set will be garbage collected and dropped eventually. Ok(()) } #[getter] #[string] #[rename("type")] fn r#type(&self) -> &'static str { self.r#type.as_str() } #[getter] fn count(&self) -> u32 { self.count } } #[derive(WebIDL)] #[webidl(dictionary)] pub(crate) struct GPUQuerySetDescriptor { #[webidl(default = String::new())] pub label: String, pub r#type: GPUQueryType, #[options(enforce_range = true)] pub count: u32, } #[derive(WebIDL, Clone)] #[webidl(enum)] pub(crate) enum GPUQueryType { Occlusion, Timestamp, } impl From<GPUQueryType> for wgpu_types::QueryType { fn from(value: GPUQueryType) -> Self { match value { GPUQueryType::Occlusion => Self::Occlusion, GPUQueryType::Timestamp => Self::Timestamp, } } }