From 3abbeed74f88f42721a3f76ecd06c0169bb75828 Mon Sep 17 00:00:00 2001 From: Karol Herbst Date: Fri, 30 Sep 2022 02:29:49 +0200 Subject: [PATCH] rusticl: no compute only This might be a good optimization, but we should figure first what drivers should be able to disable and what not first. Signed-off-by: Karol Herbst Part-of: --- src/gallium/frontends/rusticl/mesa/pipe/screen.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/frontends/rusticl/mesa/pipe/screen.rs b/src/gallium/frontends/rusticl/mesa/pipe/screen.rs index fa1ddd42578..053d423af15 100644 --- a/src/gallium/frontends/rusticl/mesa/pipe/screen.rs +++ b/src/gallium/frontends/rusticl/mesa/pipe/screen.rs @@ -95,7 +95,7 @@ impl PipeScreen { (*self.screen).context_create.unwrap()( self.screen, ptr::null_mut(), - PIPE_CONTEXT_COMPUTE_ONLY, + 0, //PIPE_CONTEXT_COMPUTE_ONLY, ) }, self,