qsggeometry.h 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  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 Qt scene graph research project.
  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 QSGGEOMETRY_H
  40. #define QSGGEOMETRY_H
  41. #include <QtQuick/qtquickglobal.h>
  42. #include <QtGui/qopengl.h>
  43. #include <QtCore/QRectF>
  44. QT_BEGIN_NAMESPACE
  45. class QSGGeometryData;
  46. class Q_QUICK_EXPORT QSGGeometry
  47. {
  48. public:
  49. struct Q_QUICK_EXPORT Attribute
  50. {
  51. int position;
  52. int tupleSize;
  53. int type;
  54. uint isVertexCoordinate : 1;
  55. uint reserved : 31;
  56. static Attribute create(int pos, int tupleSize, int primitiveType, bool isPosition = false);
  57. };
  58. struct AttributeSet {
  59. int count;
  60. int stride;
  61. const Attribute *attributes;
  62. };
  63. struct Point2D {
  64. float x, y;
  65. void set(float nx, float ny) {
  66. x = nx; y = ny;
  67. }
  68. };
  69. struct TexturedPoint2D {
  70. float x, y;
  71. float tx, ty;
  72. void set(float nx, float ny, float ntx, float nty) {
  73. x = nx; y = ny; tx = ntx; ty = nty;
  74. }
  75. };
  76. struct ColoredPoint2D {
  77. float x, y;
  78. unsigned char r, g, b, a;
  79. void set(float nx, float ny, uchar nr, uchar ng, uchar nb, uchar na) {
  80. x = nx; y = ny;
  81. r = nr; g = ng, b = nb; a = na;
  82. }
  83. };
  84. static const AttributeSet &defaultAttributes_Point2D();
  85. static const AttributeSet &defaultAttributes_TexturedPoint2D();
  86. static const AttributeSet &defaultAttributes_ColoredPoint2D();
  87. enum DataPattern {
  88. AlwaysUploadPattern = 0,
  89. StreamPattern = 1,
  90. DynamicPattern = 2,
  91. StaticPattern = 3
  92. };
  93. QSGGeometry(const QSGGeometry::AttributeSet &attribs,
  94. int vertexCount,
  95. int indexCount = 0,
  96. int indexType = GL_UNSIGNED_SHORT);
  97. virtual ~QSGGeometry();
  98. void setDrawingMode(GLenum mode);
  99. inline GLenum drawingMode() const { return m_drawing_mode; }
  100. void allocate(int vertexCount, int indexCount = 0);
  101. int vertexCount() const { return m_vertex_count; }
  102. void *vertexData() { return m_data; }
  103. inline Point2D *vertexDataAsPoint2D();
  104. inline TexturedPoint2D *vertexDataAsTexturedPoint2D();
  105. inline ColoredPoint2D *vertexDataAsColoredPoint2D();
  106. inline const void *vertexData() const { return m_data; }
  107. inline const Point2D *vertexDataAsPoint2D() const;
  108. inline const TexturedPoint2D *vertexDataAsTexturedPoint2D() const;
  109. inline const ColoredPoint2D *vertexDataAsColoredPoint2D() const;
  110. inline int indexType() const { return m_index_type; }
  111. int indexCount() const { return m_index_count; }
  112. void *indexData();
  113. inline uint *indexDataAsUInt();
  114. inline quint16 *indexDataAsUShort();
  115. inline int sizeOfIndex() const;
  116. const void *indexData() const;
  117. inline const uint *indexDataAsUInt() const;
  118. inline const quint16 *indexDataAsUShort() const;
  119. inline int attributeCount() const { return m_attributes.count; }
  120. inline const Attribute *attributes() const { return m_attributes.attributes; }
  121. inline int sizeOfVertex() const { return m_attributes.stride; }
  122. static void updateRectGeometry(QSGGeometry *g, const QRectF &rect);
  123. static void updateTexturedRectGeometry(QSGGeometry *g, const QRectF &rect, const QRectF &sourceRect);
  124. void setIndexDataPattern(DataPattern p);
  125. DataPattern indexDataPattern() const { return DataPattern(m_index_usage_pattern); }
  126. void setVertexDataPattern(DataPattern p);
  127. DataPattern vertexDataPattern() const { return DataPattern(m_vertex_usage_pattern); }
  128. void markIndexDataDirty();
  129. void markVertexDataDirty();
  130. float lineWidth() const;
  131. void setLineWidth(float w);
  132. private:
  133. friend class QSGGeometryData;
  134. int m_drawing_mode;
  135. int m_vertex_count;
  136. int m_index_count;
  137. int m_index_type;
  138. const AttributeSet &m_attributes;
  139. void *m_data;
  140. int m_index_data_offset;
  141. QSGGeometryData *m_server_data;
  142. uint m_owns_data : 1;
  143. uint m_index_usage_pattern : 2;
  144. uint m_vertex_usage_pattern : 2;
  145. uint m_dirty_index_data : 1;
  146. uint m_dirty_vertex_data : 1;
  147. uint m_reserved_bits : 25;
  148. float m_prealloc[16];
  149. float m_line_width;
  150. };
  151. inline uint *QSGGeometry::indexDataAsUInt()
  152. {
  153. Q_ASSERT(m_index_type == GL_UNSIGNED_INT);
  154. return static_cast<uint *>(indexData());
  155. }
  156. inline quint16 *QSGGeometry::indexDataAsUShort()
  157. {
  158. Q_ASSERT(m_index_type == GL_UNSIGNED_SHORT);
  159. return static_cast<quint16 *>(indexData());
  160. }
  161. inline const uint *QSGGeometry::indexDataAsUInt() const
  162. {
  163. Q_ASSERT(m_index_type == GL_UNSIGNED_INT);
  164. return static_cast<const uint *>(indexData());
  165. }
  166. inline const quint16 *QSGGeometry::indexDataAsUShort() const
  167. {
  168. Q_ASSERT(m_index_type == GL_UNSIGNED_SHORT);
  169. return static_cast<const quint16 *>(indexData());
  170. }
  171. inline QSGGeometry::Point2D *QSGGeometry::vertexDataAsPoint2D()
  172. {
  173. Q_ASSERT(m_attributes.count == 1);
  174. Q_ASSERT(m_attributes.stride == 2 * sizeof(float));
  175. Q_ASSERT(m_attributes.attributes[0].tupleSize == 2);
  176. Q_ASSERT(m_attributes.attributes[0].type == GL_FLOAT);
  177. Q_ASSERT(m_attributes.attributes[0].position == 0);
  178. return static_cast<Point2D *>(m_data);
  179. }
  180. inline QSGGeometry::TexturedPoint2D *QSGGeometry::vertexDataAsTexturedPoint2D()
  181. {
  182. Q_ASSERT(m_attributes.count == 2);
  183. Q_ASSERT(m_attributes.stride == 4 * sizeof(float));
  184. Q_ASSERT(m_attributes.attributes[0].position == 0);
  185. Q_ASSERT(m_attributes.attributes[0].tupleSize == 2);
  186. Q_ASSERT(m_attributes.attributes[0].type == GL_FLOAT);
  187. Q_ASSERT(m_attributes.attributes[1].position == 1);
  188. Q_ASSERT(m_attributes.attributes[1].tupleSize == 2);
  189. Q_ASSERT(m_attributes.attributes[1].type == GL_FLOAT);
  190. return static_cast<TexturedPoint2D *>(m_data);
  191. }
  192. inline QSGGeometry::ColoredPoint2D *QSGGeometry::vertexDataAsColoredPoint2D()
  193. {
  194. Q_ASSERT(m_attributes.count == 2);
  195. Q_ASSERT(m_attributes.stride == 2 * sizeof(float) + 4 * sizeof(char));
  196. Q_ASSERT(m_attributes.attributes[0].position == 0);
  197. Q_ASSERT(m_attributes.attributes[0].tupleSize == 2);
  198. Q_ASSERT(m_attributes.attributes[0].type == GL_FLOAT);
  199. Q_ASSERT(m_attributes.attributes[1].position == 1);
  200. Q_ASSERT(m_attributes.attributes[1].tupleSize == 4);
  201. Q_ASSERT(m_attributes.attributes[1].type == GL_UNSIGNED_BYTE);
  202. return static_cast<ColoredPoint2D *>(m_data);
  203. }
  204. inline const QSGGeometry::Point2D *QSGGeometry::vertexDataAsPoint2D() const
  205. {
  206. Q_ASSERT(m_attributes.count == 1);
  207. Q_ASSERT(m_attributes.stride == 2 * sizeof(float));
  208. Q_ASSERT(m_attributes.attributes[0].tupleSize == 2);
  209. Q_ASSERT(m_attributes.attributes[0].type == GL_FLOAT);
  210. Q_ASSERT(m_attributes.attributes[0].position == 0);
  211. return static_cast<const Point2D *>(m_data);
  212. }
  213. inline const QSGGeometry::TexturedPoint2D *QSGGeometry::vertexDataAsTexturedPoint2D() const
  214. {
  215. Q_ASSERT(m_attributes.count == 2);
  216. Q_ASSERT(m_attributes.stride == 4 * sizeof(float));
  217. Q_ASSERT(m_attributes.attributes[0].position == 0);
  218. Q_ASSERT(m_attributes.attributes[0].tupleSize == 2);
  219. Q_ASSERT(m_attributes.attributes[0].type == GL_FLOAT);
  220. Q_ASSERT(m_attributes.attributes[1].position == 1);
  221. Q_ASSERT(m_attributes.attributes[1].tupleSize == 2);
  222. Q_ASSERT(m_attributes.attributes[1].type == GL_FLOAT);
  223. return static_cast<const TexturedPoint2D *>(m_data);
  224. }
  225. inline const QSGGeometry::ColoredPoint2D *QSGGeometry::vertexDataAsColoredPoint2D() const
  226. {
  227. Q_ASSERT(m_attributes.count == 2);
  228. Q_ASSERT(m_attributes.stride == 2 * sizeof(float) + 4 * sizeof(char));
  229. Q_ASSERT(m_attributes.attributes[0].position == 0);
  230. Q_ASSERT(m_attributes.attributes[0].tupleSize == 2);
  231. Q_ASSERT(m_attributes.attributes[0].type == GL_FLOAT);
  232. Q_ASSERT(m_attributes.attributes[1].position == 1);
  233. Q_ASSERT(m_attributes.attributes[1].tupleSize == 4);
  234. Q_ASSERT(m_attributes.attributes[1].type == GL_UNSIGNED_BYTE);
  235. return static_cast<const ColoredPoint2D *>(m_data);
  236. }
  237. int QSGGeometry::sizeOfIndex() const
  238. {
  239. if (m_index_type == GL_UNSIGNED_SHORT) return 2;
  240. else if (m_index_type == GL_UNSIGNED_BYTE) return 1;
  241. else if (m_index_type == GL_UNSIGNED_INT) return 4;
  242. return 0;
  243. }
  244. QT_END_NAMESPACE
  245. #endif // QSGGEOMETRY_H