Skip to content

Commit

Permalink
Revert of Re-enable renderer partial raster by default. (patchset chr…
Browse files Browse the repository at this point in the history
…omium#1 id:1 of https://codereview.chromium.org/1326103002/ )

Reason for revert:
Exposes caret invalidation bugs (http://crbug.com/528922).

Original issue's description:
> Re-enable renderer partial raster by default.
>
> If you see 1-pixel repainting issues with this CL in the blame list, it is
> likely at fault. This CL should revert cleanly if needed.
>
> BUG=492754
>
> Committed: https://crrev.com/f11aee0769a5a1d37ce4c601dcb2b27dd1338fa7
> Cr-Commit-Position: refs/heads/master@{#347307}

TBR=piman@chromium.org
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=492754,528922

Review URL: https://codereview.chromium.org/1329163002

Cr-Commit-Position: refs/heads/master@{#347765}
  • Loading branch information
jeremyroman authored and Commit bot committed Sep 8, 2015
1 parent 2f78bb2 commit a8f2b0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/browser/gpu/compositor_util.cc
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ bool IsPersistentGpuMemoryBufferEnabled() {
if (IsZeroCopyUploadEnabled())
return false;
const auto& command_line = *base::CommandLine::ForCurrentProcess();
return !command_line.HasSwitch(switches::kDisablePersistentGpuMemoryBuffer);
return command_line.HasSwitch(switches::kEnablePersistentGpuMemoryBuffer);
}

bool IsGpuRasterizationEnabled() {
Expand Down

0 comments on commit a8f2b0e

Please sign in to comment.