1
0
Fork 0
forked from wry/wry

backend: take connector name from connector

This commit is contained in:
Julian Orth 2026-03-17 21:14:51 +01:00
parent d321e888be
commit 52b91654ca
3 changed files with 12 additions and 5 deletions

View file

@ -170,6 +170,9 @@ pub trait Connector: Any {
fn gamma_lut_size(&self) -> Option<u32> {
None
}
fn name(&self) -> String {
self.kernel_id().to_string()
}
}
#[derive(Debug)]