summaryrefslogtreecommitdiffstats
path: root/cc/CCSolidColorLayerImpl.h
blob: f170714a2d3743aa235c47fda77dfb81d8e86534 (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
// Copyright 2012 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 CCSolidColorLayerImpl_h
#define CCSolidColorLayerImpl_h

#include "CCLayerImpl.h"
#include <public/WebTransformationMatrix.h>

namespace cc {

class CCSolidColorLayerImpl : public CCLayerImpl {
public:
    static PassOwnPtr<CCSolidColorLayerImpl> create(int id)
    {
        return adoptPtr(new CCSolidColorLayerImpl(id));
    }
    virtual ~CCSolidColorLayerImpl();

    virtual void appendQuads(CCQuadSink&, CCAppendQuadsData&) OVERRIDE;

protected:
    explicit CCSolidColorLayerImpl(int id);

private:
    virtual const char* layerTypeAsString() const OVERRIDE;

    const int m_tileSize;
};

}

#endif // CCSolidColorLayerImpl_h