qbuffer.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2014 Klaralvdalens Datakonsult AB (KDAB).
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the Qt3D 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 QT3DRENDER_QBUFFER_H
  40. #define QT3DRENDER_QBUFFER_H
  41. #include <Qt3DCore/qnode.h>
  42. #include <Qt3DRender/qt3drender_global.h>
  43. #include <QSharedPointer>
  44. QT_BEGIN_NAMESPACE
  45. namespace Qt3DRender {
  46. class QBufferPrivate;
  47. class QBufferDataGenerator;
  48. typedef QSharedPointer<QBufferDataGenerator> QBufferDataGeneratorPtr;
  49. class QT3DRENDERSHARED_EXPORT QBuffer : public Qt3DCore::QNode
  50. {
  51. Q_OBJECT
  52. Q_PROPERTY(BufferType type READ type WRITE setType NOTIFY typeChanged)
  53. Q_PROPERTY(UsageType usage READ usage WRITE setUsage NOTIFY usageChanged)
  54. Q_PROPERTY(bool syncData READ isSyncData WRITE setSyncData NOTIFY syncDataChanged)
  55. public:
  56. enum BufferType
  57. {
  58. VertexBuffer = 0x8892, // GL_ARRAY_BUFFER
  59. IndexBuffer = 0x8893, // GL_ELEMENT_ARRAY_BUFFER
  60. PixelPackBuffer = 0x88EB, // GL_PIXEL_PACK_BUFFER
  61. PixelUnpackBuffer = 0x88EC, // GL_PIXEL_UNPACK_BUFFER
  62. UniformBuffer = 0x8A11, // GL_UNIFORM_BUFFER
  63. ShaderStorageBuffer = 0x90D2 // GL_SHADER_STORAGE_BUFFER
  64. };
  65. Q_ENUM(BufferType)
  66. enum UsageType
  67. {
  68. StreamDraw = 0x88E0, // GL_STREAM_DRAW
  69. StreamRead = 0x88E1, // GL_STREAM_READ
  70. StreamCopy = 0x88E2, // GL_STREAM_COPY
  71. StaticDraw = 0x88E4, // GL_STATIC_DRAW
  72. StaticRead = 0x88E5, // GL_STATIC_READ
  73. StaticCopy = 0x88E6, // GL_STATIC_COPY
  74. DynamicDraw = 0x88E8, // GL_DYNAMIC_DRAW
  75. DynamicRead = 0x88E9, // GL_DYNAMIC_READ
  76. DynamicCopy = 0x88EA // GL_DYNAMIC_COPY
  77. };
  78. Q_ENUM(UsageType)
  79. explicit QBuffer(BufferType ty = QBuffer::VertexBuffer, Qt3DCore::QNode *parent = nullptr);
  80. ~QBuffer();
  81. UsageType usage() const;
  82. BufferType type() const;
  83. bool isSyncData() const;
  84. void setData(const QByteArray &bytes);
  85. QByteArray data() const;
  86. void setDataGenerator(const QBufferDataGeneratorPtr &functor);
  87. QBufferDataGeneratorPtr dataGenerator() const;
  88. public Q_SLOTS:
  89. void setType(BufferType type);
  90. void setUsage(UsageType usage);
  91. void setSyncData(bool syncData);
  92. protected:
  93. void sceneChangeEvent(const Qt3DCore::QSceneChangePtr &change) Q_DECL_OVERRIDE;
  94. Q_SIGNALS:
  95. void dataChanged(const QByteArray &bytes);
  96. void typeChanged(BufferType type);
  97. void usageChanged(UsageType usage);
  98. void syncDataChanged(bool syncData);
  99. private:
  100. Q_DECLARE_PRIVATE(QBuffer)
  101. Qt3DCore::QNodeCreatedChangeBasePtr createNodeCreationChange() const Q_DECL_OVERRIDE;
  102. };
  103. } // namespace Qt3DRender
  104. QT_END_NAMESPACE
  105. #endif // QT3DRENDER_QBUFFER_H