qsgmaterial.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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 QSGMATERIAL_H
  40. #define QSGMATERIAL_H
  41. #include <QtQuick/qtquickglobal.h>
  42. #include <QtGui/qopenglshaderprogram.h>
  43. QT_BEGIN_NAMESPACE
  44. class QSGMaterial;
  45. class QSGMaterialShaderPrivate;
  46. namespace QSGBatchRenderer {
  47. class ShaderManager;
  48. }
  49. class Q_QUICK_EXPORT QSGMaterialShader
  50. {
  51. public:
  52. class Q_QUICK_EXPORT RenderState {
  53. public:
  54. enum DirtyState
  55. {
  56. DirtyMatrix = 0x0001,
  57. DirtyOpacity = 0x0002
  58. };
  59. Q_DECLARE_FLAGS(DirtyStates, DirtyState)
  60. inline DirtyStates dirtyStates() const { return m_dirty; }
  61. inline bool isMatrixDirty() const { return m_dirty & DirtyMatrix; }
  62. inline bool isOpacityDirty() const { return m_dirty & DirtyOpacity; }
  63. float opacity() const;
  64. QMatrix4x4 combinedMatrix() const;
  65. QMatrix4x4 modelViewMatrix() const;
  66. QMatrix4x4 projectionMatrix() const;
  67. QRect viewportRect() const;
  68. QRect deviceRect() const;
  69. float determinant() const;
  70. float devicePixelRatio() const;
  71. QOpenGLContext *context() const;
  72. private:
  73. friend class QSGRenderer;
  74. DirtyStates m_dirty;
  75. const void *m_data;
  76. };
  77. QSGMaterialShader();
  78. virtual ~QSGMaterialShader();
  79. virtual void activate();
  80. virtual void deactivate();
  81. // First time a material is used, oldMaterial is null.
  82. virtual void updateState(const RenderState &state, QSGMaterial *newMaterial, QSGMaterial *oldMaterial);
  83. virtual char const *const *attributeNames() const = 0; // Array must end with null.
  84. inline QOpenGLShaderProgram *program() { return &m_program; }
  85. protected:
  86. Q_DECLARE_PRIVATE(QSGMaterialShader)
  87. QSGMaterialShader(QSGMaterialShaderPrivate &dd);
  88. friend class QSGRenderContext;
  89. friend class QSGBatchRenderer::ShaderManager;
  90. void setShaderSourceFile(QOpenGLShader::ShaderType type, const QString &sourceFile);
  91. void setShaderSourceFiles(QOpenGLShader::ShaderType type, const QStringList &sourceFiles);
  92. virtual void compile();
  93. virtual void initialize() { }
  94. virtual const char *vertexShader() const;
  95. virtual const char *fragmentShader() const;
  96. private:
  97. QOpenGLShaderProgram m_program;
  98. QScopedPointer<QSGMaterialShaderPrivate> d_ptr;
  99. };
  100. struct QSGMaterialType { };
  101. class Q_QUICK_EXPORT QSGMaterial
  102. {
  103. public:
  104. enum Flag {
  105. Blending = 0x0001,
  106. RequiresDeterminant = 0x0002, // Allow precalculated translation and 2D rotation
  107. RequiresFullMatrixExceptTranslate = 0x0004 | RequiresDeterminant, // Allow precalculated translation
  108. RequiresFullMatrix = 0x0008 | RequiresFullMatrixExceptTranslate,
  109. CustomCompileStep = 0x0010
  110. };
  111. Q_DECLARE_FLAGS(Flags, Flag)
  112. QSGMaterial();
  113. virtual ~QSGMaterial();
  114. virtual QSGMaterialType *type() const = 0;
  115. virtual QSGMaterialShader *createShader() const = 0;
  116. virtual int compare(const QSGMaterial *other) const;
  117. QSGMaterial::Flags flags() const { return m_flags; }
  118. void setFlag(Flags flags, bool on = true);
  119. private:
  120. Flags m_flags;
  121. void *m_reserved;
  122. Q_DISABLE_COPY(QSGMaterial)
  123. };
  124. Q_DECLARE_OPERATORS_FOR_FLAGS(QSGMaterial::Flags)
  125. Q_DECLARE_OPERATORS_FOR_FLAGS(QSGMaterialShader::RenderState::DirtyStates)
  126. QT_END_NAMESPACE
  127. #endif