mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 08:50:13 +01:00
clover: expose cl_arm_shared_virtual_memory for devices with SVM support
Signed-off-by: Karol Herbst <kherbst@redhat.com> Reviewed-by: Francisco Jerez <currojerez@riseup.net> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/2076>
This commit is contained in:
parent
657ff3b3b8
commit
471fd41e84
1 changed files with 2 additions and 1 deletions
|
|
@ -327,7 +327,8 @@ device::supported_extensions() const {
|
|||
+ std::string(has_int64_atomics() ? " cl_khr_int64_base_atomics" : "")
|
||||
+ std::string(has_int64_atomics() ? " cl_khr_int64_extended_atomics" : "")
|
||||
+ std::string(has_doubles() ? " cl_khr_fp64" : "")
|
||||
+ std::string(has_halves() ? " cl_khr_fp16" : "");
|
||||
+ std::string(has_halves() ? " cl_khr_fp16" : "")
|
||||
+ std::string(svm_support() ? " cl_arm_shared_virtual_memory" : "");
|
||||
}
|
||||
|
||||
const void *
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue