summaryrefslogtreecommitdiffstats
path: root/cc/image_layer.h
blob: 404aed49a0fe4ce7b010114d7c5c4d292fa1969d (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
// Copyright 2010 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.

#ifndef ImageLayerChromium_h
#define ImageLayerChromium_h

#include "cc/content_layer.h"
#include "third_party/skia/include/core/SkBitmap.h"

namespace cc {

class ImageLayerTextureUpdater;

// A Layer that contains only an Image element.
class ImageLayerChromium : public TiledLayerChromium {
public:
    static scoped_refptr<ImageLayerChromium> create();

    virtual bool drawsContent() const OVERRIDE;
    virtual void setTexturePriorities(const CCPriorityCalculator&) OVERRIDE;
    virtual void update(CCTextureUpdateQueue&, const CCOcclusionTracker*, CCRenderingStats&) OVERRIDE;
    virtual bool needsContentsScale() const OVERRIDE;

    void setBitmap(const SkBitmap& image);

private:
    ImageLayerChromium();
    virtual ~ImageLayerChromium();

    void setTilingOption(TilingOption);

    virtual LayerTextureUpdater* textureUpdater() const OVERRIDE;
    virtual void createTextureUpdaterIfNeeded() OVERRIDE;
    virtual IntSize contentBounds() const OVERRIDE;

    SkBitmap m_bitmap;

    scoped_refptr<ImageLayerTextureUpdater> m_textureUpdater;
};

}  // namespace cc

#endif