diff --git a/src/gallium/frontends/rusticl/core/queue.rs b/src/gallium/frontends/rusticl/core/queue.rs index 7059886fab5..ab35e55ee74 100644 --- a/src/gallium/frontends/rusticl/core/queue.rs +++ b/src/gallium/frontends/rusticl/core/queue.rs @@ -26,7 +26,7 @@ use std::thread::JoinHandle; pub struct QueueContext { // need to use ManuallyDrop so we can recycle the context without cloning ctx: ManuallyDrop, - dev: &'static Device, + pub dev: &'static Device, use_stream: bool, }