summaryrefslogtreecommitdiffstats
path: root/cc/stream_video_draw_quad.h
blob: 68d3d02b51afd990a8ee0ebc3ec046b028ea234c (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
// 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 "base/memory/scoped_ptr.h"
#include <public/WebTransformationMatrix.h>

namespace cc {

#pragma pack(push, 4)

class CCStreamVideoDrawQuad : public CCDrawQuad {
public:
    static scoped_ptr<CCStreamVideoDrawQuad> create(const CCSharedQuadState*, const gfx::Rect&, 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 gfx::Rect&, unsigned textureId, const WebKit::WebTransformationMatrix&);

    unsigned m_textureId;
    WebKit::WebTransformationMatrix m_matrix;
};

#pragma pack(pop)

}

#endif