Initial import
[glmemperf] / blittest.h
1 /**
2  * OpenGL ES 2.0 memory performance estimator
3  * Copyright (C) 2009 Nokia
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  *
19  * \author Sami Kyöstilä <sami.kyostila@nokia.com>
20  *
21  * Generic blitter
22  */
23 #ifndef BLITTEST_H
24 #define BLITTEST_H
25
26 #include "test.h"
27 #include <GLES2/gl2.h>
28
29 class BlitTest: public Test
30 {
31 protected:
32     GLint m_program;
33     GLint m_positionAttr, m_texcoordAttr;
34     GLint m_textureUnif;
35     GLuint m_texture;
36     GLenum m_format;
37     GLenum m_type;
38     int m_width, m_height;
39     float m_texW, m_texH;
40     float m_quadW, m_quadH;
41     bool m_rotate;
42     std::string m_fileName;
43     std::string m_vertSource;
44     std::string m_fragSource;
45
46 public:
47     BlitTest(int width, int height, 
48              bool rotate = false, float texW = 1.0f, float texH = 1.0f,
49              float quadW = 1.0f, float quadH = 1.0f);
50
51     BlitTest(GLenum format, GLenum type, int width, int height, const std::string& fileName,
52              bool rotate = false, float texW = 1.0f, float texH = 1.0f,
53              float quadW = 1.0f, float quadH = 1.0f);
54
55     void prepare();
56     void operator()(int frame);
57     void teardown();
58     std::string name() const;
59
60 protected:
61     void initializeBlitter();
62 };
63
64 #endif // BLITTEST_H