qopenglframebufferobject.h 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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 QOPENGLFRAMEBUFFEROBJECT_H
  40. #define QOPENGLFRAMEBUFFEROBJECT_H
  41. #include <QtCore/qglobal.h>
  42. #ifndef QT_NO_OPENGL
  43. #include <QtGui/qopengl.h>
  44. #include <QtGui/qpaintdevice.h>
  45. #include <QtCore/qscopedpointer.h>
  46. QT_BEGIN_NAMESPACE
  47. class QOpenGLFramebufferObjectPrivate;
  48. class QOpenGLFramebufferObjectFormat;
  49. class Q_GUI_EXPORT QOpenGLFramebufferObject
  50. {
  51. Q_DECLARE_PRIVATE(QOpenGLFramebufferObject)
  52. public:
  53. enum Attachment {
  54. NoAttachment,
  55. CombinedDepthStencil,
  56. Depth
  57. };
  58. explicit QOpenGLFramebufferObject(const QSize &size, GLenum target = GL_TEXTURE_2D);
  59. QOpenGLFramebufferObject(int width, int height, GLenum target = GL_TEXTURE_2D);
  60. QOpenGLFramebufferObject(const QSize &size, Attachment attachment,
  61. GLenum target = GL_TEXTURE_2D, GLenum internalFormat = 0);
  62. QOpenGLFramebufferObject(int width, int height, Attachment attachment,
  63. GLenum target = GL_TEXTURE_2D, GLenum internalFormat = 0);
  64. QOpenGLFramebufferObject(const QSize &size, const QOpenGLFramebufferObjectFormat &format);
  65. QOpenGLFramebufferObject(int width, int height, const QOpenGLFramebufferObjectFormat &format);
  66. virtual ~QOpenGLFramebufferObject();
  67. void addColorAttachment(const QSize &size, GLenum internalFormat = 0);
  68. void addColorAttachment(int width, int height, GLenum internalFormat = 0);
  69. QOpenGLFramebufferObjectFormat format() const;
  70. bool isValid() const;
  71. bool isBound() const;
  72. bool bind();
  73. bool release();
  74. int width() const { return size().width(); }
  75. int height() const { return size().height(); }
  76. GLuint texture() const;
  77. QVector<GLuint> textures() const;
  78. GLuint takeTexture();
  79. GLuint takeTexture(int colorAttachmentIndex);
  80. QSize size() const;
  81. QVector<QSize> sizes() const;
  82. QImage toImage() const;
  83. QImage toImage(bool flipped) const;
  84. QImage toImage(bool flipped, int colorAttachmentIndex) const;
  85. Attachment attachment() const;
  86. void setAttachment(Attachment attachment);
  87. GLuint handle() const;
  88. static bool bindDefault();
  89. static bool hasOpenGLFramebufferObjects();
  90. static bool hasOpenGLFramebufferBlit();
  91. enum FramebufferRestorePolicy {
  92. DontRestoreFramebufferBinding,
  93. RestoreFramebufferBindingToDefault,
  94. RestoreFrameBufferBinding
  95. };
  96. static void blitFramebuffer(QOpenGLFramebufferObject *target, const QRect &targetRect,
  97. QOpenGLFramebufferObject *source, const QRect &sourceRect,
  98. GLbitfield buffers,
  99. GLenum filter,
  100. int readColorAttachmentIndex,
  101. int drawColorAttachmentIndex,
  102. FramebufferRestorePolicy restorePolicy);
  103. static void blitFramebuffer(QOpenGLFramebufferObject *target, const QRect &targetRect,
  104. QOpenGLFramebufferObject *source, const QRect &sourceRect,
  105. GLbitfield buffers,
  106. GLenum filter,
  107. int readColorAttachmentIndex,
  108. int drawColorAttachmentIndex);
  109. static void blitFramebuffer(QOpenGLFramebufferObject *target, const QRect &targetRect,
  110. QOpenGLFramebufferObject *source, const QRect &sourceRect,
  111. GLbitfield buffers = GL_COLOR_BUFFER_BIT,
  112. GLenum filter = GL_NEAREST);
  113. static void blitFramebuffer(QOpenGLFramebufferObject *target,
  114. QOpenGLFramebufferObject *source,
  115. GLbitfield buffers = GL_COLOR_BUFFER_BIT,
  116. GLenum filter = GL_NEAREST);
  117. private:
  118. Q_DISABLE_COPY(QOpenGLFramebufferObject)
  119. QScopedPointer<QOpenGLFramebufferObjectPrivate> d_ptr;
  120. friend class QOpenGLPaintDevice;
  121. friend class QOpenGLFBOGLPaintDevice;
  122. };
  123. class QOpenGLFramebufferObjectFormatPrivate;
  124. class Q_GUI_EXPORT QOpenGLFramebufferObjectFormat
  125. {
  126. public:
  127. QOpenGLFramebufferObjectFormat();
  128. QOpenGLFramebufferObjectFormat(const QOpenGLFramebufferObjectFormat &other);
  129. QOpenGLFramebufferObjectFormat &operator=(const QOpenGLFramebufferObjectFormat &other);
  130. ~QOpenGLFramebufferObjectFormat();
  131. void setSamples(int samples);
  132. int samples() const;
  133. void setMipmap(bool enabled);
  134. bool mipmap() const;
  135. void setAttachment(QOpenGLFramebufferObject::Attachment attachment);
  136. QOpenGLFramebufferObject::Attachment attachment() const;
  137. void setTextureTarget(GLenum target);
  138. GLenum textureTarget() const;
  139. void setInternalTextureFormat(GLenum internalTextureFormat);
  140. GLenum internalTextureFormat() const;
  141. bool operator==(const QOpenGLFramebufferObjectFormat& other) const;
  142. bool operator!=(const QOpenGLFramebufferObjectFormat& other) const;
  143. private:
  144. QOpenGLFramebufferObjectFormatPrivate *d;
  145. void detach();
  146. };
  147. QT_END_NAMESPACE
  148. #endif // QT_NO_OPENGL
  149. #endif // QOPENGLFRAMEBUFFEROBJECT_H