summaryrefslogtreecommitdiff
path: root/vulkan
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2020-06-15 19:15:42 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-06-15 19:15:42 +0000
commiteb00380be82c60b9257f1f4e53d354408fb33962 (patch)
tree79827ad0f908a83aa16922f03cec1b5f23d0626d /vulkan
parent24c9f5a4f5fbf17b5d0c6a84a4bd017a01197237 (diff)
parent0cc0df1e137a201e7d2ac369e80caea7e92710d5 (diff)
downloadnative-eb00380be82c60b9257f1f4e53d354408fb33962.tar.gz
Merge "vulkan/opengl: rename some vars and comments" into rvc-dev am: 0cc0df1e13
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/native/+/11869147 Change-Id: I5981a2b67ca28aa5fd81333ad8d65ce122ba206f
Diffstat (limited to 'vulkan')
-rw-r--r--vulkan/scripts/generator_common.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/vulkan/scripts/generator_common.py b/vulkan/scripts/generator_common.py
index cf370fafe5..ef0719db64 100644
--- a/vulkan/scripts/generator_common.py
+++ b/vulkan/scripts/generator_common.py
@@ -22,7 +22,7 @@ import subprocess
import xml.etree.ElementTree as element_tree
# Extensions unsupported on Android.
-_BLACKLISTED_EXTENSIONS = [
+_BLOCKED_EXTENSIONS = [
'VK_EXT_acquire_xlib_display',
'VK_EXT_direct_mode_display',
'VK_EXT_display_control',
@@ -192,7 +192,7 @@ def is_function_supported(cmd):
if cmd not in extension_dict:
return True
else:
- if extension_dict[cmd] not in _BLACKLISTED_EXTENSIONS:
+ if extension_dict[cmd] not in _BLOCKED_EXTENSIONS:
return True
return False