| Index: ui/gl/gl_switches.cc
|
| diff --git a/ui/gl/gl_switches.cc b/ui/gl/gl_switches.cc
|
| index c375fad0484c32f183d4072a67149d0f7bd11152..6beb5337df8f2735c698f61c1bb78897bd133c88 100644
|
| --- a/ui/gl/gl_switches.cc
|
| +++ b/ui/gl/gl_switches.cc
|
| @@ -110,8 +110,8 @@ const char kOverrideUseGLWithOSMesaForTests[] =
|
| // Disables specified comma separated GL Extensions if found.
|
| const char kDisableGLExtensions[] = "disable-gl-extensions";
|
|
|
| -// Use EGL_KHR_swap_buffers_with_damage to implement PostSubBuffers
|
| -const char kEnableSwapBuffersWithDamage[] = "enable-swap-buffers-with-damage";
|
| +// Enables SwapBuffersWithBounds if it is supported.
|
| +const char kEnableSwapBuffersWithBounds[] = "enable-swap-buffers-with-bounds";
|
|
|
| // This is the list of switches passed from this file that are passed from the
|
| // GpuProcessHost to the GPU Process. Add your switch to this list if you need
|
| @@ -127,7 +127,7 @@ const char* kGLSwitchesCopiedFromGpuProcessHost[] = {
|
| kOverrideUseGLWithOSMesaForTests,
|
| kUseANGLE,
|
| kDisableDirectComposition,
|
| - kEnableSwapBuffersWithDamage,
|
| + kEnableSwapBuffersWithBounds,
|
| };
|
| const int kGLSwitchesCopiedFromGpuProcessHostNumSwitches =
|
| arraysize(kGLSwitchesCopiedFromGpuProcessHost);
|
|
|