qsgsimplematerial.h 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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 QtQuick 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 QSGSIMPLEMATERIAL_H
  40. #define QSGSIMPLEMATERIAL_H
  41. #include <QtQuick/qsgmaterial.h>
  42. QT_BEGIN_NAMESPACE
  43. template <typename State>
  44. class QSGSimpleMaterialShader : public QSGMaterialShader
  45. {
  46. public:
  47. void initialize() {
  48. QSGMaterialShader::initialize();
  49. m_id_matrix = program()->uniformLocation(uniformMatrixName());
  50. if (m_id_matrix < 0) {
  51. qFatal("QSGSimpleMaterialShader does not implement 'uniform highp mat4 %s;' in its vertex shader",
  52. uniformMatrixName());
  53. }
  54. const char *opacity = uniformOpacityName();
  55. if (opacity) {
  56. m_id_opacity = program()->uniformLocation(uniformOpacityName());
  57. if (m_id_opacity < 0) {
  58. qFatal("QSGSimpleMaterialShader does not implement 'uniform lowp float %s' in its fragment shader",
  59. uniformOpacityName());
  60. }
  61. } else {
  62. m_id_opacity = -1;
  63. }
  64. resolveUniforms();
  65. }
  66. const char *uniformMatrixName() const { return "qt_Matrix"; }
  67. const char *uniformOpacityName() const { return "qt_Opacity"; }
  68. void updateState(const RenderState &state, QSGMaterial *newMaterial, QSGMaterial *oldMaterial);
  69. virtual void updateState(const State *newState, const State *oldState) = 0;
  70. virtual void resolveUniforms() {}
  71. virtual QList<QByteArray> attributes() const = 0;
  72. char const *const *attributeNames() const
  73. {
  74. if (m_attribute_pointers.size())
  75. return m_attribute_pointers.constData();
  76. QList<QByteArray> names = attributes();
  77. // Calculate the total number of bytes needed, so we don't get rellocs and
  78. // bad pointers while copying over the individual names.
  79. // Add an extra byte pr entry for the '\0' char.
  80. int total = 0;
  81. for (int i=0; i<names.size(); ++i)
  82. total += names.at(i).size() + 1;
  83. m_attribute_name_data.reserve(total);
  84. // Copy over the names
  85. for (int i=0; i<names.size(); ++i) {
  86. m_attribute_pointers << m_attribute_name_data.constData() + m_attribute_name_data.size();
  87. m_attribute_name_data.append(names.at(i));
  88. m_attribute_name_data.append('\0');
  89. }
  90. // Append the "null" terminator
  91. m_attribute_pointers << 0;
  92. return m_attribute_pointers.constData();
  93. }
  94. private:
  95. int m_id_matrix;
  96. int m_id_opacity;
  97. mutable QByteArray m_attribute_name_data;
  98. mutable QVector<const char *> m_attribute_pointers;
  99. };
  100. #define QSG_DECLARE_SIMPLE_SHADER(Shader, State) \
  101. static QSGMaterialShader *createShader() \
  102. { \
  103. return new Shader; \
  104. } \
  105. public: \
  106. static QSGSimpleMaterial<State> *createMaterial() \
  107. { \
  108. return new QSGSimpleMaterial<State>(createShader); \
  109. }
  110. typedef QSGMaterialShader *(*PtrShaderCreateFunc)();
  111. template <typename State>
  112. class QSGSimpleMaterial : public QSGMaterial
  113. {
  114. public:
  115. #ifndef qdoc
  116. QSGSimpleMaterial(const State &aState, PtrShaderCreateFunc func)
  117. : m_state(aState)
  118. , m_func(func)
  119. {
  120. }
  121. QSGSimpleMaterial(PtrShaderCreateFunc func)
  122. : m_func(func)
  123. {
  124. }
  125. QSGMaterialShader *createShader() const { return m_func(); }
  126. QSGMaterialType *type() const { return &m_type; }
  127. State *state() { return &m_state; }
  128. const State *state() const { return &m_state; }
  129. #endif
  130. private:
  131. static QSGMaterialType m_type;
  132. State m_state;
  133. PtrShaderCreateFunc m_func;
  134. };
  135. #define QSG_DECLARE_SIMPLE_COMPARABLE_SHADER(Shader, State) \
  136. static QSGMaterialShader *createShader() \
  137. { \
  138. return new Shader; \
  139. } \
  140. public: \
  141. static QSGSimpleMaterialComparableMaterial<State> *createMaterial() \
  142. { \
  143. return new QSGSimpleMaterialComparableMaterial<State>(createShader); \
  144. }
  145. template <typename State>
  146. class QSGSimpleMaterialComparableMaterial : public QSGSimpleMaterial<State>
  147. {
  148. public:
  149. QSGSimpleMaterialComparableMaterial(const State &state, PtrShaderCreateFunc func)
  150. : QSGSimpleMaterial<State>(state, func) {}
  151. QSGSimpleMaterialComparableMaterial(PtrShaderCreateFunc func)
  152. : QSGSimpleMaterial<State>(func) {}
  153. int compare(const QSGMaterial *other) const {
  154. return QSGSimpleMaterialComparableMaterial<State>::state()->compare(static_cast<const QSGSimpleMaterialComparableMaterial<State> *>(other)->state());
  155. }
  156. };
  157. template <typename State>
  158. QSGMaterialType QSGSimpleMaterial<State>::m_type;
  159. template <typename State>
  160. Q_INLINE_TEMPLATE void QSGSimpleMaterialShader<State>::updateState(const RenderState &state, QSGMaterial *newMaterial, QSGMaterial *oldMaterial)
  161. {
  162. if (state.isMatrixDirty())
  163. program()->setUniformValue(m_id_matrix, state.combinedMatrix());
  164. if (state.isOpacityDirty() && m_id_opacity >= 0)
  165. program()->setUniformValue(m_id_opacity, state.opacity());
  166. State *ns = static_cast<QSGSimpleMaterial<State> *>(newMaterial)->state();
  167. State *old = 0;
  168. if (oldMaterial)
  169. old = static_cast<QSGSimpleMaterial<State> *>(oldMaterial)->state();
  170. updateState(ns, old);
  171. }
  172. QT_END_NAMESPACE
  173. #endif