summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/gallium/frontends/rusticl/core/device.rs3
-rw-r--r--src/gallium/frontends/rusticl/core/platform.rs5
2 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/frontends/rusticl/core/device.rs b/src/gallium/frontends/rusticl/core/device.rs
index 0bff8a19a83..b2224880567 100644
--- a/src/gallium/frontends/rusticl/core/device.rs
+++ b/src/gallium/frontends/rusticl/core/device.rs
@@ -485,8 +485,7 @@ impl Device {
}
};
- // add extensions all drivers support
- add_ext(1, 0, 0, "cl_khr_byte_addressable_store", "");
+ // add extensions all drivers support for now
add_ext(1, 0, 0, "cl_khr_global_int32_base_atomics", "");
add_ext(1, 0, 0, "cl_khr_global_int32_extended_atomics", "");
add_ext(1, 0, 0, "cl_khr_local_int32_base_atomics", "");
diff --git a/src/gallium/frontends/rusticl/core/platform.rs b/src/gallium/frontends/rusticl/core/platform.rs
index 152197e9334..666c475a9bf 100644
--- a/src/gallium/frontends/rusticl/core/platform.rs
+++ b/src/gallium/frontends/rusticl/core/platform.rs
@@ -26,11 +26,12 @@ pub struct PlatformFeatures {
static PLATFORM_ENV_ONCE: Once = Once::new();
static PLATFORM_ONCE: Once = Once::new();
-pub static PLATFORM_EXTENSIONS: [cl_name_version; 2] = [
+pub static PLATFORM_EXTENSIONS: [cl_name_version; 3] = [
+ mk_cl_version_ext(1, 0, 0, "cl_khr_byte_addressable_store"),
mk_cl_version_ext(1, 0, 0, "cl_khr_icd"),
mk_cl_version_ext(1, 0, 0, "cl_khr_il_program"),
];
-pub static PLATFORM_EXTENSION_STR: &str = "cl_khr_icd cl_khr_il_program";
+pub static PLATFORM_EXTENSION_STR: &str = "cl_khr_byte_addressable_store cl_khr_icd cl_khr_il_program";
static mut PLATFORM: Platform = Platform {
dispatch: &DISPATCH,