summaryrefslogtreecommitdiffstats
path: root/ui/compositor/compositing_recorder.cc
blob: 80d4f5747801adb9018a32517b5ea6730e779723 (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
39
40
// 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/resources/compositing_display_item.h"
#include "cc/resources/display_item_list.h"
#include "ui/compositor/paint_context.h"
#include "ui/gfx/canvas.h"

namespace ui {

CompositingRecorder::CompositingRecorder(const PaintContext& context,
                                         uint8_t alpha)
    : context_(context), saved_(alpha < 255) {
  if (!saved_)
    return;

  if (context_.canvas_) {
    context_.canvas_->SaveLayerAlpha(alpha);
  } else {
    context_.list_->AppendItem(cc::CompositingDisplayItem::Create(
        alpha, SkXfermode::kSrcOver_Mode, nullptr /* no bounds */,
        skia::RefPtr<SkColorFilter>()));
  }
}

CompositingRecorder::~CompositingRecorder() {
  if (!saved_)
    return;

  if (context_.canvas_) {
    context_.canvas_->Restore();
  } else {
    context_.list_->AppendItem(cc::EndCompositingDisplayItem::Create());
  }
}

}  // namespace ui