rusticl: disable fp64 support

Signed-off-by: Karol Herbst <kherbst@redhat.com>
Acked-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15439>
This commit is contained in:
Karol Herbst
2022-04-28 02:49:00 +02:00
committed by Marge Bot
parent f2ce79f8af
commit 90f0f91ce2

View File

@@ -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 {