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

Unified Diff: cc/resources/filter_display_item.cc

Issue 1144693002: cc: Move files out of cc/resources/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: resources: android Created 5 years, 7 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/resources/filter_display_item.h ('k') | cc/resources/float_clip_display_item.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/filter_display_item.cc
diff --git a/cc/resources/filter_display_item.cc b/cc/resources/filter_display_item.cc
deleted file mode 100644
index fa6f20fe113b9e9f2422333d4a823730bee32d4a..0000000000000000000000000000000000000000
--- a/cc/resources/filter_display_item.cc
+++ /dev/null
@@ -1,81 +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.
-
-#include "cc/resources/filter_display_item.h"
-
-#include "base/strings/stringprintf.h"
-#include "base/trace_event/trace_event_argument.h"
-#include "cc/output/render_surface_filters.h"
-#include "skia/ext/refptr.h"
-#include "third_party/skia/include/core/SkCanvas.h"
-#include "third_party/skia/include/core/SkImageFilter.h"
-#include "third_party/skia/include/core/SkPaint.h"
-#include "third_party/skia/include/core/SkXfermode.h"
-#include "ui/gfx/skia_util.h"
-
-namespace cc {
-
-FilterDisplayItem::FilterDisplayItem() {
-}
-
-FilterDisplayItem::~FilterDisplayItem() {
-}
-
-void FilterDisplayItem::SetNew(const FilterOperations& filters,
- const gfx::RectF& bounds) {
- filters_ = filters;
- bounds_ = bounds;
-
- size_t memory_usage =
- sizeof(skia::RefPtr<SkImageFilter>) + sizeof(gfx::RectF);
- DisplayItem::SetNew(true /* suitable_for_gpu_raster */, 1 /* op_count */,
- memory_usage);
-}
-
-void FilterDisplayItem::Raster(SkCanvas* canvas,
- SkDrawPictureCallback* callback) const {
- canvas->save();
- canvas->translate(bounds_.x(), bounds_.y());
-
- skia::RefPtr<SkImageFilter> image_filter =
- RenderSurfaceFilters::BuildImageFilter(
- filters_, gfx::SizeF(bounds_.width(), bounds_.height()));
- SkRect boundaries;
- image_filter->computeFastBounds(
- SkRect::MakeWH(bounds_.width(), bounds_.height()), &boundaries);
-
- SkPaint paint;
- paint.setXfermodeMode(SkXfermode::kSrcOver_Mode);
- paint.setImageFilter(image_filter.get());
- canvas->saveLayer(&boundaries, &paint);
-
- canvas->translate(-bounds_.x(), -bounds_.y());
-}
-
-void FilterDisplayItem::AsValueInto(
- base::trace_event::TracedValue* array) const {
- array->AppendString(base::StringPrintf("FilterDisplayItem bounds: [%s]",
- bounds_.ToString().c_str()));
-}
-
-EndFilterDisplayItem::EndFilterDisplayItem() {
- DisplayItem::SetNew(true /* suitable_for_gpu_raster */, 0 /* op_count */,
- 0 /* memory_usage */);
-}
-
-EndFilterDisplayItem::~EndFilterDisplayItem() {
-}
-
-void EndFilterDisplayItem::Raster(SkCanvas* canvas,
- SkDrawPictureCallback* callback) const {
- canvas->restore();
- canvas->restore();
-}
-
-void EndFilterDisplayItem::AsValueInto(
- base::trace_event::TracedValue* array) const {
- array->AppendString("EndFilterDisplayItem");
-}
-
-} // namespace cc
« no previous file with comments | « cc/resources/filter_display_item.h ('k') | cc/resources/float_clip_display_item.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698