summaryrefslogtreecommitdiffstats
path: root/cc/CCSolidColorLayerImpl.h
blob: 70aae7133c96487b9bb8a80ab535e4a224ef9c11 (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 WebCore {

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 { return "SolidColorLayer"; }

    const int m_tileSize;
};

}

#endif // CCSolidColorLayerImpl_h