Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(125)

Side by Side Diff: content/public/common/content_switches.cc

Issue 2440093003: WIP GPU scheduler + delayed activation / tile draw
Patch Set: SignalSyncToken -> IsFenceSyncReleased Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "build/build_config.h" 5 #include "build/build_config.h"
6 #include "content/public/common/content_switches.h" 6 #include "content/public/common/content_switches.h"
7 #include "media/media_features.h" 7 #include "media/media_features.h"
8 8
9 namespace switches { 9 namespace switches {
10 10
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 // WebFonts intervention v2 flag and values. 378 // WebFonts intervention v2 flag and values.
379 const char kEnableWebFontsInterventionV2[] = "enable-webfonts-intervention-v2"; 379 const char kEnableWebFontsInterventionV2[] = "enable-webfonts-intervention-v2";
380 const char kEnableWebFontsInterventionV2SwitchValueEnabledWith2G[] = 380 const char kEnableWebFontsInterventionV2SwitchValueEnabledWith2G[] =
381 "enabled-2g"; 381 "enabled-2g";
382 const char kEnableWebFontsInterventionV2SwitchValueEnabledWith3G[] = 382 const char kEnableWebFontsInterventionV2SwitchValueEnabledWith3G[] =
383 "enabled-3g"; 383 "enabled-3g";
384 const char kEnableWebFontsInterventionV2SwitchValueEnabledWithSlow2G[] = 384 const char kEnableWebFontsInterventionV2SwitchValueEnabledWithSlow2G[] =
385 "enabled-slow2g"; 385 "enabled-slow2g";
386 const char kEnableWebFontsInterventionV2SwitchValueDisabled[] = "disabled"; 386 const char kEnableWebFontsInterventionV2SwitchValueDisabled[] = "disabled";
387 387
388 // Enables GPU channel scheduler.
389 const char kEnableGpuScheduler[] = "enable-gpu-scheduler";
390
388 // Makes the GL worker context run asynchronously by using a separate stream. 391 // Makes the GL worker context run asynchronously by using a separate stream.
389 const char kEnableGpuAsyncWorkerContext[] = "enable-gpu-async-worker-context"; 392 const char kEnableGpuAsyncWorkerContext[] = "enable-gpu-async-worker-context";
390 393
391 // Specify that all compositor resources should be backed by GPU memory buffers. 394 // Specify that all compositor resources should be backed by GPU memory buffers.
392 const char kEnableGpuMemoryBufferCompositorResources[] = 395 const char kEnableGpuMemoryBufferCompositorResources[] =
393 "enable-gpu-memory-buffer-compositor-resources"; 396 "enable-gpu-memory-buffer-compositor-resources";
394 397
395 // Enable GpuMemoryBuffer backed VideoFrames. 398 // Enable GpuMemoryBuffer backed VideoFrames.
396 const char kEnableGpuMemoryBufferVideoFrames[] = 399 const char kEnableGpuMemoryBufferVideoFrames[] =
397 "enable-gpu-memory-buffer-video-frames"; 400 "enable-gpu-memory-buffer-video-frames";
(...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after
1071 // the given directory. Used primarily to gather samples for IPC fuzzing. 1074 // the given directory. Used primarily to gather samples for IPC fuzzing.
1072 const char kIpcDumpDirectory[] = "ipc-dump-directory"; 1075 const char kIpcDumpDirectory[] = "ipc-dump-directory";
1073 1076
1074 // Specifies the testcase used by the IPC fuzzer. 1077 // Specifies the testcase used by the IPC fuzzer.
1075 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; 1078 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase";
1076 #endif 1079 #endif
1077 1080
1078 // Don't dump stuff here, follow the same order as the header. 1081 // Don't dump stuff here, follow the same order as the header.
1079 1082
1080 } // namespace switches 1083 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | content/renderer/pepper/ppb_graphics_3d_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698