From b2f42dbe61475a6c242bb04a15ed2a33be6de943 Mon Sep 17 00:00:00 2001 From: Karol Herbst Date: Tue, 10 Dec 2024 18:22:27 +0100 Subject: [PATCH] rusticl/queue: make QueueContext::dev public Reviewed-by: Adam Jackson Part-of: --- src/gallium/frontends/rusticl/core/queue.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, }