mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 17:30:20 +01:00
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:
parent
f2ce79f8af
commit
90f0f91ce2
1 changed files with 3 additions and 0 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue