Commit aa8b3982 by Tobin Ehlis Committed by Jamie Madill

Roll (1/2) LVL version forward and disable VANGLE

Rolling Vulkan validation code forward to HEAD of master as of 4/16/18 morning. Disable Vulkan from the ANGLE build until ANGLE lands in Chromium. After that second part of roll will be submitted. This LVL update includes MockICD fixes to allow ANGLE perf tests to run correctly with Null Vulkan configuration. Bug: angleproject:2482 Change-Id: I61dc9ed293677a1b5839b605d7c3640dca138db3 Reviewed-on: https://chromium-review.googlesource.com/1014405Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org>
parent 0cb6dc4c
...@@ -40,7 +40,7 @@ deps = { ...@@ -40,7 +40,7 @@ deps = {
Var('android_git') + '/platform/external/shaderc/spirv-tools' + '@' + '9996173f363729b3a97309685dbd4d78547a63a7', Var('android_git') + '/platform/external/shaderc/spirv-tools' + '@' + '9996173f363729b3a97309685dbd4d78547a63a7',
'{root}/third_party/vulkan-validation-layers/src': '{root}/third_party/vulkan-validation-layers/src':
Var('android_git') + '/platform/external/vulkan-validation-layers' + '@' + '354ad3ba8b88136b82b712acab9b8fcb981beaff', Var('android_git') + '/platform/external/vulkan-validation-layers' + '@' + '4b0d099f5388e9d5741a7013af8ab43c2827c8fb',
'{root}/third_party/zlib': '{root}/third_party/zlib':
Var('chromium_git') + '/chromium/src/third_party/zlib' + '@' + '24ab14872e8e068ba08cc31cc3d43bcc6d5cb832', Var('chromium_git') + '/chromium/src/third_party/zlib' + '@' + '24ab14872e8e068ba08cc31cc3d43bcc6d5cb832',
......
...@@ -25,7 +25,7 @@ vars = { ...@@ -25,7 +25,7 @@ vars = {
'spirv_tools_revision': '9996173f363729b3a97309685dbd4d78547a63a7', 'spirv_tools_revision': '9996173f363729b3a97309685dbd4d78547a63a7',
# Current revision of the Vulkan Validation Layers SDK. # Current revision of the Vulkan Validation Layers SDK.
'vulkan_revision': '354ad3ba8b88136b82b712acab9b8fcb981beaff', 'vulkan_revision': '4b0d099f5388e9d5741a7013af8ab43c2827c8fb',
} }
deps = { deps = {
......
...@@ -40,8 +40,10 @@ declare_args() { ...@@ -40,8 +40,10 @@ declare_args() {
angle_enable_d3d11 = is_win angle_enable_d3d11 = is_win
angle_enable_gl = ozone_platform_gbm || !is_linux || (use_x11 && !is_chromeos) angle_enable_gl = ozone_platform_gbm || !is_linux || (use_x11 && !is_chromeos)
angle_enable_vulkan = is_win || (is_linux && use_x11 && !is_chromeos) || # TODO(tobine): Re-enable after roll
(is_android && ndk_supports_vulkan) # angle_enable_vulkan = is_win || (is_linux && use_x11 && !is_chromeos) ||
# (is_android && ndk_supports_vulkan)
angle_enable_vulkan = false
angle_enable_null = true angle_enable_null = true
angle_enable_essl = true angle_enable_essl = true
angle_enable_glsl = true angle_enable_glsl = true
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment