blob: ef0e5a72e874ebe7338ab3a35b4f64c7802d8e69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// Copyright 2015 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 "ui/compositor/paint_cache.h"
#include "cc/resources/display_item_list.h"
#include "cc/resources/drawing_display_item.h"
#include "ui/compositor/paint_context.h"
namespace ui {
PaintCache::PaintCache() {
}
PaintCache::~PaintCache() {
}
bool PaintCache::UseCache(const PaintContext& context) {
if (!display_item_)
return false;
DCHECK(context.list_);
context.list_->AppendItem(display_item_->Clone());
return true;
}
void PaintCache::SetCache(scoped_ptr<cc::DrawingDisplayItem> item) {
display_item_ = item.Pass();
}
} // namespace ui
|