From 058ae53cb190adaa2d5d51fa7f39cdc366b45a27 Mon Sep 17 00:00:00 2001 From: Dean Jackson Date: Fri, 2 Jun 2023 18:33:50 -0700 Subject: [PATCH] WebGL in the GPUP should be enabled for watchOS https://bugs.webkit.org/show_bug.cgi?id=257669 rdar://110191155 Reviewed by Per Arne Vollan and Mike Wyrzykowski. WebGL in the GPUP should be enabled for watchOS. * Source/WTF/wtf/PlatformEnable.h: Canonical link: https://commits.webkit.org/264845@main --- Source/WTF/wtf/PlatformEnable.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/WTF/wtf/PlatformEnable.h b/Source/WTF/wtf/PlatformEnable.h index f5f9888057a2..7badcfbfad43 100644 --- a/Source/WTF/wtf/PlatformEnable.h +++ b/Source/WTF/wtf/PlatformEnable.h @@ -942,7 +942,7 @@ #define ENABLE_GPU_PROCESS_DOM_RENDERING_BY_DEFAULT 1 #endif -#if !defined(ENABLE_GPU_PROCESS_WEBGL_BY_DEFAULT) && (PLATFORM(IOS_FAMILY) || PLATFORM(MAC)) && !PLATFORM(WATCHOS) && !HAVE(UIKIT_WEBKIT_INTERNALS) +#if !defined(ENABLE_GPU_PROCESS_WEBGL_BY_DEFAULT) && (PLATFORM(IOS_FAMILY) || PLATFORM(MAC)) && !HAVE(UIKIT_WEBKIT_INTERNALS) #define ENABLE_GPU_PROCESS_WEBGL_BY_DEFAULT 1 #endif