| 
									
										
										
										
											2016-03-05 06:45:05 +01:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2016 F4EXB                                                      //
 | 
					
						
							|  |  |  | // written by Edouard Griffiths                                                  //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // See: http://glslstudio.com/primer/#gl2frag                                    //
 | 
					
						
							| 
									
										
										
										
											2016-03-05 07:02:06 +01:00
										 |  |  | //      https://gitlab.com/pteam/korvins-qtbase/blob/5.4/examples/opengl/cube/mainwidget.cpp //
 | 
					
						
							| 
									
										
										
										
											2016-03-05 06:45:05 +01:00
										 |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // This program is free software; you can redistribute it and/or modify          //
 | 
					
						
							|  |  |  | // it under the terms of the GNU General Public License as published by          //
 | 
					
						
							|  |  |  | // the Free Software Foundation as version 3 of the License, or                  //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // This program is distributed in the hope that it will be useful,               //
 | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of                //
 | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the                  //
 | 
					
						
							|  |  |  | // GNU General Public License V3 for more details.                               //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // You should have received a copy of the GNU General Public License             //
 | 
					
						
							|  |  |  | // along with this program. If not, see <http://www.gnu.org/licenses/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef INCLUDE_GUI_GLSHADERTEXTURED_H_
 | 
					
						
							|  |  |  | #define INCLUDE_GUI_GLSHADERTEXTURED_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QString>
 | 
					
						
							| 
									
										
										
										
											2016-03-05 14:28:55 +01:00
										 |  |  | #include <QOpenGLTexture>
 | 
					
						
							| 
									
										
										
										
											2016-03-06 12:15:40 +01:00
										 |  |  | #include <QOpenGLFunctions>
 | 
					
						
							| 
									
										
										
										
											2016-03-05 06:45:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-20 13:49:21 +01:00
										 |  |  | #include "export.h"
 | 
					
						
							| 
									
										
										
										
											2018-03-03 20:23:38 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-05 06:45:05 +01:00
										 |  |  | class QOpenGLShaderProgram; | 
					
						
							|  |  |  | class QMatrix4x4; | 
					
						
							|  |  |  | class QImage; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-03 20:23:38 +01:00
										 |  |  | class SDRGUI_API GLShaderTextured | 
					
						
							| 
									
										
										
										
											2016-03-05 06:45:05 +01:00
										 |  |  | { | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 	GLShaderTextured(); | 
					
						
							|  |  |  | 	~GLShaderTextured(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void initializeGL(); | 
					
						
							| 
									
										
										
										
											2016-03-05 14:28:55 +01:00
										 |  |  | 	void initTexture(const QImage& image, QOpenGLTexture::WrapMode wrapMode = QOpenGLTexture::Repeat); | 
					
						
							| 
									
										
										
										
											2016-03-05 11:57:53 +01:00
										 |  |  | 	void subTexture(int xOffset, int yOffset, int width, int height, const void *pixels); | 
					
						
							| 
									
										
										
										
											2016-03-05 06:45:05 +01:00
										 |  |  | 	void drawSurface(const QMatrix4x4& transformMatrix, GLfloat* textureCoords, GLfloat *vertices, int nbVertices); | 
					
						
							|  |  |  | 	void cleanup(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  | 	void draw(unsigned int mode, const QMatrix4x4& transformMatrix, GLfloat *textureCoords, GLfloat *vertices, int nbVertices); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	QOpenGLShaderProgram *m_program; | 
					
						
							|  |  |  | 	QOpenGLTexture *m_texture; | 
					
						
							|  |  |  | 	int m_matrixLoc; | 
					
						
							|  |  |  | 	int m_textureLoc; | 
					
						
							|  |  |  | 	static const QString m_vertexShaderSourceTextured; | 
					
						
							|  |  |  | 	static const QString m_fragmentShaderSourceTextured; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* INCLUDE_GUI_GLSHADERTEXTURED_H_ */
 |