Skip to content
This repository was archived by the owner on Jan 7, 2023. It is now read-only.

Commit 1065e9a

Browse files
tpallistrassek
authored andcommitted
REVERTME: anv/android: disable couple of KHR extensions for Android CTS
This change makes following test pass: dEQP-VK.api.info.device.extensions Test: dEQP-VK.api.info.device.extensions Signed-off-by: Tapani Pälli <[email protected]> [strassek: carry this patch until the extensions are whitelisted in CTS]
1 parent ba41954 commit 1065e9a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/intel/vulkan/anv_extensions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ def __init__(self, version, enable):
7272
EXTENSIONS = [
7373
Extension('VK_ANDROID_native_buffer', 5, 'ANDROID'),
7474
Extension('VK_KHR_16bit_storage', 1, 'device->info.gen >= 8'),
75-
Extension('VK_KHR_8bit_storage', 1, 'device->info.gen >= 8'),
75+
Extension('VK_KHR_8bit_storage', 1, 'device->info.gen >= 8 && !ANDROID'),
7676
Extension('VK_KHR_bind_memory2', 1, True),
77-
Extension('VK_KHR_create_renderpass2', 1, True),
77+
Extension('VK_KHR_create_renderpass2', 1, '!ANDROID'),
7878
Extension('VK_KHR_dedicated_allocation', 1, True),
7979
Extension('VK_KHR_descriptor_update_template', 1, True),
8080
Extension('VK_KHR_device_group', 1, True),

0 commit comments

Comments
 (0)