| Summary: | re-enable Display P3 canvas support on iOS Simulator | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Cameron McCormack (:heycam) <heycam> |
| Component: | Tools / Tests | Assignee: | Nobody <webkit-unassigned> |
| Status: | NEW --- | ||
| Severity: | Normal | CC: | ap, webkit-bug-importer |
| Priority: | P2 | Keywords: | InRadar |
| Version: | WebKit Nightly Build | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
|
Description
Cameron McCormack (:heycam)
2022-07-19 20:30:27 PDT
The explicit disabling of Display P3 canvas support is done by this in PlatformEnable.h:
#if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 120000) \
|| (PLATFORM(IOS_FAMILY) && !PLATFORM(IOS_FAMILY_SIMULATOR))
#define HAVE_CORE_ANIMATION_FIX_FOR_RADAR_78402035 1
#endif
It's kind of misleading that the simulator restriction is applied to HAVE_CORE_ANIMATION_FIX_FOR_RADAR_78402035, a different issue.
|