/****************************************************************************
**
** Copyright (C) 2016 Klaralvdalens Datakonsult AB (KDAB)
** Contact: https://www.qt.io/licensing/
**
** This file is part of the QtGui module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:BSD$
** 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.
**
** BSD License Usage
** Alternatively, you may use this file under the terms of the BSD license
** as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
** met:
** * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in
** the documentation and/or other materials provided with the
** distribution.
** * Neither the name of The Qt Company Ltd nor the names of its
** contributors may be used to endorse or promote products derived
** from this software without specific prior written permission.
**
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
**
** $QT_END_LICENSE$
**
**
** This file was generated by glgen version 0.1
** Command line was: glgen
**
** glgen is Copyright (C) 2013 Klaralvdalens Datakonsult AB (KDAB)
**
** This is an auto-generated file.
** Do not edit! All changes made to it will be lost.
**
****************************************************************************/
#ifndef QOPENGLEXTENSIONS_H
#define QOPENGLEXTENSIONS_H
#include <QtCore/qglobal.h>
#ifndef QT_NO_OPENGL
#include <QtGui/qopengl.h>
class QOpenGLContext;
QT_BEGIN_NAMESPACE
#if 0
// silence syncqt warnings
#pragma qt_class(QOpenGLExtensions)
#pragma qt_sync_stop_processing
#endif
class QAbstractOpenGLExtensionPrivate
{
public:
QAbstractOpenGLExtensionPrivate() : initialized(false) {}
bool initialized;
};
class QAbstractOpenGLExtension
{
public:
virtual ~QAbstractOpenGLExtension();
virtual bool initializeOpenGLFunctions();
Q_DECLARE_PRIVATE(QAbstractOpenGLExtension)
protected:
bool isInitialized() const;
QAbstractOpenGLExtension() {}
QAbstractOpenGLExtension(QAbstractOpenGLExtensionPrivate &dd) : d_ptr(&dd) {}
QAbstractOpenGLExtensionPrivate *d_ptr;
};
#if !defined(QT_OPENGL_ES_2)
class QOpenGLExtension_3DFX_tbufferPrivate : public QAbstractOpenGLExtensionPrivate
{
public:
void (QOPENGLF_APIENTRYP TbufferMask3DFX)(GLuint mask);
};
class QOpenGLExtension_3DFX_tbuffer : public QAbstractOpenGLExtension
{
public:
QOpenGLExtension_3DFX_tbuffer();
bool initializeOpenGLFunctions() Q_DECL_FINAL;
void glTbufferMask3DFX(GLuint mask);
protected:
Q_DECLARE_PRIVATE(QOpenGLExtension_3DFX_tbuffer)
};
inline void QOpenGLExtension_3DFX_tbuffer::glTbufferMask3DFX(GLuint mask)
{
Q_D(QOpenGLExtension_3DFX_tbuffer);
d->TbufferMask3DFX(mask);
}
class QOpenGLExtension_AMD_debug_outputPrivate : public QAbstractOpenGLExtensionPrivate
{
public:
GLuint (QOPENGLF_APIENTRYP GetDebugMessageLogAMD)(GLuint count, GLsizei bufsize, GLenum *categories, GLuint *severities, GLuint *ids, GLsizei *lengths, GLchar *message);
void (QOPENGLF_APIENTRYP DebugMessageCallbackAMD)(GLDEBUGPROCAMD callback, GLvoid *userParam);
void (QOPENGLF_APIENTRYP DebugMessageInsertAMD)(GLenum category, GLenum severity, GLuint id, GLsizei length, const GLchar *buf);
void (QOPENGLF_APIENTRYP DebugMessageEnableAMD)(GLenum category, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled);
};
class QOpenGLExtension_AMD_debug_output : public QAbstractOpenGLExtension
{
public:
QOpenGLExtension_AMD_debug_output();
bool initializeOpenGLFunctions() Q_DECL_FINAL;
GLuint glGetDebugMessageLogAMD(GLuint count, GLsizei bufsize, GLenum *categories, GLuint *severities, GLuint *ids, GLsizei *lengths, GLchar *message);
void glDebugMessageCallbackAMD(GLDEBUGPROCAMD callback, GLvoid *userParam);
void glDebugMessageInsertAMD(GLenum category, GLenum severity, GLuint id, GLsizei length, const GLchar *buf);
void glDebugMessageEnableAMD(GLenum category, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled);
protected:
Q_DECLARE_PRIVATE(QOpenGLExtension_AMD_debug_output)
};
inline GLuint QOpenGLExtension_AMD_debug_output::glGetDebugMessageLogAMD(GLuint count, GLsizei bufsize, GLenum *categories, GLuint *severities, GLuint *ids, GLsizei *lengths, GLchar *message)
{
Q_D(QOpenGLExtension_AMD_debug_output);
return d->GetDebugMessageLogAMD(count, bufsize, categories, severities, ids, lengths, message);
}
inline void QOpenGLExtension_AMD_debug_output::glDebugMessageCallbackAMD(GLDEBUGPROCAMD callback, GLvoid *userParam)
{
Q_D(QOpenGLExtension_AMD_debug_output);
d->DebugMessageCallbackAMD(callback, userParam);
}
inline void QOpenGLExtension_AMD_debug_output::glDebugMessageInsertAMD(GLenum category, GLenum severity, GLuint id, GLsizei length, const GLchar *buf)
{
Q_D(QOpenGLExtension_AMD_debug_output);
d->DebugMessageInsertAMD(category, severity, id, length, buf);
}
inline void QOpenGLExtension_AMD_debug_output::glDebugMessageEnableAMD(GLenum category, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled)
{
Q_D(QOpenGLExtension_AMD_debug_output);
d->DebugMessageEnableAMD(category, severity, count, ids, enabled);
}
class QOpenGLExtension_AMD_draw_buffers_blendPrivate : public QAbstractOpenGLExtensionPrivate
{
public:
void (QOPENGLF_APIENTRYP BlendEquationSeparateIndexedAMD)(GLuint buf, GLenum modeRGB, GLenum modeAlpha);
void (QOPENGLF_APIENTRYP BlendEquationIndexedAMD)(GLuint buf, GLenum mode);
void (QOPENGLF_APIENTRYP BlendFuncSeparateIndexedAMD)(GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha);
void (QOPENGLF_APIENTRYP BlendFuncIndexedAMD)(GLuint buf, GLenum src, GLenum dst);
};
class QOpenGLExtension_AMD_draw_buffers_blend : public QAbstractOpenGLExtension
{
public:
QOpenGLExtension_AMD_draw_buffers_blend();
bool initializeOpenGLFunctions() Q_DECL_FINAL;
void glBlendEquationSeparateIndexedAMD(GLuint buf, GLenum modeRGB, GLenum modeAlpha);
void glBlendEquationIndexedAMD(GLuint buf, GLenum mode);
void glBlendFuncSeparateIndexedAMD(GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha);
void glBlendFuncIndexedAMD(GLuint buf, GLenum src, GLenum dst);
protected:
Q_DECLARE_PRIVATE(QOpenGLExtension_AMD_draw_buffers_blend)
};
inline void QOpenGLExtension_AMD_draw_buffers_blend::glBlendEquationSeparateIndexedAMD(GLuint buf, GLenum modeRGB, GLenum modeAlpha)
{
Q_D(QOpenGLExtension_AMD_draw_buffers_blend);
d->BlendEquationSeparateIndexedAMD(buf, modeRGB, modeAlpha);
}
inlin
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
型号: 昭阳 N4720Z 系统:Kylin-Desktop-V10-GFB-Release-020-ARM64 QT:编译版本是QT5.9.9 测试编译QT5.9.9,亲测可用 其他设备、系统、自行测试 ---------------------------------------------------------------------------- 安装方法: 1、把qt5.9.9lenovo.tar.gz文件复制到系统根目录opt下给予权限 2、解压:sudo tar -xvf qt5.9.9lenovo.tar.gz 3、打开QT Creator - 工具 - Kits - Qt Vsersions 4、选择添加 文件系统opt/qt5.9.9/bin/qmake 确定 5、在构建套件 QT version 选择 QT 5.9.9 版本 6、完成
资源推荐
资源详情
资源评论
收起资源包目录
Kylin-Desktop-V10-GFB-Release-020-ARM64 编译完成QT5.9.9-Lenovo版本 (2000个子文件)
qopenglextensions.h 883KB
qlocale_data_p.h 851KB
qopenglext.h 792KB
qopenglfunctions_4_5_compatibility.h 273KB
qopenglfunctions_4_4_compatibility.h 235KB
qopenglfunctions_4_3_compatibility.h 229KB
valgrind_p.h 227KB
qopenglfunctions_4_2_compatibility.h 218KB
qopenglfunctions_4_1_compatibility.h 213KB
qurltlds_p.h 192KB
qopengles2ext.h 192KB
qopenglfunctions_4_0_compatibility.h 188KB
qopenglfunctions_4_5_core.h 177KB
qopenglfunctions_3_3_compatibility.h 176KB
qopenglfunctions_3_2_compatibility.h 162KB
qopenglfunctions_4_4_core.h 144KB
qopenglfunctions_3_0.h 143KB
qopenglfunctions_4_3_core.h 135KB
qopenglfunctions_4_2_core.h 123KB
qopenglfunctions_2_1.h 123KB
qopenglfunctions_2_0.h 121KB
qopenglfunctions_4_1_core.h 119KB
qopenglversionfunctions.h 109KB
qopenglfunctions_1_5.h 101KB
qopenglfunctions_1_4.h 97KB
qtimezoneprivate_data_p.h 96KB
qopenglfunctions_4_0_core.h 94KB
qstring.h 89KB
qopenglextrafunctions.h 88KB
qopenglfunctions_1_3.h 88KB
qopenglfunctions_3_3_core.h 83KB
qrasterdefs_p.h 79KB
qopenglfunctions_1_2.h 77KB
qopenglfunctions.h 76KB
qmetatype.h 75KB
cp949codetbl_p.h 72KB
qopenglfunctions_3_2_core.h 69KB
qxmlstream_p.h 66KB
qopenglfunctions_1_1.h 65KB
qopenglfunctions_3_1.h 62KB
qopenglfunctions_1_0.h 58KB
qnamespace.h 54KB
qopengltexturehelper_p.h 50KB
qcompilerdetection.h 50KB
qglfunctions.h 49KB
qdrawhelper_p.h 41KB
qmap.h 40KB
qevdevkeyboard_defaultmap_p.h 40KB
qglobal.h 39KB
qopenglengineshadersource_p.h 39KB
qlist.h 37KB
qmatrix4x4.h 36KB
qhash.h 35KB
qrect.h 35KB
qaccessible.h 34KB
qevent.h 33KB
qopenglfunctions_es2.h 32KB
qvector.h 32KB
qtextformat.h 32KB
qquickitem_p.h 31KB
qsharedpointer_impl.h 31KB
qlocale.h 31KB
qpainter.h 29KB
qalgorithms.h 29KB
qopengltexture.h 29KB
qvariant.h 28KB
qbytearray.h 28KB
qobject.h 26KB
qjson_p.h 26KB
qcssparser_p.h 25KB
qfragmentmap_p.h 25KB
qtextengine_p.h 23KB
qchar.h 23KB
qdom.h 21KB
qblendfunctions_p.h 21KB
qglengineshadersource_p.h 21KB
qsgbatchrenderer_p.h 21KB
qxmlstream.h 20KB
qlowenergycontroller_p.h 20KB
qopenglengineshadermanager_p.h 20KB
qwindowsysteminterface_p.h 20KB
qobjectdefs.h 20KB
qabstractitemmodel.h 20KB
qatomic_msvc.h 20KB
qglengineshadermanager_p.h 19KB
qpixelformat.h 19KB
qquickevents_p_p.h 19KB
qsimd_p.h 19KB
qlocale_p.h 19KB
qatomic_cxx11.h 19KB
qhighdpiscaling_p.h 19KB
qsgadaptationlayer_p.h 19KB
qvarlengtharray.h 18KB
qdebug.h 18KB
qobject_p.h 18KB
qfontengine_p.h 18KB
qurl.h 18KB
qtestcase.h 18KB
qnearfieldtarget_neard_p.h 18KB
qtimezoneprivate_p.h 18KB
共 2000 条
- 1
- 2
- 3
- 4
- 5
- 6
- 20
资源评论
alin、m
- 粉丝: 160
- 资源: 58
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功