Changeset 272810 in webkit
- Timestamp:
- Feb 12, 2021 2:01:59 PM (17 months ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Shared/WebPreferencesDefaultValues.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r272808 r272810 1 2021-02-12 Youenn Fablet <youenn@apple.com> 2 3 Enable video capture in GPUProcess by default on MacOS 4 https://bugs.webkit.org/show_bug.cgi?id=221750 5 6 Reviewed by Eric Carlson. 7 8 Manually tested. 9 10 * Shared/WebPreferencesDefaultValues.cpp: 11 (WebKit::defaultCaptureVideoInGPUProcessEnabled): 12 1 13 2021-02-12 Jer Noble <jer.noble@apple.com> 2 14 -
trunk/Source/WebKit/Shared/WebPreferencesDefaultValues.cpp
r272735 r272810 204 204 bool defaultCaptureVideoInGPUProcessEnabled() 205 205 { 206 #if HAVE(SYSTEM_FEATURE_FLAGS)207 return isFeatureFlagEnabled("gpu_process_webrtc");208 #endif209 210 return false;211 }212 213 #endif // ENABLE(MEDIA_STREAM)214 215 #if ENABLE(WEB_RTC)216 217 bool defaultWebRTCCodecsInGPUProcess()218 {219 206 #if PLATFORM(MAC) 220 207 return true; … … 226 213 } 227 214 215 #endif // ENABLE(MEDIA_STREAM) 216 217 #if ENABLE(WEB_RTC) 218 219 bool defaultWebRTCCodecsInGPUProcess() 220 { 221 #if PLATFORM(MAC) 222 return true; 223 #elif HAVE(SYSTEM_FEATURE_FLAGS) 224 return isFeatureFlagEnabled("gpu_process_webrtc"); 225 #else 226 return false; 227 #endif 228 } 229 228 230 #endif // ENABLE(WEB_RTC) 229 231
Note: See TracChangeset
for help on using the changeset viewer.