2016-03-01 20:32:41 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2016 F4EXB //
|
|
|
|
// written by Edouard Griffiths //
|
|
|
|
// //
|
|
|
|
// 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 //
|
2019-04-11 12:43:33 +00:00
|
|
|
// (at your option) any later version. //
|
2016-03-01 20:32:41 +00:00
|
|
|
// //
|
|
|
|
// 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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2016-03-05 06:02:06 +00:00
|
|
|
#ifndef INCLUDE_GUI_GLSHADERSIMPLE_H_
|
|
|
|
#define INCLUDE_GUI_GLSHADERSIMPLE_H_
|
2016-03-01 20:32:41 +00:00
|
|
|
|
|
|
|
#include <QString>
|
2016-03-06 09:48:34 +00:00
|
|
|
#include <QOpenGLFunctions>
|
2016-03-01 20:32:41 +00:00
|
|
|
|
2018-03-20 12:49:21 +00:00
|
|
|
#include "export.h"
|
2018-03-03 19:23:38 +00:00
|
|
|
|
2016-03-02 22:55:29 +00:00
|
|
|
class QOpenGLShaderProgram;
|
|
|
|
class QMatrix4x4;
|
|
|
|
class QVector4D;
|
|
|
|
|
2018-03-03 19:23:38 +00:00
|
|
|
class SDRGUI_API GLShaderSimple
|
2016-03-01 20:32:41 +00:00
|
|
|
{
|
|
|
|
public:
|
2016-03-03 00:09:55 +00:00
|
|
|
GLShaderSimple();
|
|
|
|
~GLShaderSimple();
|
2016-03-02 22:55:29 +00:00
|
|
|
|
|
|
|
void initializeGL();
|
2018-05-14 22:30:01 +00:00
|
|
|
void drawPoints(const QMatrix4x4& transformMatrix, const QVector4D& color, GLfloat *vertices, int nbVertices);
|
2016-03-03 00:09:55 +00:00
|
|
|
void drawPolyline(const QMatrix4x4& transformMatrix, const QVector4D& color, GLfloat *vertices, int nbVertices);
|
|
|
|
void drawSegments(const QMatrix4x4& transformMatrix, const QVector4D& color, GLfloat *vertices, int nbVertices);
|
|
|
|
void drawContour(const QMatrix4x4& transformMatrix, const QVector4D& color, GLfloat *vertices, int nbVertices);
|
|
|
|
void drawSurface(const QMatrix4x4& transformMatrix, const QVector4D& color, GLfloat *vertices, int nbVertices);
|
2016-03-02 22:55:29 +00:00
|
|
|
void cleanup();
|
|
|
|
|
2016-03-01 20:32:41 +00:00
|
|
|
private:
|
2016-03-03 00:09:55 +00:00
|
|
|
void draw(unsigned int mode, const QMatrix4x4& transformMatrix, const QVector4D& color, GLfloat *vertices, int nbVertices);
|
|
|
|
|
2016-03-02 22:55:29 +00:00
|
|
|
QOpenGLShaderProgram *m_program;
|
|
|
|
int m_matrixLoc;
|
|
|
|
int m_colorLoc;
|
2016-03-01 20:32:41 +00:00
|
|
|
static const QString m_vertexShaderSourceSimple;
|
|
|
|
static const QString m_fragmentShaderSourceColored;
|
|
|
|
};
|
|
|
|
|
2016-03-05 06:02:06 +00:00
|
|
|
#endif /* INCLUDE_GUI_GLSHADERSIMPLE_H_ */
|