From 90f0f91ce2a9cc08ef9e4072741a33ed9654b778 Mon Sep 17 00:00:00 2001 From: Karol Herbst Date: Thu, 28 Apr 2022 02:49:00 +0200 Subject: [PATCH] rusticl: disable fp64 support Signed-off-by: Karol Herbst Acked-by: Alyssa Rosenzweig Part-of: --- src/gallium/frontends/rusticl/core/device.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gallium/frontends/rusticl/core/device.rs b/src/gallium/frontends/rusticl/core/device.rs index 0137ec52f32..1ab3bd22129 100644 --- a/src/gallium/frontends/rusticl/core/device.rs +++ b/src/gallium/frontends/rusticl/core/device.rs @@ -476,6 +476,8 @@ impl Device { } pub fn doubles_supported(&self) -> bool { + false + /* if self.screen.param(pipe_cap::PIPE_CAP_DOUBLES) == 0 { return false; } @@ -486,6 +488,7 @@ impl Device { unsafe { *nir_options }.lower_doubles_options as u32, nir_lower_doubles_options::nir_lower_fp64_full_software as u32, ) + */ } pub fn long_supported(&self) -> bool {