summaryrefslogtreecommitdiffstats
path: root/cc/test
diff options
context:
space:
mode:
authoralokp@chromium.org <alokp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-01 20:26:24 +0000
committeralokp@chromium.org <alokp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-01 20:26:24 +0000
commit7e03a26452539aa20e72a8e54cc66173e57615c2 (patch)
tree35b4d80751bda9ab5ecfb8702a3383a9542e2af3 /cc/test
parent8a7212c3b470701715e5ebbcfc34851e58124923 (diff)
downloadchromium_src-7e03a26452539aa20e72a8e54cc66173e57615c2.zip
chromium_src-7e03a26452539aa20e72a8e54cc66173e57615c2.tar.gz
chromium_src-7e03a26452539aa20e72a8e54cc66173e57615c2.tar.bz2
cc: Delete hybrid rasterization setting.
The new plan is to enable/disable gpu rasterization for the layer tree instead of per layer. This eliminates the need for hybrid rasterization setting. BUG=367198 Review URL: https://codereview.chromium.org/265733003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@267619 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/test')
-rw-r--r--cc/test/gpu_rasterization_settings.h22
-rw-r--r--cc/test/hybrid_rasterization_settings.h22
2 files changed, 0 insertions, 44 deletions
diff --git a/cc/test/gpu_rasterization_settings.h b/cc/test/gpu_rasterization_settings.h
deleted file mode 100644
index 97c5710..0000000
--- a/cc/test/gpu_rasterization_settings.h
+++ /dev/null
@@ -1,22 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CC_TEST_GPU_RASTERIZATION_SETTINGS_H_
-#define CC_TEST_GPU_RASTERIZATION_SETTINGS_H_
-
-#include "cc/trees/layer_tree_settings.h"
-
-namespace cc {
-
-class GpuRasterizationSettings : public LayerTreeSettings {
- public:
- GpuRasterizationSettings() {
- impl_side_painting = true;
- rasterization_site = GpuRasterization;
- }
-};
-
-} // namespace cc
-
-#endif // CC_TEST_GPU_RASTERIZATION_SETTINGS_H_
diff --git a/cc/test/hybrid_rasterization_settings.h b/cc/test/hybrid_rasterization_settings.h
deleted file mode 100644
index f99bfd2..0000000
--- a/cc/test/hybrid_rasterization_settings.h
+++ /dev/null
@@ -1,22 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CC_TEST_HYBRID_RASTERIZATION_SETTINGS_H_
-#define CC_TEST_HYBRID_RASTERIZATION_SETTINGS_H_
-
-#include "cc/trees/layer_tree_settings.h"
-
-namespace cc {
-
-class HybridRasterizationSettings : public LayerTreeSettings {
- public:
- HybridRasterizationSettings() {
- impl_side_painting = true;
- rasterization_site = HybridRasterization;
- }
-};
-
-} // namespace cc
-
-#endif // CC_TEST_HYBRID_RASTERIZATION_SETTINGS_H_