qopenglshaderprogram.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QOPENGLSHADERPROGRAM_H
  40. #define QOPENGLSHADERPROGRAM_H
  41. #include <QtCore/qglobal.h>
  42. #ifndef QT_NO_OPENGL
  43. #include <QtGui/qopengl.h>
  44. #include <QtGui/qvector2d.h>
  45. #include <QtGui/qvector3d.h>
  46. #include <QtGui/qvector4d.h>
  47. #include <QtGui/qmatrix4x4.h>
  48. QT_BEGIN_NAMESPACE
  49. class QOpenGLContext;
  50. class QOpenGLShaderProgram;
  51. class QOpenGLShaderPrivate;
  52. class Q_GUI_EXPORT QOpenGLShader : public QObject
  53. {
  54. Q_OBJECT
  55. public:
  56. enum ShaderTypeBit
  57. {
  58. Vertex = 0x0001,
  59. Fragment = 0x0002,
  60. Geometry = 0x0004,
  61. TessellationControl = 0x0008,
  62. TessellationEvaluation = 0x0010,
  63. Compute = 0x0020
  64. };
  65. Q_DECLARE_FLAGS(ShaderType, ShaderTypeBit)
  66. explicit QOpenGLShader(QOpenGLShader::ShaderType type, QObject *parent = Q_NULLPTR);
  67. virtual ~QOpenGLShader();
  68. QOpenGLShader::ShaderType shaderType() const;
  69. bool compileSourceCode(const char *source);
  70. bool compileSourceCode(const QByteArray& source);
  71. bool compileSourceCode(const QString& source);
  72. bool compileSourceFile(const QString& fileName);
  73. QByteArray sourceCode() const;
  74. bool isCompiled() const;
  75. QString log() const;
  76. GLuint shaderId() const;
  77. static bool hasOpenGLShaders(ShaderType type, QOpenGLContext *context = Q_NULLPTR);
  78. private:
  79. friend class QOpenGLShaderProgram;
  80. Q_DISABLE_COPY(QOpenGLShader)
  81. Q_DECLARE_PRIVATE(QOpenGLShader)
  82. };
  83. Q_DECLARE_OPERATORS_FOR_FLAGS(QOpenGLShader::ShaderType)
  84. class QOpenGLShaderProgramPrivate;
  85. class Q_GUI_EXPORT QOpenGLShaderProgram : public QObject
  86. {
  87. Q_OBJECT
  88. public:
  89. explicit QOpenGLShaderProgram(QObject *parent = Q_NULLPTR);
  90. virtual ~QOpenGLShaderProgram();
  91. bool addShader(QOpenGLShader *shader);
  92. void removeShader(QOpenGLShader *shader);
  93. QList<QOpenGLShader *> shaders() const;
  94. bool addShaderFromSourceCode(QOpenGLShader::ShaderType type, const char *source);
  95. bool addShaderFromSourceCode(QOpenGLShader::ShaderType type, const QByteArray& source);
  96. bool addShaderFromSourceCode(QOpenGLShader::ShaderType type, const QString& source);
  97. bool addShaderFromSourceFile(QOpenGLShader::ShaderType type, const QString& fileName);
  98. void removeAllShaders();
  99. virtual bool link();
  100. bool isLinked() const;
  101. QString log() const;
  102. bool bind();
  103. void release();
  104. bool create();
  105. GLuint programId() const;
  106. int maxGeometryOutputVertices() const;
  107. void setPatchVertexCount(int count);
  108. int patchVertexCount() const;
  109. void setDefaultOuterTessellationLevels(const QVector<float> &levels);
  110. QVector<float> defaultOuterTessellationLevels() const;
  111. void setDefaultInnerTessellationLevels(const QVector<float> &levels);
  112. QVector<float> defaultInnerTessellationLevels() const;
  113. void bindAttributeLocation(const char *name, int location);
  114. void bindAttributeLocation(const QByteArray& name, int location);
  115. void bindAttributeLocation(const QString& name, int location);
  116. int attributeLocation(const char *name) const;
  117. int attributeLocation(const QByteArray& name) const;
  118. int attributeLocation(const QString& name) const;
  119. void setAttributeValue(int location, GLfloat value);
  120. void setAttributeValue(int location, GLfloat x, GLfloat y);
  121. void setAttributeValue(int location, GLfloat x, GLfloat y, GLfloat z);
  122. void setAttributeValue(int location, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
  123. void setAttributeValue(int location, const QVector2D& value);
  124. void setAttributeValue(int location, const QVector3D& value);
  125. void setAttributeValue(int location, const QVector4D& value);
  126. void setAttributeValue(int location, const QColor& value);
  127. void setAttributeValue(int location, const GLfloat *values, int columns, int rows);
  128. void setAttributeValue(const char *name, GLfloat value);
  129. void setAttributeValue(const char *name, GLfloat x, GLfloat y);
  130. void setAttributeValue(const char *name, GLfloat x, GLfloat y, GLfloat z);
  131. void setAttributeValue(const char *name, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
  132. void setAttributeValue(const char *name, const QVector2D& value);
  133. void setAttributeValue(const char *name, const QVector3D& value);
  134. void setAttributeValue(const char *name, const QVector4D& value);
  135. void setAttributeValue(const char *name, const QColor& value);
  136. void setAttributeValue(const char *name, const GLfloat *values, int columns, int rows);
  137. void setAttributeArray
  138. (int location, const GLfloat *values, int tupleSize, int stride = 0);
  139. void setAttributeArray
  140. (int location, const QVector2D *values, int stride = 0);
  141. void setAttributeArray
  142. (int location, const QVector3D *values, int stride = 0);
  143. void setAttributeArray
  144. (int location, const QVector4D *values, int stride = 0);
  145. void setAttributeArray
  146. (int location, GLenum type, const void *values, int tupleSize, int stride = 0);
  147. void setAttributeArray
  148. (const char *name, const GLfloat *values, int tupleSize, int stride = 0);
  149. void setAttributeArray
  150. (const char *name, const QVector2D *values, int stride = 0);
  151. void setAttributeArray
  152. (const char *name, const QVector3D *values, int stride = 0);
  153. void setAttributeArray
  154. (const char *name, const QVector4D *values, int stride = 0);
  155. void setAttributeArray
  156. (const char *name, GLenum type, const void *values, int tupleSize, int stride = 0);
  157. void setAttributeBuffer
  158. (int location, GLenum type, int offset, int tupleSize, int stride = 0);
  159. void setAttributeBuffer
  160. (const char *name, GLenum type, int offset, int tupleSize, int stride = 0);
  161. void enableAttributeArray(int location);
  162. void enableAttributeArray(const char *name);
  163. void disableAttributeArray(int location);
  164. void disableAttributeArray(const char *name);
  165. int uniformLocation(const char *name) const;
  166. int uniformLocation(const QByteArray& name) const;
  167. int uniformLocation(const QString& name) const;
  168. void setUniformValue(int location, GLfloat value);
  169. void setUniformValue(int location, GLint value);
  170. void setUniformValue(int location, GLuint value);
  171. void setUniformValue(int location, GLfloat x, GLfloat y);
  172. void setUniformValue(int location, GLfloat x, GLfloat y, GLfloat z);
  173. void setUniformValue(int location, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
  174. void setUniformValue(int location, const QVector2D& value);
  175. void setUniformValue(int location, const QVector3D& value);
  176. void setUniformValue(int location, const QVector4D& value);
  177. void setUniformValue(int location, const QColor& color);
  178. void setUniformValue(int location, const QPoint& point);
  179. void setUniformValue(int location, const QPointF& point);
  180. void setUniformValue(int location, const QSize& size);
  181. void setUniformValue(int location, const QSizeF& size);
  182. void setUniformValue(int location, const QMatrix2x2& value);
  183. void setUniformValue(int location, const QMatrix2x3& value);
  184. void setUniformValue(int location, const QMatrix2x4& value);
  185. void setUniformValue(int location, const QMatrix3x2& value);
  186. void setUniformValue(int location, const QMatrix3x3& value);
  187. void setUniformValue(int location, const QMatrix3x4& value);
  188. void setUniformValue(int location, const QMatrix4x2& value);
  189. void setUniformValue(int location, const QMatrix4x3& value);
  190. void setUniformValue(int location, const QMatrix4x4& value);
  191. void setUniformValue(int location, const GLfloat value[2][2]);
  192. void setUniformValue(int location, const GLfloat value[3][3]);
  193. void setUniformValue(int location, const GLfloat value[4][4]);
  194. void setUniformValue(int location, const QTransform& value);
  195. void setUniformValue(const char *name, GLfloat value);
  196. void setUniformValue(const char *name, GLint value);
  197. void setUniformValue(const char *name, GLuint value);
  198. void setUniformValue(const char *name, GLfloat x, GLfloat y);
  199. void setUniformValue(const char *name, GLfloat x, GLfloat y, GLfloat z);
  200. void setUniformValue(const char *name, GLfloat x, GLfloat y, GLfloat z, GLfloat w);
  201. void setUniformValue(const char *name, const QVector2D& value);
  202. void setUniformValue(const char *name, const QVector3D& value);
  203. void setUniformValue(const char *name, const QVector4D& value);
  204. void setUniformValue(const char *name, const QColor& color);
  205. void setUniformValue(const char *name, const QPoint& point);
  206. void setUniformValue(const char *name, const QPointF& point);
  207. void setUniformValue(const char *name, const QSize& size);
  208. void setUniformValue(const char *name, const QSizeF& size);
  209. void setUniformValue(const char *name, const QMatrix2x2& value);
  210. void setUniformValue(const char *name, const QMatrix2x3& value);
  211. void setUniformValue(const char *name, const QMatrix2x4& value);
  212. void setUniformValue(const char *name, const QMatrix3x2& value);
  213. void setUniformValue(const char *name, const QMatrix3x3& value);
  214. void setUniformValue(const char *name, const QMatrix3x4& value);
  215. void setUniformValue(const char *name, const QMatrix4x2& value);
  216. void setUniformValue(const char *name, const QMatrix4x3& value);
  217. void setUniformValue(const char *name, const QMatrix4x4& value);
  218. void setUniformValue(const char *name, const GLfloat value[2][2]);
  219. void setUniformValue(const char *name, const GLfloat value[3][3]);
  220. void setUniformValue(const char *name, const GLfloat value[4][4]);
  221. void setUniformValue(const char *name, const QTransform& value);
  222. void setUniformValueArray(int location, const GLfloat *values, int count, int tupleSize);
  223. void setUniformValueArray(int location, const GLint *values, int count);
  224. void setUniformValueArray(int location, const GLuint *values, int count);
  225. void setUniformValueArray(int location, const QVector2D *values, int count);
  226. void setUniformValueArray(int location, const QVector3D *values, int count);
  227. void setUniformValueArray(int location, const QVector4D *values, int count);
  228. void setUniformValueArray(int location, const QMatrix2x2 *values, int count);
  229. void setUniformValueArray(int location, const QMatrix2x3 *values, int count);
  230. void setUniformValueArray(int location, const QMatrix2x4 *values, int count);
  231. void setUniformValueArray(int location, const QMatrix3x2 *values, int count);
  232. void setUniformValueArray(int location, const QMatrix3x3 *values, int count);
  233. void setUniformValueArray(int location, const QMatrix3x4 *values, int count);
  234. void setUniformValueArray(int location, const QMatrix4x2 *values, int count);
  235. void setUniformValueArray(int location, const QMatrix4x3 *values, int count);
  236. void setUniformValueArray(int location, const QMatrix4x4 *values, int count);
  237. void setUniformValueArray(const char *name, const GLfloat *values, int count, int tupleSize);
  238. void setUniformValueArray(const char *name, const GLint *values, int count);
  239. void setUniformValueArray(const char *name, const GLuint *values, int count);
  240. void setUniformValueArray(const char *name, const QVector2D *values, int count);
  241. void setUniformValueArray(const char *name, const QVector3D *values, int count);
  242. void setUniformValueArray(const char *name, const QVector4D *values, int count);
  243. void setUniformValueArray(const char *name, const QMatrix2x2 *values, int count);
  244. void setUniformValueArray(const char *name, const QMatrix2x3 *values, int count);
  245. void setUniformValueArray(const char *name, const QMatrix2x4 *values, int count);
  246. void setUniformValueArray(const char *name, const QMatrix3x2 *values, int count);
  247. void setUniformValueArray(const char *name, const QMatrix3x3 *values, int count);
  248. void setUniformValueArray(const char *name, const QMatrix3x4 *values, int count);
  249. void setUniformValueArray(const char *name, const QMatrix4x2 *values, int count);
  250. void setUniformValueArray(const char *name, const QMatrix4x3 *values, int count);
  251. void setUniformValueArray(const char *name, const QMatrix4x4 *values, int count);
  252. static bool hasOpenGLShaderPrograms(QOpenGLContext *context = Q_NULLPTR);
  253. private Q_SLOTS:
  254. void shaderDestroyed();
  255. private:
  256. Q_DISABLE_COPY(QOpenGLShaderProgram)
  257. Q_DECLARE_PRIVATE(QOpenGLShaderProgram)
  258. bool init();
  259. };
  260. QT_END_NAMESPACE
  261. #endif // QT_NO_OPENGL
  262. #endif