diff options
author | Tapani Pälli <[email protected]> | 2018-05-16 08:38:50 +0300 |
---|---|---|
committer | Tapani Pälli <[email protected]> | 2018-05-21 09:26:50 +0300 |
commit | 63525ba730e3d8a466d7f6382a2b91f4c75dd171 (patch) | |
tree | 50afc3e089a846a5433b31893444658b7ef4fa21 /src/intel/vulkan | |
parent | 437acae704337120c23a365b3d9aad92213cf500 (diff) |
android: enable VK_ANDROID_native_buffer
Patch changes entrypoints generator to not skip this extension even
though it is set as disabled in the xml. We also need compilation
flag VK_USE_PLATFORM_ANDROID_KHR to be enabled.
It looks like this extension got disabled in commit 69f447553c.
v2: just remove the whole 'supported' attrib check + remove
vk_icd.h compilation fix (fix in VulkanHeaders instead)
Signed-off-by: Tapani Pälli <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/vulkan')
-rw-r--r-- | src/intel/vulkan/anv_entrypoints_gen.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/intel/vulkan/anv_entrypoints_gen.py b/src/intel/vulkan/anv_entrypoints_gen.py index d603ac1b20b..230671d36ae 100644 --- a/src/intel/vulkan/anv_entrypoints_gen.py +++ b/src/intel/vulkan/anv_entrypoints_gen.py @@ -495,9 +495,6 @@ def get_entrypoints(doc, entrypoints_to_defines, start_index): if ext_name not in supported_exts: continue - if extension.attrib['supported'] != 'vulkan': - continue - ext = supported_exts[ext_name] ext.type = extension.attrib['type'] |