blob: 62026d7227c3fd6f0e796a29bf1af8af3c23f3ce (
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
41
42
43
44
45
46
47
|
// Copyright 2011 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 "config.h"
#if USE(ACCELERATED_COMPOSITING)
#include "SkPictureCanvasLayerTextureUpdater.h"
#include "LayerPainterChromium.h"
#include "SkCanvas.h"
#include "TraceEvent.h"
namespace cc {
SkPictureCanvasLayerTextureUpdater::SkPictureCanvasLayerTextureUpdater(PassOwnPtr<LayerPainterChromium> painter)
: CanvasLayerTextureUpdater(painter)
, m_layerIsOpaque(false)
{
}
SkPictureCanvasLayerTextureUpdater::~SkPictureCanvasLayerTextureUpdater()
{
}
void SkPictureCanvasLayerTextureUpdater::prepareToUpdate(const IntRect& contentRect, const IntSize&, float contentsWidthScale, float contentsHeightScale, IntRect& resultingOpaqueRect, CCRenderingStats& stats)
{
SkCanvas* canvas = m_picture.beginRecording(contentRect.width(), contentRect.height());
paintContents(canvas, contentRect, contentsWidthScale, contentsHeightScale, resultingOpaqueRect, stats);
m_picture.endRecording();
}
void SkPictureCanvasLayerTextureUpdater::drawPicture(SkCanvas* canvas)
{
TRACE_EVENT0("cc", "SkPictureCanvasLayerTextureUpdater::drawPicture");
canvas->drawPicture(m_picture);
}
void SkPictureCanvasLayerTextureUpdater::setOpaque(bool opaque)
{
m_layerIsOpaque = opaque;
}
} // namespace cc
#endif // USE(ACCELERATED_COMPOSITING)
|