summaryrefslogtreecommitdiffstats
path: root/content
diff options
context:
space:
mode:
authorccameron <ccameron@chromium.org>2015-11-12 13:41:44 -0800
committerCommit bot <commit-bot@chromium.org>2015-11-12 21:43:01 +0000
commitc5b6a85810bd669a3916587ac4d70ac566351258 (patch)
tree0dc8a879a12d516485358d3d8527acb4c43cefb9 /content
parent3dacabb3302d4b597a92078101ced7be1e18a163 (diff)
downloadchromium_src-c5b6a85810bd669a3916587ac4d70ac566351258.zip
chromium_src-c5b6a85810bd669a3916587ac4d70ac566351258.tar.gz
chromium_src-c5b6a85810bd669a3916587ac4d70ac566351258.tar.bz2
Disable kEnableGpuMemoryBufferCompositorResources on Mac
This caused an uptick in crashes due to GpuMemoryBuffers failing to allocate. BUG=554541 TBR=reveman Review URL: https://codereview.chromium.org/1435133003 Cr-Commit-Position: refs/heads/master@{#359396}
Diffstat (limited to 'content')
-rw-r--r--content/browser/gpu/compositor_util.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/content/browser/gpu/compositor_util.cc b/content/browser/gpu/compositor_util.cc
index 10f507b..895044d 100644
--- a/content/browser/gpu/compositor_util.cc
+++ b/content/browser/gpu/compositor_util.cc
@@ -240,7 +240,9 @@ bool IsGpuMemoryBufferCompositorResourcesEnabled() {
return false;
#if defined(OS_MACOSX)
- return true;
+ // Disabled due to increased crash rates.
+ // http://crbug.com/554541
+ return false;
#else
return false;
#endif