From d74b3c550b88ce5a106ade561006040bafc91ee9 Mon Sep 17 00:00:00 2001 From: Karol Herbst Date: Tue, 4 Mar 2025 00:16:09 +0100 Subject: [PATCH] rusticl/mesa: remove Sync from PipeContext It was never sync and never will be. Luckily we can just remove it now. Part-of: --- src/gallium/frontends/rusticl/mesa/pipe/context.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gallium/frontends/rusticl/mesa/pipe/context.rs b/src/gallium/frontends/rusticl/mesa/pipe/context.rs index e02a26ea7fb..1d6186794cd 100644 --- a/src/gallium/frontends/rusticl/mesa/pipe/context.rs +++ b/src/gallium/frontends/rusticl/mesa/pipe/context.rs @@ -21,7 +21,6 @@ pub struct PipeContext { } unsafe impl Send for PipeContext {} -unsafe impl Sync for PipeContext {} #[derive(Clone, Copy)] #[repr(u32)]