summaryrefslogtreecommitdiffstats
path: root/cc/CCStreamVideoDrawQuad.h
blob: d0e4843284e0b2135e9afd71621f075952e9d87c (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
// 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 CCStreamVideoDrawQuad_h
#define CCStreamVideoDrawQuad_h

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

#include <wtf/PassOwnPtr.h>

namespace cc {

#pragma pack(push, 4)

class CCStreamVideoDrawQuad : public CCDrawQuad {
public:
    static PassOwnPtr<CCStreamVideoDrawQuad> create(const CCSharedQuadState*, const IntRect&, unsigned textureId, const WebKit::WebTransformationMatrix&);

    unsigned textureId() const { return m_textureId; }
    const WebKit::WebTransformationMatrix& matrix() const { return m_matrix; }

    static const CCStreamVideoDrawQuad* materialCast(const CCDrawQuad*);
private:
    CCStreamVideoDrawQuad(const CCSharedQuadState*, const IntRect&, unsigned textureId, const WebKit::WebTransformationMatrix&);

    unsigned m_textureId;
    WebKit::WebTransformationMatrix m_matrix;
};

#pragma pack(pop)

}

#endif