blob: 842cc3a2ec330f953571e0874d11be3a5d5b43ff (
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
32
33
34
35
36
37
38
|
// 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/compositing_recorder.h"
#include "cc/playback/compositing_display_item.h"
#include "cc/playback/display_item_list.h"
#include "ui/compositor/paint_context.h"
#include "ui/gfx/canvas.h"
namespace ui {
CompositingRecorder::CompositingRecorder(const PaintContext& context,
const gfx::Size& size_in_context,
uint8_t alpha,
bool lcd_text_requires_opaque_layer)
: context_(context),
bounds_in_layer_(context.ToLayerSpaceBounds(size_in_context)),
saved_(alpha < 255) {
if (!saved_)
return;
context_.list_->CreateAndAppendItem<cc::CompositingDisplayItem>(
bounds_in_layer_, alpha, SkXfermode::kSrcOver_Mode,
nullptr /* no bounds */, skia::RefPtr<SkColorFilter>(),
lcd_text_requires_opaque_layer);
}
CompositingRecorder::~CompositingRecorder() {
if (!saved_)
return;
context_.list_->CreateAndAppendItem<cc::EndCompositingDisplayItem>(
bounds_in_layer_);
}
} // namespace ui
|