1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CC_PLAYBACK_FILTER_DISPLAY_ITEM_H_
6 #define CC_PLAYBACK_FILTER_DISPLAY_ITEM_H_
8 #include "base/memory/scoped_ptr.h"
9 #include "cc/base/cc_export.h"
10 #include "cc/output/filter_operations.h"
11 #include "cc/playback/display_item.h"
12 #include "ui/gfx/geometry/rect_f.h"
18 class CC_EXPORT FilterDisplayItem
: public DisplayItem
{
21 ~FilterDisplayItem() override
;
23 void SetNew(const FilterOperations
& filters
, const gfx::RectF
& bounds
);
25 void Raster(SkCanvas
* canvas
,
26 SkPicture::AbortCallback
* callback
) const override
;
27 void AsValueInto(base::trace_event::TracedValue
* array
) const override
;
30 FilterOperations filters_
;
34 class CC_EXPORT EndFilterDisplayItem
: public DisplayItem
{
36 EndFilterDisplayItem();
37 ~EndFilterDisplayItem() override
;
39 static scoped_ptr
<EndFilterDisplayItem
> Create() {
40 return make_scoped_ptr(new EndFilterDisplayItem());
43 void Raster(SkCanvas
* canvas
,
44 SkPicture::AbortCallback
* callback
) const override
;
45 void AsValueInto(base::trace_event::TracedValue
* array
) const override
;
50 #endif // CC_PLAYBACK_FILTER_DISPLAY_ITEM_H_