• Home
  • Raw
  • Download

Lines Matching +full:vulkan +full:- +full:layers

5 To update ANGLE in Gecko, use Windows with git-bash, and setup depot_tools, python2, and
12 It has branches like 'firefox-60' which is the branch we use for pulling into
15 This script leaves a record of the merge-base and cherry-picks that we pull into
18 ANGLE<->Chrome version mappings are here: https://omahaproxy.appspot.com/
41 /path/to/gecko/gfx/angle/update-angle.py origin/chromium/XXXX
42 git push moz # Push the firefox-XX branch to github.com/mozilla/angle
59 # We need to set DEPOT_TOOLS_WIN_TOOLCHAIN to 0 for non-Googlers, but otherwise
75 # ------------------------------------------------------------------------------
113 # ------------------------------------------------------------------------------
118 p = run_checked('gn', 'desc', '--format=json', str(OUT_DIR), '*', stdout=subprocess.PIPE,
124 # -
130 # ------------------------------------------------------------------------------
134 def flattened_target(target_name: str, descs: dict, stop_at_lib: bool =True) -> dict:
175 # ------------------------------------------------------------------------------
211 b'libANGLE/renderer/vulkan/android/AHBFunctions.h',
212 b'libANGLE/renderer/vulkan/android/DisplayVkAndroid.h',
213 b'libANGLE/renderer/vulkan/DisplayVk_api.h',
214 b'libANGLE/renderer/vulkan/fuchsia/DisplayVkFuchsia.h',
215 b'libANGLE/renderer/vulkan/ggp/DisplayVkGGP.h',
216 b'libANGLE/renderer/vulkan/mac/DisplayVkMac.h',
217 b'libANGLE/renderer/vulkan/win32/DisplayVkWin32.h',
218 b'libANGLE/renderer/vulkan/xcb/DisplayVkXcb.h',
219 b'libANGLE/renderer/vulkan/wayland/DisplayVkWayland.h',
224 b'spirv-tools/libspirv.h',
247 # Validation layers support building with robin hood hashing, but we are not enabling that
250 # Validation layers optionally use mimalloc
251 b'mimalloc-new-delete.h',
252 # From the Vulkan-Loader
260 # From a comment in vulkan-validation-layers/src/layers/vk_mem_alloc.h
274 b'mach-o',
285 '//third_party/abseil-cpp',
290 def has_all_includes(target_name: str, descs: dict) -> bool:
297 acceptable_sources = {x.rsplit('/', 1)[-1].encode() for x in acceptable_sources}
320 include_file = include.rsplit(b'/', 1)[-1]
332 # -
335 def gather_libraries(roots: Sequence[str], descs: dict) -> Set[str]:
349 # -
358 # ------------------------------------------------------------------------------