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

namespace cc {

#pragma pack(push, 4)

class StreamVideoDrawQuad : public DrawQuad {
public:
    static scoped_ptr<StreamVideoDrawQuad> create(const SharedQuadState*, const gfx::Rect&, unsigned textureId, const WebKit::WebTransformationMatrix&);

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

    static const StreamVideoDrawQuad* materialCast(const DrawQuad*);
private:
    StreamVideoDrawQuad(const SharedQuadState*, const gfx::Rect&, unsigned textureId, const WebKit::WebTransformationMatrix&);

    unsigned m_textureId;
    WebKit::WebTransformationMatrix m_matrix;
};

#pragma pack(pop)

}

#endif