File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 6
6
# set anything.
7
7
8
8
if (is_linux ) {
9
- vulkan_use_x11 = true
9
+ vulkan_use_x11 = false
10
10
vulkan_use_wayland = true
11
11
}
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ declare_args() {
18
18
enable_unittests ) && target_os != " fuchsia"
19
19
20
20
# Whether the Vulkan backend is enabled.
21
- impeller_enable_vulkan = (is_win || is_android || is_mac ||
21
+ impeller_enable_vulkan = (is_linux || is_win || is_android || is_mac ||
22
22
enable_unittests ) && target_os != " fuchsia"
23
23
}
24
24
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ declare_args() {
7
7
8
8
# The logic for enabling Vulkan and Metal is in tools/gn.
9
9
shell_enable_metal = false
10
- shell_enable_vulkan = false
10
+ shell_enable_vulkan = true
11
11
12
12
shell_enable_software = true
13
13
}
Original file line number Diff line number Diff line change @@ -629,7 +629,7 @@ def to_gn_args(args):
629
629
# Enable Vulkan on all platforms except for iOS. This is just
630
630
# to save on mobile binary size, as there's no reason the Vulkan embedder
631
631
# features can't work on these platforms.
632
- if gn_args['target_os'] not in ['ios', 'mac', 'linux' ]:
632
+ if gn_args['target_os'] not in ['ios', 'mac']:
633
633
gn_args['skia_use_vulkan'] = True
634
634
gn_args['skia_use_vma'] = False
635
635
gn_args['shell_enable_vulkan'] = True
You can’t perform that action at this time.
0 commit comments