/**************************************************************************** ** ** Copyright (C) 2014 Klaralvdalens Datakonsult AB (KDAB). ** Copyright (C) 2016 The Qt Company Ltd and/or its subsidiary(-ies). ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the Qt3D module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 3 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL3 included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 3 requirements ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 2.0 or (at your option) the GNU General ** Public license version 3 or any later version approved by the KDE Free ** Qt Foundation. The licenses are as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-2.0.html and ** https://www.gnu.org/licenses/gpl-3.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef QT3DRENDER_RENDER_GRAPHICSCONTEXT_H #define QT3DRENDER_RENDER_GRAPHICSCONTEXT_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists for the convenience // of other Qt classes. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include #include #include #include #include #include #include #include #include #include #include #include QT_BEGIN_NAMESPACE class QOpenGLDebugLogger; class QOpenGLShaderProgram; class QAbstractOpenGLFunctions; namespace Qt3DRender { class QGraphicsApiFilter; namespace Render { class Renderer; class GraphicsHelperInterface; class RenderStateSet; class Material; class Texture; class RenderCommand; class RenderTarget; class AttachmentPack; class Attribute; class Buffer; class GLBuffer; enum TextureScope { TextureScopeMaterial = 0, TextureScopeTechnique // per-pass for deferred rendering? }; typedef QPair NamedUniformLocation; class GraphicsContext { public: GraphicsContext(); ~GraphicsContext(); int id() const; // unique, small integer ID of this context bool beginDrawing(QSurface *surface, const QColor &color); void clearBackBuffer(QClearBuffer::BufferType buffers); void endDrawing(bool swapBuffers); void setViewport(const QRectF &viewport, const QSize &surfaceSize); QRectF viewport() const { return m_viewport; } /** * @brief releaseGL - release all OpenGL objects associated with * this context */ void releaseOpenGL(); void setOpenGLContext(QOpenGLContext* ctx); QOpenGLContext *openGLContext() { return m_gl; } bool makeCurrent(QSurface *surface); void doneCurrent(); void activateGLHelper(); void activateShader(Shader* shader); QOpenGLShaderProgram *containsProgram(const ProgramDNA &dna); GLuint activeFBO() const { return m_activeFBO; } GLuint defaultFBO() const { return m_defaultFBO; } void activateRenderTarget(RenderTarget *renderTarget, const AttachmentPack &attachments, GLuint defaultFboId); Material* activeMaterial() const { return m_material; } void setActiveMaterial(Material* rmat); void executeCommand(const RenderCommand *command); /** * @brief activeShader * @return */ QOpenGLShaderProgram* activeShader(); void setRenderer(Renderer *renderer); void specifyAttribute(const Attribute *attribute, Buffer *buffer, const QString &shaderName); void specifyIndices(Buffer *buffer); void updateBuffer(Buffer *buffer); void setParameters(ShaderParameterPack ¶meterPack); /** * @brief glBufferFor - given a client-side (CPU) buffer, provide the * context-specific object. Initial call will create the buffer. * @param buf * @return */ GLBuffer *glBufferForRenderBuffer(Buffer *buf); /** * @brief activateTexture - make a texture active on a hardware unit * @param tex - the texture to activate * @param onUnit - option, specify the explicit unit to activate on * @return - the unit the texture was activated on */ int activateTexture(TextureScope scope, Texture* tex, int onUnit = -1); void deactivateTexture(Texture *tex); void setCurrentStateSet(RenderStateSet* ss); RenderStateSet *currentStateSet() const; QGraphicsApiFilter *contextInfo() const; // Wrapper methods void alphaTest(GLenum mode1, GLenum mode2); void bindBufferBase(GLenum target, GLuint bindingIndex, GLuint buffer); void bindFragOutputs(GLuint shader, const QHash &outputs); void bindUniformBlock(GLuint programId, GLuint uniformBlockIndex, GLuint uniformBlockBinding); void bindUniform(const QVariant &v, const ShaderUniform &description); void bindShaderStorageBlock(GLuint programId, GLuint shaderStorageBlockIndex, GLuint shaderStorageBlockBinding); void blendEquation(GLenum mode); void blendFunci(GLuint buf, GLenum sfactor, GLenum dfactor); void blendFuncSeparatei(GLuint buf, GLenum sRGB, GLenum dRGB, GLenum sAlpha, GLenum dAlpha); GLuint boundFrameBufferObject(); void buildUniformBuffer(const QVariant &v, const ShaderUniform &description, QByteArray &buffer); void clearColor(const QColor &color); void cullFace(GLenum mode); void depthMask(GLenum mode); void depthTest(GLenum mode); void disableAlphaCoverage(); void disableClipPlane(int clipPlane); void disablei(GLenum cap, GLuint index); void disablePrimitiveRestart(); void dispatchCompute(int x, int y, int z); void drawArrays(GLenum primitiveType, GLint first, GLsizei count); void drawArraysInstanced(GLenum primitiveType, GLint first, GLsizei count, GLsizei instances); void drawElements(GLenum primitiveType, GLsizei primitiveCount, GLint indexType, void * indices, GLint baseVertex = 0); void drawElementsInstanced(GLenum primitiveType, GLsizei primitiveCount, GLint indexType, void * indices, GLsizei instances, GLint baseVertex = 0, GLint baseInstance = 0); void enableAlphaCoverage(); void enableClipPlane(int clipPlane); void enablei(GLenum cap, GLuint index); void enablePrimitiveRestart(int restartIndex); void frontFace(GLenum mode); GLint maxClipPlaneCount(); void pointSize(bool programmable, GLfloat value); void setVerticesPerPatch(GLint verticesPerPatch); // Helper methods static GLint elementType(GLint type); static GLint tupleSizeFromType(GLint type); static GLuint byteSizeFromType(GLint type); static GLint glDataTypeFromAttributeDataType(QAttribute::DataType dataType); bool supportsDrawBuffersBlend() const; bool supportsVAO() const { return m_supportsVAO; } private: void initialize(); void decayTextureScores(); GLint assignUnitForTexture(Texture* tex); void deactivateTexturesWithScope(TextureScope ts); GraphicsHelperInterface *resolveHighestOpenGLFunctions(); void bindFrameBufferAttachmentHelper(GLuint fboId, const AttachmentPack &attachments); void activateDrawBuffers(const AttachmentPack &attachments); HGLBuffer createGLBufferFor(Buffer *buffer); void uploadDataToGLBuffer(Buffer *buffer, GLBuffer *b, bool releaseBuffer = false); bool m_initialized; const unsigned int m_id; QOpenGLContext *m_gl; QSurface *m_surface; GraphicsHelperInterface *m_glHelper; bool m_ownCurrent; Shader *m_activeShader; QHash m_renderShaderHash; QHash m_renderBufferHash; QHash m_renderTargets; QHash m_renderTargetsSize; QHash m_glHelpers; // active textures, indexed by texture unit QVector m_activeTextures; QBitArray m_pinnedTextureUnits; QVector m_textureScopes; // recency score for all render-textures we've seen. Higher scores // mean more recently used. QHash m_textureScores; Material* m_material; QRectF m_viewport; GLuint m_activeFBO; GLuint m_defaultFBO; RenderStateSet* m_stateSet; Renderer *m_renderer; QGraphicsApiFilter *m_contextInfo; QByteArray m_uboTempArray; bool m_supportsVAO; QScopedPointer m_debugLogger; }; } // namespace Render } // namespace Qt3DRender QT_END_NAMESPACE #endif // QT3DRENDER_RENDER_GRAPHICSCONTEXT_H