Skip to content

Commit

Permalink
[Tizen] Temporarily disable Vulkan backend for Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
swift-kim committed Feb 6, 2023
1 parent e995c8a commit 02e4b7b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion impeller/tools/impeller.gni
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ declare_args() {
impeller_enable_opengles = is_mac || is_linux || is_win || is_android

# Whether the Vulkan backend is enabled.
impeller_enable_vulkan = is_linux || is_android
impeller_enable_vulkan = is_android

# Whether to use a prebuilt impellerc.
# If this is the empty string, impellerc will be built.
Expand Down
4 changes: 2 additions & 2 deletions tools/gn
Original file line number Diff line number Diff line change
Expand Up @@ -434,10 +434,10 @@ def to_gn_args(args):
gn_args['skia_use_metal'] = True
gn_args['shell_enable_metal'] = True

# Enable Vulkan on all platforms except for iOS. This is just
# Enable Vulkan on all platforms except for iOS and Linux. This is just
# to save on mobile binary size, as there's no reason the Vulkan embedder
# features can't work on these platforms.
if args.target_os not in ['ios']:
if args.target_os not in ['ios', 'linux']:
gn_args['skia_use_vulkan'] = True
gn_args['skia_use_vma'] = False
gn_args['shell_enable_vulkan'] = True
Expand Down

0 comments on commit 02e4b7b

Please sign in to comment.