~mterry/qtvideo-node/dont-install-tests

« back to all changes in this revision

Viewing changes to src/shadervideoshader.h

  • Committer: Tarmac
  • Author(s): Guenter Schwann
  • Date: 2012-11-09 10:57:05 UTC
  • mfrom: (5.1.1 qtvideonode-plugin-tests)
  • Revision ID: tarmac-20121109105705-4i02o2phcmtfowde
* Spliting up code in separate files
* Add a unit test.

Approved by PS Jenkins bot, Michael Zanetti.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2012 Canonical, Ltd.
 
3
 *
 
4
 * Authors:
 
5
 *  Guenter Schwann <guenter.schwann@canonical.com>
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; version 3.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
#ifndef SHADERVIDEOSHADER_H
 
21
#define SHADERVIDEOSHADER_H
 
22
 
 
23
#include <QSGMaterialShader>
 
24
#include <QVideoFrame>
 
25
 
 
26
class ShaderVideoShader : public QSGMaterialShader
 
27
{
 
28
public:
 
29
    ShaderVideoShader(QVideoFrame::PixelFormat pixelFormat);
 
30
 
 
31
    void updateState(const RenderState &state, QSGMaterial *newMaterial, QSGMaterial *oldMaterial);
 
32
 
 
33
    char const *const *attributeNames() const;
 
34
 
 
35
    int m_tex_matrix;
 
36
 
 
37
protected:
 
38
    const char *vertexShader() const;
 
39
    const char *fragmentShader() const;
 
40
 
 
41
    void initialize();
 
42
 
 
43
    int m_id_matrix;
 
44
    int m_id_Texture;
 
45
    int m_id_opacity;
 
46
    QVideoFrame::PixelFormat m_pixelFormat;
 
47
};
 
48
 
 
49
#endif // SHADERVIDEOSHADER_H