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

Commit

Permalink
REVERTME: anv/android: disable couple of KHR extensions for Android CTS
Browse files Browse the repository at this point in the history
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]
  • Loading branch information
tpalli authored and strassek committed Oct 5, 2018
1 parent ba41954 commit 1065e9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/intel/vulkan/anv_extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ def __init__(self, version, enable):
EXTENSIONS = [
Extension('VK_ANDROID_native_buffer', 5, 'ANDROID'),
Extension('VK_KHR_16bit_storage', 1, 'device->info.gen >= 8'),
Extension('VK_KHR_8bit_storage', 1, 'device->info.gen >= 8'),
Extension('VK_KHR_8bit_storage', 1, 'device->info.gen >= 8 && !ANDROID'),
Extension('VK_KHR_bind_memory2', 1, True),
Extension('VK_KHR_create_renderpass2', 1, True),
Extension('VK_KHR_create_renderpass2', 1, '!ANDROID'),
Extension('VK_KHR_dedicated_allocation', 1, True),
Extension('VK_KHR_descriptor_update_template', 1, True),
Extension('VK_KHR_device_group', 1, True),
Expand Down

0 comments on commit 1065e9a

Please sign in to comment.