diff -Nru pyqt5-5.2+dfsg/configure.py pyqt5-5.2.1+dfsg/configure.py --- pyqt5-5.2+dfsg/configure.py 2014-01-07 16:19:54.000000000 +0000 +++ pyqt5-5.2.1+dfsg/configure.py 2014-03-14 14:38:18.000000000 +0000 @@ -32,15 +32,15 @@ # Initialise the constants. -PYQT_VERSION_STR = "5.2" +PYQT_VERSION_STR = "5.2.1" -SIP_MIN_VERSION = '4.15.4' +SIP_MIN_VERSION = '4.15.5' class ModuleMetadata: """ This class encapsulates the meta-data about a PyQt5 module. """ - def __init__(self, qmake_QT=None, qmake_TARGET='', qpy_lib='', in_consolidated=True): + def __init__(self, qmake_QT=None, qmake_TARGET='', qpy_lib=False, in_consolidated=True): """ Initialise the meta-data. """ # The values to update qmake's QT variable. @@ -50,7 +50,7 @@ # of the module. self.qmake_TARGET = qmake_TARGET - # The name of the qpy support library. + # Set if there is a qpy support library. self.qpy_lib = qpy_lib # Set if the module is to be included in the consolidated module. @@ -65,13 +65,12 @@ 'QAxContainer': ModuleMetadata(qmake_QT=['axcontainer']), 'Qt': ModuleMetadata(qmake_QT=['-core', '-gui']), 'QtBluetooth': ModuleMetadata(qmake_QT=['bluetooth']), - 'QtCore': ModuleMetadata(qmake_QT=['-gui'], - qpy_lib='qpycore'), + 'QtCore': ModuleMetadata(qmake_QT=['-gui'], qpy_lib=True), 'QtDBus': ModuleMetadata(qmake_QT=['dbus', '-gui'], - qpy_lib='qpydbus'), + qpy_lib=True), 'QtDesigner': ModuleMetadata(qmake_QT=['designer'], - qpy_lib='qpydesigner'), - 'QtGui': ModuleMetadata(qpy_lib='qpygui'), + qpy_lib=True), + 'QtGui': ModuleMetadata(qpy_lib=True), 'QtHelp': ModuleMetadata(qmake_QT=['help']), 'QtMacExtras': ModuleMetadata(qmake_QT=['macextras']), 'QtMultimedia': ModuleMetadata(qmake_QT=['multimedia']), @@ -82,9 +81,8 @@ 'QtOpenGL': ModuleMetadata(qmake_QT=['opengl']), 'QtPositioning': ModuleMetadata(qmake_QT=['positioning']), 'QtPrintSupport': ModuleMetadata(qmake_QT=['printsupport']), - 'QtQml': ModuleMetadata(qmake_QT=['qml'], qpy_lib='qpyqml'), - 'QtQuick': ModuleMetadata(qmake_QT=['quick'], - qpy_lib='qpyquick'), + 'QtQml': ModuleMetadata(qmake_QT=['qml'], qpy_lib=True), + 'QtQuick': ModuleMetadata(qmake_QT=['quick'], qpy_lib=True), 'QtSensors': ModuleMetadata(qmake_QT=['sensors']), 'QtSerialPort': ModuleMetadata(qmake_QT=['serialport']), 'QtSql': ModuleMetadata(qmake_QT=['sql', 'widgets']), @@ -252,7 +250,16 @@ # The installation of MacOS's python is a mess that changes from # version to version and where sys.executable is useless. - self.pyuic_interpreter = 'pythonw%d.%d' % (self.version >> 16, (self.version >> 8) & 0xff) + py_major = self.version >> 16 + py_minor = (self.version >> 8) & 0xff + + # In Python v3.4 and later there is no pythonw. + if (py_major == 3 and py_minor >= 4) or py_major >= 4: + exe = "python" + else: + exe = "pythonw" + + self.pyuic_interpreter = '%s%d.%d' % (exe, py_major, py_minor) else: self.pyuic_interpreter = sys.executable @@ -477,14 +484,20 @@ out << "PyQt_RawFont\\n"; #endif -#if defined(QT_OPENGL_ES_2) +#if defined(QT_NO_OPENGL) + out << "PyQt_OpenGL\\n"; + out << "PyQt_Desktop_OpenGL\\n"; +#elif defined(QT_OPENGL_ES_2) out << "PyQt_Desktop_OpenGL\\n"; #endif -// This is the test used in qglobal.h. +#if QT_VERSION < 0x050200 +// This is the test used in qglobal.h in Qt prior to v5.2. In v5.2 and later +// qreal is always double. #if defined(QT_NO_FPU) || defined(Q_PROCESSOR_ARM) || defined(Q_OS_WINCE) out << "PyQt_qreal_double\\n"; #endif +#endif return 0; } @@ -522,13 +535,7 @@ pylib_dir = self.py_lib_dir else: - if self.py_platform == 'darwin': - # It's probably a Python bug that the library name doesn't - # include the ABI information. - abi = '' - else: - abi = getattr(sys, 'abiflags', '') - + abi = getattr(sys, 'abiflags', '') pylib_lib = 'python%d.%d%s' % (py_major, py_minor, abi) # Use distutils to get the additional configuration. @@ -573,8 +580,7 @@ error("Make sure you have a working Qt qmake on your PATH.") else: error( - "Make sure you have a working Qt qmake on your PATH " - "or use the --qmake argument to explicitly specify a " + "Use the --qmake argument to explicitly specify a " "working Qt qmake.") # Query qmake. @@ -591,7 +597,16 @@ # Check the Qt version number as soon as possible. if self.qt_version < 0x050000: - error("PyQt5 requires Qt v5.0 or later. You seem to be using v%s. Use the --qmake flag to specify the correct version of qmake." % qt_version_str) + if sys.platform == 'win32': + error( + "PyQt5 requires Qt v5.0 or later. You seem to be " + "using v%s. Make sure the correct version of qmake is " + "on your PATH." % qt_version_str) + else: + error( + "PyQt5 requires Qt v5.0 or later. You seem to be " + "using v%s. Use the --qmake flag to specify the " + "correct version of qmake." % qt_version_str) self.designer_plugin_dir = qt_config.QT_INSTALL_PLUGINS + '/designer' self.qml_plugin_dir = qt_config.QT_INSTALL_PLUGINS + '/PyQt5' @@ -1017,7 +1032,9 @@ """ # Check the OpenGL functions. - if 'PyQt_Desktop_OpenGL' in target_config.qt_disabled_features: + if 'PyQt_OpenGL' in target_config.qt_disabled_features: + pass + elif 'PyQt_Desktop_OpenGL' in target_config.qt_disabled_features: check_module(target_config, verbose, '_QOpenGLFunctions_ES2', 'qopenglfunctions_es2.h', 'new QOpenGLFunctions_ES2()') else: @@ -1044,7 +1061,7 @@ check_module(target_config, verbose, 'QtSerialPort', 'qserialport.h', 'new QSerialPort()') check_module(target_config, verbose, 'QtX11Extras', 'QX11Info', - 'QX11Info::isPlatformX11()') + 'QX11Info::display()') def check_5_2_modules(target_config, verbose): @@ -1073,104 +1090,61 @@ # For the top-level .pro file. toplevel_pro = 'PyQt5.pro' - qpy_src_dir = 'qpy' - subdirs = [qpy_src_dir] + subdirs = [] # Set the SIP platform, version and feature flags. sip_flags = get_sip_flags(target_config) - # Embed the sip flags. - inform("Embedding sip flags...") - - qpy_qtcore_src_dir = os.path.join(qpy_src_dir, 'QtCore') - mk_dir(qpy_qtcore_src_dir) - - in_f = open(source_path(qpy_qtcore_src_dir, 'qpycore_post_init.cpp.in')) - out_f = open_for_writing( - os.path.join(qpy_qtcore_src_dir, 'qpycore_post_init.cpp')) - - for line in in_f: - line = line.replace('@@PYQT_SIP_FLAGS@@', sip_flags) - out_f.write(line) - - in_f.close() - out_f.close() - # Go through the modules. - qpy_subdirs = [] + all_qpy_sources = [] + all_qpy_headers = [] for mname in target_config.pyqt_modules: metadata = MODULE_METADATA[mname] - if metadata.qpy_lib != '': - qpy_subdirs.append(mname) - - inform("Generating the .pro file for the QPy support library for %s..." % mname) - - qpy_mod_src_dir = os.path.join(qpy_src_dir, mname) - mk_dir(qpy_mod_src_dir) - - sp_qpy_mod_src_dir = source_path(qpy_mod_src_dir) - need_vpath = (sp_qpy_mod_src_dir != qpy_mod_src_dir) - - pro_lines = [] + if metadata.qpy_lib: + sp_qpy_dir = source_path('qpy', mname) - pro_add_qt_dependencies(target_config, metadata, pro_lines) + qpy_c_sources = [os.path.relpath(f, mname) + for f in glob.glob(os.path.join(sp_qpy_dir, '*.c'))] + qpy_cpp_sources = [os.path.relpath(f, mname) + for f in glob.glob(os.path.join(sp_qpy_dir, '*.cpp'))] + qpy_headers = [os.path.relpath(f, mname) + for f in glob.glob(os.path.join(sp_qpy_dir, '*.h'))] - inc_path = [] - - if need_vpath: - inc_path.append(sp_qpy_mod_src_dir) + qpy_sources = qpy_c_sources + qpy_cpp_sources if target_config.consolidate: - inc_path.append('../../_qt') - else: - inc_path.append('../../%s' % mname) - - inc_path.append(target_config.py_inc_dir) - - if target_config.sip_inc_dir != target_config.py_inc_dir: - inc_path.append(target_config.sip_inc_dir) - - pro_lines.append('INCLUDEPATH = %s' % - ' '.join([qmake_quote(i) for i in inc_path])) - - if need_vpath: - pro_lines.append('VPATH = %s' % qmake_quote(sp_qpy_mod_src_dir)) + all_qpy_sources += qpy_sources + qpy_sources = [] - pro_lines.append('include(%s.pro)' % - os.path.join(sp_qpy_mod_src_dir, metadata.qpy_lib)) - - qpy_pro_name = os.path.join(qpy_mod_src_dir, - 'w_%s.pro' % metadata.qpy_lib) - - out_f = open_for_writing(qpy_pro_name) - out_f.write('\n'.join(pro_lines)) - out_f.close() + all_qpy_headers += qpy_headers + qpy_headers = [] + else: + qpy_sources = [] + qpy_headers = [] - inform("Generating the Makefile for the QPy support library for %s..." % mname) - run_qmake(target_config, verbose, qpy_pro_name) + if mname == 'QtCore': + qpy_sources.insert(0, 'qpycore_post_init.cpp') generate_sip_module_code(target_config, verbose, no_timestamp, parts, - tracing, mname, sip_flags) + tracing, mname, sip_flags, qpy_sources, qpy_headers) subdirs.append(mname) - # Generate the .pro file for the qpy libraries. - inform("Generating the .pro file for the QPy support libraries...") - - qpy_pro_name = os.path.join(qpy_src_dir, 'qpy.pro') - - out_f = open_for_writing(qpy_pro_name) - - out_f.write("""TEMPLATE = subdirs -SUBDIRS = %s -""" % ' '.join(qpy_subdirs)) + # Embed the sip flags. + if 'QtCore' in target_config.pyqt_modules: + inform("Embedding sip flags...") - out_f.close() + in_f = open(source_path('qpy', 'QtCore', 'qpycore_post_init.cpp.in')) + out_f = open_for_writing( + os.path.join('QtCore', 'qpycore_post_init.cpp')) + + for line in in_f: + line = line.replace('@@PYQT_SIP_FLAGS@@', sip_flags) + out_f.write(line) - # Generate the makefiles for the qpy libraries. - inform("Generating the Makefile for the QPy support libraries...") - run_qmake(target_config, verbose, qpy_pro_name) + in_f.close() + out_f.close() # Generate the composite module. qtmod_sipdir = os.path.join('sip', 'Qt') @@ -1211,7 +1185,7 @@ f.close() generate_sip_module_code(target_config, verbose, no_timestamp, parts, - tracing, '_qt', sip_flags) + tracing, '_qt', sip_flags, all_qpy_sources, all_qpy_headers) subdirs.append('_qt') # Generate pylupdate5 and pyrcc5. @@ -1353,9 +1327,7 @@ 'debug' if target_config.debug else 'release') prj = prj.replace('@PYINCDIR@', quote(target_config.py_inc_dir)) prj = prj.replace('@SIPINCDIR@', quote(target_config.sip_inc_dir)) - prj = prj.replace('@PYLINK@', - qmake_quote('-L' + target_config.py_pylib_dir) + - ' -l' + target_config.py_pylib_lib) + prj = prj.replace('@PYLINK@', target_config.get_pylib_link_arguments()) prj = prj.replace('@QTPLUGINDIR@', quote(install_dir)) pro_name = os.path.join(plugin_dir, 'python.pro') @@ -1426,20 +1398,29 @@ run_qmake(target_config, verbose, pro_name) -def pro_sources(src_dir): +def pro_sources(src_dir, other_headers=None, other_sources=None): """ Return the HEADERS and SOURCES variables for a .pro file by introspecting a directory. src_dir is the name of the directory. + other_headers is an optional list of other header files. other_sources is + an optional list of other source files. """ + if other_headers is None: + other_headers = [] + + if other_sources is None: + other_sources = [] + pro_lines = [] headers = [os.path.basename(f) for f in glob.glob('%s/*.h' % src_dir)] if len(headers) != 0: - pro_lines.append('HEADERS = %s' % ' '.join(headers)) + pro_lines.append('HEADERS = %s' % ' '.join(headers + other_headers)) c_sources = [os.path.basename(f) for f in glob.glob('%s/*.c' % src_dir)] cpp_sources = [os.path.basename(f) for f in glob.glob('%s/*.cpp' % src_dir)] - pro_lines.append('SOURCES = %s' % ' '.join(c_sources + cpp_sources)) + pro_lines.append( + 'SOURCES = %s' % ' '.join(c_sources + cpp_sources + other_sources)) return pro_lines @@ -1496,7 +1477,7 @@ def qmake_quote(path): - """ Return a path with quoted for qmake if it contains spaces. path is the + """ Return a path quoted for qmake if it contains spaces. path is the path. """ @@ -2008,14 +1989,16 @@ pass -def generate_sip_module_code(target_config, verbose, no_timestamp, parts, tracing, mname, sip_flags): +def generate_sip_module_code(target_config, verbose, no_timestamp, parts, tracing, mname, sip_flags, qpy_sources=None, qpy_headers=None): """ Generate the code for a module. target_config is the target configuration. verbose is set if the output is to be displayed. no_timestamp is set if the .sip files should exclude the timestamp. parts is the number of parts the generated code should be split into. tracing is set if the generated code should include tracing calls. mname is the name of the module to generate the code for. sip_flags is the string of flags - to pass to sip. + to pass to sip. qpy_sources is the optional list of QPy support code + source files. qpy_headers is the optional list of QPy support code header + files. """ inform("Generating the C++ source for the %s module..." % mname) @@ -2097,17 +2080,20 @@ libs = '-L%s -lvendorid' % target_config.vend_lib_dir generate_module_makefile(target_config, verbose, mname, - includepath=includepath, libs=libs) + includepath=includepath, libs=libs, qpy_sources=qpy_sources, + qpy_headers=qpy_headers) -def generate_module_makefile(target_config, verbose, mname, includepath='', libs='', install_path='', src_dir=''): +def generate_module_makefile(target_config, verbose, mname, includepath='', libs='', install_path='', src_dir='', qpy_sources=None, qpy_headers=None): """ Generate the makefile for a module. target_config is the target configuration. verbose is set if the output is to be displayed. mname is the name of the module. includepath is an optional additional value of INCLUDEPATH. libs is an optional additional value of LIBS. install_path is the optional name of the directory that the module will be installed in. src_dir is the optional source directory (by default the sources are - assumed to be in the module directory). + assumed to be in the module directory). qpy_sources is the optional list + of QPy support code source files. qpy_headers is the optional list of QPy + support code header files. """ inform("Generating the .pro file for the %s module..." % mname) @@ -2182,7 +2168,8 @@ pro_lines.append('INSTALLS += target') if target_config.pyqt_sip_dir: - sip_files = glob.glob(source_path('sip', mname, '*.sip')) + sip_files = [os.path.relpath(f, mname) + for f in glob.glob(source_path('sip', mname, '*.sip'))] if len(sip_files) != 0: pro_lines.append('sip.path = %s/%s' % (target_config.pyqt_sip_dir, mname)) pro_lines.append('sip.files = %s' % ' '.join(sip_files)) @@ -2207,17 +2194,20 @@ if target_config.prot_is_public: pro_lines.append('DEFINES += SIP_PROTECTED_IS_PUBLIC protected=public') + # This is needed for Windows. + pro_lines.append('INCLUDEPATH += .') + pro_lines.append('INCLUDEPATH += %s' % target_config.py_inc_dir) if target_config.py_inc_dir != target_config.sip_inc_dir: pro_lines.append('INCLUDEPATH += %s' % target_config.sip_inc_dir) if mname != '_qt': - pro_add_qpy(target_config, mname, metadata, pro_lines) + pro_add_qpy(mname, metadata, pro_lines) else: for dep_mname in target_config.pyqt_modules: dep_metadata = MODULE_METADATA[dep_mname] if dep_metadata.in_consolidated: - pro_add_qpy(target_config, dep_mname, dep_metadata, pro_lines) + pro_add_qpy(dep_mname, dep_metadata, pro_lines) if includepath != '': pro_lines.append('INCLUDEPATH += %s' % includepath) @@ -2234,6 +2224,7 @@ } macx { QMAKE_LFLAGS += "-undefined dynamic_lookup" + QMAKE_LFLAGS += "-install_name $$absolute_path($$PY_MODULE, $$target.path)" } ''' @@ -2245,36 +2236,28 @@ pro_lines.append('INCLUDEPATH += %s' % quote(src_dir)) pro_lines.append('VPATH = %s' % quote(src_dir)) - pro_lines.extend(pro_sources(src_dir)) + pro_lines.extend(pro_sources(src_dir, qpy_headers, qpy_sources)) pro_name = os.path.join(mname, mname + '.pro') pro = open_for_writing(pro_name) pro.write('\n'.join(pro_lines)) + pro.write('\n') pro.close() inform("Generating the Makefile for the %s module..." % target_name) run_qmake(target_config, verbose, pro_name) -def pro_add_qpy(target_config, mname, metadata, pro_lines): - """ Add the qpy dependencies of a module to a .pro file. target_config is - the target configuration. mname is the module's name. metadata is the - module's meta-data. pro_lines is the list of lines making up the .pro file - that is updated. +def pro_add_qpy(mname, metadata, pro_lines): + """ Add the qpy dependencies of a module to a .pro file. mname is the + module's name. metadata is the module's meta-data. pro_lines is the list + of lines making up the .pro file that is updated. """ - if metadata.qpy_lib != '': + if metadata.qpy_lib: pro_lines.append('INCLUDEPATH += %s' % - qmake_quote(source_path('qpy', mname))) - - if target_config.py_platform == 'win32': - dir_suffix = '/' + ('debug' if target_config.debug else 'release') - else: - dir_suffix = '' - - pro_lines.append('LIBS += -L../qpy/%s%s -l%s' % - (mname, dir_suffix, metadata.qpy_lib)) + qmake_quote(os.path.relpath(source_path('qpy', mname), mname))) def fix_license(src_lfile, dst_lfile): diff -Nru pyqt5-5.2+dfsg/dbus/dbus.cpp pyqt5-5.2.1+dfsg/dbus/dbus.cpp --- pyqt5-5.2+dfsg/dbus/dbus.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/dbus/dbus.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -3,21 +3,25 @@ // // Copyright (c) 2014 Riverbank Computing Limited // -// Licensed under the Academic Free License version 2.1 +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, copy, +// modify, merge, publish, distribute, sublicense, and/or sell copies +// of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. // -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +// DEALINGS IN THE SOFTWARE. #include diff -Nru pyqt5-5.2+dfsg/dbus/helper.h pyqt5-5.2.1+dfsg/dbus/helper.h --- pyqt5-5.2+dfsg/dbus/helper.h 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/dbus/helper.h 2014-03-14 14:38:45.000000000 +0000 @@ -3,21 +3,25 @@ // // Copyright (c) 2014 Riverbank Computing Limited // -// Licensed under the Academic Free License version 2.1 +// Permission is hereby granted, free of charge, to any person +// obtaining a copy of this software and associated documentation +// files (the "Software"), to deal in the Software without +// restriction, including without limitation the rights to use, copy, +// modify, merge, publish, distribute, sublicense, and/or sell copies +// of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: // -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. +// The above copyright notice and this permission notice shall be +// included in all copies or substantial portions of the Software. // -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +// DEALINGS IN THE SOFTWARE. #include diff -Nru pyqt5-5.2+dfsg/debian/changelog pyqt5-5.2.1+dfsg/debian/changelog --- pyqt5-5.2+dfsg/debian/changelog 2014-03-14 03:49:33.000000000 +0000 +++ pyqt5-5.2.1+dfsg/debian/changelog 2014-03-21 06:57:45.000000000 +0000 @@ -1,3 +1,20 @@ +pyqt5 (5.2.1+dfsg-1ubuntu1) trusty; urgency=medium + + * Merge with Debian experimental, remaining changes: + - Add new package for QtPositioning module. + - Add a patch to build against QtWebKit 5.1. + + -- Dmitry Shachnev Fri, 21 Mar 2014 10:56:57 +0400 + +pyqt5 (5.2.1+dfsg-1) experimental; urgency=medium + + * New upstream bugfix release. + * Drop all patches, applied upstream. + * Bump python3-sip-dev build-dependency to 4.15.5. + * Update licensing information for pylupdate and pyrcc modules. + + -- Dmitry Shachnev Tue, 11 Mar 2014 12:45:18 +0400 + pyqt5 (5.2+dfsg-4ubuntu3) trusty; urgency=medium * debian/patches/build_against_qtwebkit_5_1.patch: diff -Nru pyqt5-5.2+dfsg/debian/control pyqt5-5.2.1+dfsg/debian/control --- pyqt5-5.2+dfsg/debian/control 2014-03-07 06:27:05.000000000 +0000 +++ pyqt5-5.2.1+dfsg/debian/control 2014-03-21 06:53:50.000000000 +0000 @@ -30,7 +30,7 @@ python3-dbus, python3-dbus-dbg, python3-sip-dbg, - python3-sip-dev (>= 4.15.4), + python3-sip-dev (>= 4.15.5), python3-sphinx, python-dbus-dev, qtdeclarative5-dev, diff -Nru pyqt5-5.2+dfsg/debian/copyright pyqt5-5.2.1+dfsg/debian/copyright --- pyqt5-5.2+dfsg/debian/copyright 2014-03-05 07:31:40.000000000 +0000 +++ pyqt5-5.2.1+dfsg/debian/copyright 2014-03-21 06:53:50.000000000 +0000 @@ -11,6 +11,7 @@ Files: examples/* Copyright: 2010-2011, Nokia Corporation and/or its subsidiary(-ies) + 2010, Hans-Peter Jansen 2012-2013, Digia Plc and/or its subsidiary(-ies) 2013-2014, Riverbank Computing Limited License: BSD-3-clause @@ -25,12 +26,12 @@ Files: pylupdate/* Copyright: 2002-2007, Detlev Offenbach 2013, Digia Plc and/or its subsidiary(-ies) -License: GPL-2+ +License: LGPL-2.1 or GPL-3 Files: pyrcc/* Copyright: 2013, Digia Plc and/or its subsidiary(-ies) 2014, Riverbank Computing Limited -License: LGPL-2.1 +License: LGPL-2.1 or GPL-3 Files: pyuic/* Copyright: 2005, Thorsten Marek diff -Nru pyqt5-5.2+dfsg/debian/patches/build_against_qtwebkit_5_1.patch pyqt5-5.2.1+dfsg/debian/patches/build_against_qtwebkit_5_1.patch --- pyqt5-5.2+dfsg/debian/patches/build_against_qtwebkit_5_1.patch 2014-03-14 03:35:53.000000000 +0000 +++ pyqt5-5.2.1+dfsg/debian/patches/build_against_qtwebkit_5_1.patch 2014-03-21 06:56:32.000000000 +0000 @@ -1,13 +1,12 @@ -Remove code that is only compatible with QtWebKit 5.2. +Description: remove code that is only compatible with QtWebKit 5.2 + This is needed as our qtbase is 5.2.1 but we still want to keep qtwebkit + on 5.1.1. Can be dropped once qtwebkit >= 5.2.0 gets published. +Author: Ricardo Salveti de Araujo +Forwarded: not-needed +Last-Update: 2014-03-21 -This is needed as our qtbase is 5.2.1 but we still want to keep qtwebkit on 5.1.1. - -Can be dropped once qtwebkit >= 5.2.0 gets published. - -Index: pyqt5-5.2+dfsg/sip/QtWebKit/qwebsecurityorigin.sip -=================================================================== ---- pyqt5-5.2+dfsg.orig/sip/QtWebKit/qwebsecurityorigin.sip 2014-01-07 14:20:16.000000000 -0200 -+++ pyqt5-5.2+dfsg/sip/QtWebKit/qwebsecurityorigin.sip 2014-03-14 00:23:54.717561369 -0300 +--- a/sip/QtWebKit/qwebsecurityorigin.sip ++++ b/sip/QtWebKit/qwebsecurityorigin.sip @@ -27,9 +27,6 @@ %End @@ -38,10 +37,8 @@ - void removeAccessWhitelistEntry(const QString &scheme, const QString &host, QWebSecurityOrigin::SubdomainSetting subdomainSetting); -%End }; -Index: pyqt5-5.2+dfsg/sip/QtWebKit/qwebsettings.sip -=================================================================== ---- pyqt5-5.2+dfsg.orig/sip/QtWebKit/qwebsettings.sip 2014-01-07 14:20:16.000000000 -0200 -+++ pyqt5-5.2+dfsg/sip/QtWebKit/qwebsettings.sip 2014-03-14 00:23:33.717561181 -0300 +--- a/sip/QtWebKit/qwebsettings.sip ++++ b/sip/QtWebKit/qwebsettings.sip @@ -71,9 +71,6 @@ ScrollAnimatorEnabled, CaretBrowsingEnabled, @@ -52,10 +49,8 @@ }; enum WebGraphic -Index: pyqt5-5.2+dfsg/sip/QtWebKitWidgets/qwebframe.sip -=================================================================== ---- pyqt5-5.2+dfsg.orig/sip/QtWebKitWidgets/qwebframe.sip 2014-01-07 14:20:16.000000000 -0200 -+++ pyqt5-5.2+dfsg/sip/QtWebKitWidgets/qwebframe.sip 2014-03-14 00:35:50.921567789 -0300 +--- a/sip/QtWebKitWidgets/qwebframe.sip ++++ b/sip/QtWebKitWidgets/qwebframe.sip @@ -51,9 +51,6 @@ QWebElement enclosingBlockElement() const; QWebElement linkElement() const; @@ -66,10 +61,8 @@ }; class QWebFrame : QObject /NoDefaultCtors/ -Index: pyqt5-5.2+dfsg/sip/QtWebKitWidgets/qwebpage.sip -=================================================================== ---- pyqt5-5.2+dfsg.orig/sip/QtWebKitWidgets/qwebpage.sip 2014-01-07 14:20:16.000000000 -0200 -+++ pyqt5-5.2+dfsg/sip/QtWebKitWidgets/qwebpage.sip 2014-03-14 00:35:43.093567719 -0300 +--- a/sip/QtWebKitWidgets/qwebpage.sip ++++ b/sip/QtWebKitWidgets/qwebpage.sip @@ -114,27 +114,6 @@ StopScheduledPageRefresh, CopyImageUrlToClipboard, diff -Nru pyqt5-5.2+dfsg/debian/patches/fix_license.diff pyqt5-5.2.1+dfsg/debian/patches/fix_license.diff --- pyqt5-5.2+dfsg/debian/patches/fix_license.diff 2014-03-05 07:31:40.000000000 +0000 +++ pyqt5-5.2.1+dfsg/debian/patches/fix_license.diff 1970-01-01 00:00:00.000000000 +0000 @@ -1,85 +0,0 @@ -Description: fix license for dbus/dbus.cpp and dbus/helper.h -Origin: upstream, changeset 6e831021c4ef - ---- a/dbus/dbus.cpp -+++ b/dbus/dbus.cpp -@@ -3,21 +3,25 @@ - // - // Copyright (c) 2014 Riverbank Computing Limited - // --// Licensed under the Academic Free License version 2.1 -+// Permission is hereby granted, free of charge, to any person -+// obtaining a copy of this software and associated documentation -+// files (the "Software"), to deal in the Software without -+// restriction, including without limitation the rights to use, copy, -+// modify, merge, publish, distribute, sublicense, and/or sell copies -+// of the Software, and to permit persons to whom the Software is -+// furnished to do so, subject to the following conditions: - // --// This program is free software; you can redistribute it and/or modify --// it under the terms of the GNU General Public License as published by --// the Free Software Foundation; either version 2 of the License, or --// (at your option) any later version. -+// The above copyright notice and this permission notice shall be -+// included in all copies or substantial portions of the Software. - // --// This program is distributed in the hope that it will be useful, --// but WITHOUT ANY WARRANTY; without even the implied warranty of --// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --// GNU General Public License for more details. --// --// You should have received a copy of the GNU General Public License --// along with this program; if not, write to the Free Software --// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -+// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -+// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -+// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -+// DEALINGS IN THE SOFTWARE. - - - #include ---- a/dbus/helper.h -+++ b/dbus/helper.h -@@ -3,21 +3,25 @@ - // - // Copyright (c) 2014 Riverbank Computing Limited - // --// Licensed under the Academic Free License version 2.1 -+// Permission is hereby granted, free of charge, to any person -+// obtaining a copy of this software and associated documentation -+// files (the "Software"), to deal in the Software without -+// restriction, including without limitation the rights to use, copy, -+// modify, merge, publish, distribute, sublicense, and/or sell copies -+// of the Software, and to permit persons to whom the Software is -+// furnished to do so, subject to the following conditions: - // --// This program is free software; you can redistribute it and/or modify --// it under the terms of the GNU General Public License as published by --// the Free Software Foundation; either version 2 of the License, or --// (at your option) any later version. -+// The above copyright notice and this permission notice shall be -+// included in all copies or substantial portions of the Software. - // --// This program is distributed in the hope that it will be useful, --// but WITHOUT ANY WARRANTY; without even the implied warranty of --// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --// GNU General Public License for more details. --// --// You should have received a copy of the GNU General Public License --// along with this program; if not, write to the Free Software --// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -+// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -+// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -+// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -+// DEALINGS IN THE SOFTWARE. - - - #include diff -Nru pyqt5-5.2+dfsg/debian/patches/fix_qreal_check.diff pyqt5-5.2.1+dfsg/debian/patches/fix_qreal_check.diff --- pyqt5-5.2+dfsg/debian/patches/fix_qreal_check.diff 2014-03-05 07:31:40.000000000 +0000 +++ pyqt5-5.2.1+dfsg/debian/patches/fix_qreal_check.diff 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -Description: check if qreal is double based on sizeof -Author: Dmitry Shachnev -Forwarded: no -Last-Update: 2014-01-29 - ---- a/configure.py -+++ b/configure.py -@@ -481,10 +481,8 @@ - out << "PyQt_Desktop_OpenGL\\n"; - #endif - --// This is the test used in qglobal.h. --#if defined(QT_NO_FPU) || defined(Q_PROCESSOR_ARM) || defined(Q_OS_WINCE) -- out << "PyQt_qreal_double\\n"; --#endif -+ if (sizeof (qreal) != sizeof (double)) -+ out << "PyQt_qreal_double\\n"; - - return 0; - } - diff -Nru pyqt5-5.2+dfsg/debian/patches/old_qt.diff pyqt5-5.2.1+dfsg/debian/patches/old_qt.diff --- pyqt5-5.2+dfsg/debian/patches/old_qt.diff 2014-03-05 07:31:40.000000000 +0000 +++ pyqt5-5.2.1+dfsg/debian/patches/old_qt.diff 1970-01-01 00:00:00.000000000 +0000 @@ -1,65 +0,0 @@ -Description: fix building against Qt versions older than 5.2 -Origin: upstream, changesets 5c798e751276 and 7d0f384170fd -Last-Update: 2014-01-19 - ---- a/configure.py -+++ b/configure.py -@@ -1044,7 +1044,7 @@ - check_module(target_config, verbose, 'QtSerialPort', 'qserialport.h', - 'new QSerialPort()') - check_module(target_config, verbose, 'QtX11Extras', 'QX11Info', -- 'QX11Info::isPlatformX11()') -+ 'QX11Info::display()') - - - def check_5_2_modules(target_config, verbose): ---- a/sip/QtGui/qpygui_qpair.sip -+++ b/sip/QtGui/qpygui_qpair.sip -@@ -19,6 +19,8 @@ - // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - - -+%If (Qt_5_2_0 -) -+ - %MappedType QPair - /DocType="tuple-of-QOpenGLTexture.Filter-QOpenGLTexture.Filter"/ - { -@@ -110,6 +112,10 @@ - %End - }; - -+%End -+ -+ -+%If (Qt_5_2_0 -) - - %MappedType QPair /DocType="tuple-of-float-float"/ - { -@@ -202,3 +208,5 @@ - return sipGetState(sipTransferObj); - %End - }; -+ -+%End ---- a/sip/QtX11Extras/qx11info_x11.sip -+++ b/sip/QtX11Extras/qx11info_x11.sip -@@ -31,7 +31,9 @@ - %End - - public: -+%If (Qt_5_2_0 -) - static bool isPlatformX11(); -+%End - - static int appDpiX(int screen = -1); - static int appDpiY(int screen = -1); -@@ -45,7 +47,9 @@ - static void setAppTime(unsigned long time); - static void setAppUserTime(unsigned long time); - -+%If (Qt_5_2_0 -) - static unsigned long getTimestamp(); -+%End - - static Display *display(); - static xcb_connection_t *connection(); diff -Nru pyqt5-5.2+dfsg/debian/patches/series pyqt5-5.2.1+dfsg/debian/patches/series --- pyqt5-5.2+dfsg/debian/patches/series 2014-03-14 03:23:15.000000000 +0000 +++ pyqt5-5.2.1+dfsg/debian/patches/series 2014-03-21 06:53:50.000000000 +0000 @@ -1,4 +1 @@ -old_qt.diff -fix_qreal_check.diff -fix_license.diff build_against_qtwebkit_5_1.patch diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstractanimation.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractanimation.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstractanimation.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractanimation.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractAnimation - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstractbutton.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractbutton.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstractbutton.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractbutton.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractButton - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstracteventdispatcher.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstracteventdispatcher.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstracteventdispatcher.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstracteventdispatcher.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractEventDispatcher - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstractextensionfactory.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractextensionfactory.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstractextensionfactory.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractextensionfactory.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractExtensionFactory - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstractextensionmanager.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractextensionmanager.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstractextensionmanager.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractextensionmanager.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractExtensionManager - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstractformbuilder.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractformbuilder.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstractformbuilder.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractformbuilder.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractFormBuilder - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstractgraphicsshapeitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractgraphicsshapeitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstractgraphicsshapeitem.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractgraphicsshapeitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractGraphicsShapeItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstractitemdelegate.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractitemdelegate.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstractitemdelegate.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractitemdelegate.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractItemDelegate - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstractitemmodel.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractitemmodel.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstractitemmodel.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractitemmodel.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractItemModel - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstractitemview.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractitemview.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstractitemview.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractitemview.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractItemView - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstractlistmodel.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractlistmodel.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstractlistmodel.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractlistmodel.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractListModel - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstractmessagehandler.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractmessagehandler.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstractmessagehandler.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractmessagehandler.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractMessageHandler - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstractnativeeventfilter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractnativeeventfilter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstractnativeeventfilter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractnativeeventfilter.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractNativeEventFilter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstractnetworkcache.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractnetworkcache.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstractnetworkcache.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractnetworkcache.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractNetworkCache - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstractprintdialog.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractprintdialog.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstractprintdialog.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractprintdialog.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractPrintDialog - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstractproxymodel.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractproxymodel.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstractproxymodel.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractproxymodel.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractProxyModel - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstractscrollarea.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractscrollarea.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstractscrollarea.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractscrollarea.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractScrollArea - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstractslider.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractslider.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstractslider.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractslider.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractSlider - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstractsocket.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractsocket.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstractsocket.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractsocket.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractSocket - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstractspinbox.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractspinbox.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstractspinbox.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractspinbox.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractSpinBox - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstractstate.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractstate.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstractstate.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractstate.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractState - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstracttablemodel.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstracttablemodel.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstracttablemodel.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstracttablemodel.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractTableModel - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstracttextdocumentlayout.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstracttextdocumentlayout.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstracttextdocumentlayout.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstracttextdocumentlayout.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractTextDocumentLayout - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstracttransition.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstracttransition.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstracttransition.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstracttransition.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractTransition - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstracturiresolver.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstracturiresolver.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstracturiresolver.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstracturiresolver.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractUriResolver - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstractvideobuffer.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractvideobuffer.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstractvideobuffer.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractvideobuffer.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractVideoBuffer - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstractvideosurface.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractvideosurface.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstractvideosurface.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractvideosurface.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractVideoSurface - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstractxmlnodemodel.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractxmlnodemodel.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstractxmlnodemodel.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractxmlnodemodel.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractXmlNodeModel - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qabstractxmlreceiver.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractxmlreceiver.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qabstractxmlreceiver.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qabstractxmlreceiver.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAbstractXmlReceiver - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qaccelerometerfilter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qaccelerometerfilter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qaccelerometerfilter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qaccelerometerfilter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAccelerometerFilter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qaccelerometerreading.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qaccelerometerreading.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qaccelerometerreading.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qaccelerometerreading.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAccelerometerReading - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qaccelerometer.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qaccelerometer.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qaccelerometer.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qaccelerometer.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAccelerometer - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qactionevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qactionevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qactionevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qactionevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QActionEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qactiongroup.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qactiongroup.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qactiongroup.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qactiongroup.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QActionGroup - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qaction.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qaction.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qaction.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qaction.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAction - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qaltimeterfilter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qaltimeterfilter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qaltimeterfilter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qaltimeterfilter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAltimeterFilter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qaltimeterreading.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qaltimeterreading.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qaltimeterreading.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qaltimeterreading.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAltimeterReading - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qaltimeter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qaltimeter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qaltimeter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qaltimeter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAltimeter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qambientlightfilter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qambientlightfilter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qambientlightfilter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qambientlightfilter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAmbientLightFilter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qambientlightreading.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qambientlightreading.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qambientlightreading.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qambientlightreading.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAmbientLightReading - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qambientlightsensor.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qambientlightsensor.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qambientlightsensor.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qambientlightsensor.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAmbientLightSensor - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qambienttemperaturefilter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qambienttemperaturefilter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qambienttemperaturefilter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qambienttemperaturefilter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAmbientTemperatureFilter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qambienttemperaturereading.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qambienttemperaturereading.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qambienttemperaturereading.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qambienttemperaturereading.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAmbientTemperatureReading - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qambienttemperaturesensor.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qambienttemperaturesensor.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qambienttemperaturesensor.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qambienttemperaturesensor.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAmbientTemperatureSensor - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qanimationgroup.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qanimationgroup.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qanimationgroup.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qanimationgroup.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAnimationGroup - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qapplication.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qapplication.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qapplication.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qapplication.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QApplication - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qaudiobuffer.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qaudiobuffer.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qaudiobuffer.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qaudiobuffer.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAudioBuffer - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qaudiodecoder.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qaudiodecoder.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qaudiodecoder.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qaudiodecoder.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAudioDecoder - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qaudiodeviceinfo.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qaudiodeviceinfo.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qaudiodeviceinfo.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qaudiodeviceinfo.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAudioDeviceInfo - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qaudioencodersettings.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qaudioencodersettings.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qaudioencodersettings.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qaudioencodersettings.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAudioEncoderSettings - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qaudioformat.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qaudioformat.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qaudioformat.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qaudioformat.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAudioFormat - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qaudioinput.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qaudioinput.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qaudioinput.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qaudioinput.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAudioInput - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qaudiooutput.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qaudiooutput.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qaudiooutput.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qaudiooutput.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAudioOutput - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qaudioprobe.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qaudioprobe.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qaudioprobe.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qaudioprobe.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAudioProbe - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qaudiorecorder.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qaudiorecorder.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qaudiorecorder.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qaudiorecorder.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAudioRecorder - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qaudio.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qaudio.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qaudio.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qaudio.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAudio - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qauthenticator.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qauthenticator.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qauthenticator.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qauthenticator.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAuthenticator - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qaxbase.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qaxbase.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qaxbase.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qaxbase.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAxBase - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qaxobject.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qaxobject.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qaxobject.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qaxobject.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAxObject - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qaxwidget.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qaxwidget.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qaxwidget.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qaxwidget.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QAxWidget - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qbackingstore.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qbackingstore.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qbackingstore.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qbackingstore.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QBackingStore - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qbasictimer.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qbasictimer.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qbasictimer.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qbasictimer.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QBasicTimer - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qbitarray.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qbitarray.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qbitarray.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qbitarray.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QBitArray - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qbitmap.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qbitmap.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qbitmap.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qbitmap.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QBitmap - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qbluetoothaddress.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qbluetoothaddress.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qbluetoothaddress.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qbluetoothaddress.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QBluetoothAddress - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qbluetoothdevicediscoveryagent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qbluetoothdevicediscoveryagent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qbluetoothdevicediscoveryagent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qbluetoothdevicediscoveryagent.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QBluetoothDeviceDiscoveryAgent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qbluetoothdeviceinfo.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qbluetoothdeviceinfo.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qbluetoothdeviceinfo.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qbluetoothdeviceinfo.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QBluetoothDeviceInfo - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qbluetoothhostinfo.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qbluetoothhostinfo.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qbluetoothhostinfo.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qbluetoothhostinfo.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QBluetoothHostInfo - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qbluetoothlocaldevice.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qbluetoothlocaldevice.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qbluetoothlocaldevice.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qbluetoothlocaldevice.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QBluetoothLocalDevice - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qbluetoothserver.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qbluetoothserver.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qbluetoothserver.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qbluetoothserver.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QBluetoothServer - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qbluetoothservicediscoveryagent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qbluetoothservicediscoveryagent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qbluetoothservicediscoveryagent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qbluetoothservicediscoveryagent.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QBluetoothServiceDiscoveryAgent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qbluetoothserviceinfo.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qbluetoothserviceinfo.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qbluetoothserviceinfo.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qbluetoothserviceinfo.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QBluetoothServiceInfo - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qbluetoothsocket.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qbluetoothsocket.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qbluetoothsocket.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qbluetoothsocket.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QBluetoothSocket - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qbluetoothtransfermanager.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qbluetoothtransfermanager.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qbluetoothtransfermanager.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qbluetoothtransfermanager.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QBluetoothTransferManager - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qbluetoothtransferreply.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qbluetoothtransferreply.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qbluetoothtransferreply.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qbluetoothtransferreply.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QBluetoothTransferReply - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qbluetoothtransferrequest.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qbluetoothtransferrequest.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qbluetoothtransferrequest.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qbluetoothtransferrequest.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QBluetoothTransferRequest - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qbluetoothuuid.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qbluetoothuuid.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qbluetoothuuid.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qbluetoothuuid.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QBluetoothUuid - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qboxlayout.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qboxlayout.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qboxlayout.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qboxlayout.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QBoxLayout - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qbrush.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qbrush.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qbrush.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qbrush.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QBrush - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qbuffer.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qbuffer.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qbuffer.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qbuffer.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QBuffer - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qbuttongroup.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qbuttongroup.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qbuttongroup.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qbuttongroup.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QButtonGroup - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qbytearraymatcher.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qbytearraymatcher.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qbytearraymatcher.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qbytearraymatcher.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QByteArrayMatcher - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qbytearray.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qbytearray.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qbytearray.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qbytearray.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QByteArray - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcalendarwidget.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcalendarwidget.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcalendarwidget.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcalendarwidget.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QCalendarWidget - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcameraexposure.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcameraexposure.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcameraexposure.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcameraexposure.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QCameraExposure - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcamerafocus.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcamerafocus.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcamerafocus.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcamerafocus.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QCameraFocus - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcamerafocuszone.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcamerafocuszone.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcamerafocuszone.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcamerafocuszone.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QCameraFocusZone - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcameraimagecapture.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcameraimagecapture.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcameraimagecapture.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcameraimagecapture.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QCameraImageCapture - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcameraimageprocessing.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcameraimageprocessing.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcameraimageprocessing.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcameraimageprocessing.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QCameraImageProcessing - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcamera.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcamera.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcamera.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcamera.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QCamera - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcameraviewfinder.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcameraviewfinder.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcameraviewfinder.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcameraviewfinder.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QCameraViewFinder - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcheckbox.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcheckbox.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcheckbox.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcheckbox.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QCheckBox - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qchildevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qchildevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qchildevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qchildevent.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QChildEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qclipboard.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qclipboard.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qclipboard.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qclipboard.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QClipboard - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcloseevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcloseevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcloseevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcloseevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QCloseEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcollator.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcollator.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcollator.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcollator.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QCollator - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcollatorsortkey.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcollatorsortkey.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcollatorsortkey.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcollatorsortkey.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QCollatorSortKey - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcolordialog.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcolordialog.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcolordialog.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcolordialog.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QColorDialog - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcolor.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcolor.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcolor.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcolor.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QColor - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcolumnview.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcolumnview.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcolumnview.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcolumnview.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QColumnView - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcombobox.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcombobox.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcombobox.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcombobox.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QComboBox - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcommandlineoption.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcommandlineoption.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcommandlineoption.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcommandlineoption.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QCommandLineOption - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcommandlineparser.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcommandlineparser.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcommandlineparser.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcommandlineparser.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QCommandLineParser - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcommandlinkbutton.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcommandlinkbutton.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcommandlinkbutton.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcommandlinkbutton.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QCommandLinkButton - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcommonstyle.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcommonstyle.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcommonstyle.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcommonstyle.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QCommonStyle - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcompassfilter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcompassfilter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcompassfilter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcompassfilter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QCompassFilter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcompassreading.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcompassreading.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcompassreading.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcompassreading.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QCompassReading - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcompass.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcompass.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcompass.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcompass.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QCompass - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcompleter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcompleter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcompleter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcompleter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QCompleter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qconicalgradient.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qconicalgradient.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qconicalgradient.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qconicalgradient.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QConicalGradient - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcontextmenuevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcontextmenuevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcontextmenuevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcontextmenuevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QContextMenuEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcoreapplication.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcoreapplication.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcoreapplication.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcoreapplication.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QCoreApplication - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcryptographichash.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcryptographichash.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcryptographichash.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcryptographichash.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QCryptographicHash - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qcursor.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qcursor.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qcursor.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qcursor.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QCursor - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdatastream.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdatastream.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdatastream.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdatastream.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDataStream - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdatawidgetmapper.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdatawidgetmapper.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdatawidgetmapper.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdatawidgetmapper.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDataWidgetMapper - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdateedit.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdateedit.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdateedit.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdateedit.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDateEdit - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdate.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdate.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdate.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdate.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDate - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdatetimeedit.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdatetimeedit.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdatetimeedit.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdatetimeedit.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDateTimeEdit - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdatetime.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdatetime.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdatetime.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdatetime.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDateTime - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdbusabstractadaptor.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbusabstractadaptor.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdbusabstractadaptor.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbusabstractadaptor.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDBusAbstractAdaptor - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdbusabstractinterface.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbusabstractinterface.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdbusabstractinterface.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbusabstractinterface.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDBusAbstractInterface - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdbusargument.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbusargument.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdbusargument.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbusargument.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDBusArgument - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdbusconnectioninterface.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbusconnectioninterface.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdbusconnectioninterface.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbusconnectioninterface.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDBusConnectionInterface - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdbusconnection.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbusconnection.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdbusconnection.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbusconnection.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDBusConnection - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdbuserror.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbuserror.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdbuserror.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbuserror.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDBusError - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdbusinterface.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbusinterface.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdbusinterface.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbusinterface.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDBusInterface - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdbusmessage.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbusmessage.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdbusmessage.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbusmessage.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDBusMessage - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdbusobjectpath.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbusobjectpath.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdbusobjectpath.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbusobjectpath.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDBusObjectPath - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdbuspendingcall.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbuspendingcall.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdbuspendingcall.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbuspendingcall.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDBusPendingCall - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdbuspendingcallwatcher.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbuspendingcallwatcher.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdbuspendingcallwatcher.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbuspendingcallwatcher.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDBusPendingCallWatcher - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdbuspendingreply.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbuspendingreply.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdbuspendingreply.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbuspendingreply.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDBusPendingReply - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdbusreply.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbusreply.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdbusreply.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbusreply.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDBusReply - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdbus.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbus.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdbus.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbus.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDBus - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdbusservicewatcher.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbusservicewatcher.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdbusservicewatcher.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbusservicewatcher.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDBusServiceWatcher - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdbussignature.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbussignature.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdbussignature.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbussignature.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDBusSignature - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdbusunixfiledescriptor.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbusunixfiledescriptor.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdbusunixfiledescriptor.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbusunixfiledescriptor.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDBusUnixFileDescriptor - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdbusvariant.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbusvariant.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdbusvariant.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdbusvariant.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDBusVariant - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdesigneractioneditorinterface.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesigneractioneditorinterface.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdesigneractioneditorinterface.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesigneractioneditorinterface.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDesignerActionEditorInterface - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdesignercontainerextension.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesignercontainerextension.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdesignercontainerextension.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesignercontainerextension.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDesignerContainerExtension - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdesignercustomwidgetcollectioninterface.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesignercustomwidgetcollectioninterface.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdesignercustomwidgetcollectioninterface.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesignercustomwidgetcollectioninterface.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDesignerCustomWidgetCollectionInterface - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdesignercustomwidgetinterface.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesignercustomwidgetinterface.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdesignercustomwidgetinterface.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesignercustomwidgetinterface.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDesignerCustomWidgetInterface - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdesignerformeditorinterface.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesignerformeditorinterface.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdesignerformeditorinterface.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesignerformeditorinterface.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDesignerFormEditorInterface - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdesignerformwindowcursorinterface.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesignerformwindowcursorinterface.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdesignerformwindowcursorinterface.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesignerformwindowcursorinterface.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDesignerFormWindowCursorInterface - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdesignerformwindowinterface.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesignerformwindowinterface.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdesignerformwindowinterface.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesignerformwindowinterface.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDesignerFormWindowInterface - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdesignerformwindowmanagerinterface.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesignerformwindowmanagerinterface.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdesignerformwindowmanagerinterface.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesignerformwindowmanagerinterface.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDesignerFormWindowManagerInterface - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdesignermembersheetextension.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesignermembersheetextension.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdesignermembersheetextension.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesignermembersheetextension.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDesignerMemberSheetExtension - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdesignerobjectinspectorinterface.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesignerobjectinspectorinterface.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdesignerobjectinspectorinterface.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesignerobjectinspectorinterface.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDesignerObjectInspectorInterface - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdesignerpropertyeditorinterface.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesignerpropertyeditorinterface.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdesignerpropertyeditorinterface.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesignerpropertyeditorinterface.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDesignerPropertyEditorInterface - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdesignerpropertysheetextension.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesignerpropertysheetextension.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdesignerpropertysheetextension.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesignerpropertysheetextension.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDesignerPropertySheetExtension - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdesignertaskmenuextension.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesignertaskmenuextension.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdesignertaskmenuextension.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesignertaskmenuextension.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDesignerTaskMenuExtension - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdesignerwidgetboxinterface.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesignerwidgetboxinterface.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdesignerwidgetboxinterface.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesignerwidgetboxinterface.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDesignerWidgetBoxInterface - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdesktopservices.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesktopservices.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdesktopservices.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesktopservices.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDesktopServices - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdesktopwidget.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesktopwidget.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdesktopwidget.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdesktopwidget.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDesktopWidget - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdialogbuttonbox.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdialogbuttonbox.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdialogbuttonbox.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdialogbuttonbox.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDialogButtonBox - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdialog.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdialog.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdialog.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdialog.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDialog - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdial.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdial.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdial.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdial.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDial - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdiriterator.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdiriterator.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdiriterator.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdiriterator.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDirIterator - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdirmodel.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdirmodel.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdirmodel.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdirmodel.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDirModel - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdir.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdir.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdir.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdir.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDir - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdnsdomainnamerecord.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdnsdomainnamerecord.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdnsdomainnamerecord.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdnsdomainnamerecord.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDnsDomainNameRecord - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdnshostaddressrecord.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdnshostaddressrecord.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdnshostaddressrecord.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdnshostaddressrecord.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDnsHostAddressRecord - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdnslookup.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdnslookup.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdnslookup.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdnslookup.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDnsLookup - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdnsmailexchangerecord.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdnsmailexchangerecord.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdnsmailexchangerecord.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdnsmailexchangerecord.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDnsMailExchangeRecord - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdnsservicerecord.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdnsservicerecord.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdnsservicerecord.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdnsservicerecord.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDnsServiceRecord - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdnstextrecord.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdnstextrecord.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdnstextrecord.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdnstextrecord.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDnsTextRecord - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdockwidget.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdockwidget.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdockwidget.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdockwidget.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDockWidget - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdoublespinbox.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdoublespinbox.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdoublespinbox.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdoublespinbox.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDoubleSpinBox - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdoublevalidator.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdoublevalidator.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdoublevalidator.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdoublevalidator.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDoubleValidator - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdragenterevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdragenterevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdragenterevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdragenterevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDragEnterEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdragleaveevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdragleaveevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdragleaveevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdragleaveevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDragLeaveEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdragmoveevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdragmoveevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdragmoveevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdragmoveevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDragMoveEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdrag.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdrag.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdrag.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdrag.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDrag - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdropevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdropevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdropevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdropevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDropEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qdynamicpropertychangeevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qdynamicpropertychangeevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qdynamicpropertychangeevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qdynamicpropertychangeevent.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QDynamicPropertyChangeEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qeasingcurve.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qeasingcurve.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qeasingcurve.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qeasingcurve.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QEasingCurve - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qelapsedtimer.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qelapsedtimer.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qelapsedtimer.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qelapsedtimer.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QElapsedTimer - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qenterevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qenterevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qenterevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qenterevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QEnterEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qerrormessage.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qerrormessage.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qerrormessage.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qerrormessage.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QErrorMessage - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qeventlooplocker.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qeventlooplocker.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qeventlooplocker.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qeventlooplocker.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QEventLoopLocker - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qeventloop.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qeventloop.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qeventloop.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qeventloop.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QEventLoop - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qevent.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qeventtransition.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qeventtransition.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qeventtransition.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qeventtransition.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QEventTransition - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qexposeevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qexposeevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qexposeevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qexposeevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QExposeEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qextensionfactory.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qextensionfactory.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qextensionfactory.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qextensionfactory.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QExtensionFactory - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qextensionmanager.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qextensionmanager.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qextensionmanager.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qextensionmanager.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QExtensionManager - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qfiledevice.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qfiledevice.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qfiledevice.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qfiledevice.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QFileDevice - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qfiledialog.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qfiledialog.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qfiledialog.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qfiledialog.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QFileDialog - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qfileiconprovider.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qfileiconprovider.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qfileiconprovider.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qfileiconprovider.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QFileIconProvider - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qfileinfo.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qfileinfo.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qfileinfo.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qfileinfo.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QFileInfo - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qfileopenevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qfileopenevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qfileopenevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qfileopenevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QFileOpenEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qfile.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qfile.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qfile.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qfile.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QFile - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qfileselector.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qfileselector.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qfileselector.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qfileselector.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QFileSelector - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qfilesystemmodel.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qfilesystemmodel.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qfilesystemmodel.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qfilesystemmodel.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QFileSystemModel - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qfilesystemwatcher.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qfilesystemwatcher.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qfilesystemwatcher.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qfilesystemwatcher.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QFileSystemWatcher - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qfinalstate.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qfinalstate.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qfinalstate.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qfinalstate.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QFinalState - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qfocusevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qfocusevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qfocusevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qfocusevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QFocusEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qfocusframe.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qfocusframe.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qfocusframe.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qfocusframe.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QFocusFrame - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qfontcombobox.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qfontcombobox.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qfontcombobox.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qfontcombobox.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QFontComboBox - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qfontdatabase.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qfontdatabase.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qfontdatabase.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qfontdatabase.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QFontDatabase - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qfontdialog.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qfontdialog.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qfontdialog.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qfontdialog.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QFontDialog - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qfontinfo.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qfontinfo.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qfontinfo.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qfontinfo.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QFontInfo - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qfontmetricsf.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qfontmetricsf.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qfontmetricsf.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qfontmetricsf.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QFontMetricsF - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qfontmetrics.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qfontmetrics.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qfontmetrics.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qfontmetrics.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QFontMetrics - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qfont.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qfont.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qfont.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qfont.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QFont - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qformbuilder.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qformbuilder.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qformbuilder.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qformbuilder.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QFormBuilder - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qformlayout.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qformlayout.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qformlayout.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qformlayout.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QFormLayout - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qframe.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qframe.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qframe.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qframe.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QFrame - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgenericargument.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgenericargument.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgenericargument.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgenericargument.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGenericArgument - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgenericreturnargument.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgenericreturnargument.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgenericreturnargument.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgenericreturnargument.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGenericReturnArgument - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgeoaddress.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgeoaddress.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgeoaddress.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgeoaddress.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGeoAddress - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgeoareamonitorinfo.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgeoareamonitorinfo.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgeoareamonitorinfo.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgeoareamonitorinfo.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGeoAreaMonitorInfo - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgeoareamonitorsource.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgeoareamonitorsource.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgeoareamonitorsource.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgeoareamonitorsource.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGeoAreaMonitorSource - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgeocircle.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgeocircle.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgeocircle.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgeocircle.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGeoCircle - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgeocoordinate.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgeocoordinate.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgeocoordinate.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgeocoordinate.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGeoCoordinate - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgeolocation.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgeolocation.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgeolocation.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgeolocation.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGeoLocation - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgeopositioninfo.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgeopositioninfo.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgeopositioninfo.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgeopositioninfo.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGeoPositionInfo - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgeopositioninfosource.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgeopositioninfosource.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgeopositioninfosource.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgeopositioninfosource.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGeoPositionInfoSource - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgeorectangle.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgeorectangle.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgeorectangle.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgeorectangle.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGeoRectangle - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgeosatelliteinfo.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgeosatelliteinfo.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgeosatelliteinfo.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgeosatelliteinfo.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGeoSatelliteInfo - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgeosatelliteinfosource.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgeosatelliteinfosource.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgeosatelliteinfosource.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgeosatelliteinfosource.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGeoSatelliteInfoSource - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgeoshape.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgeoshape.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgeoshape.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgeoshape.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGeoShape - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgestureevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgestureevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgestureevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgestureevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGestureEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgesturerecognizer.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgesturerecognizer.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgesturerecognizer.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgesturerecognizer.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGestureRecognizer - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgesture.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgesture.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgesture.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgesture.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGesture - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qglcontext.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qglcontext.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qglcontext.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qglcontext.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGLContext - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qglformat.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qglformat.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qglformat.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qglformat.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGLFormat - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgl.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgl.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgl.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgl.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGL - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qglwidget.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qglwidget.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qglwidget.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qglwidget.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGLWidget - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qglyphrun.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qglyphrun.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qglyphrun.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qglyphrun.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGlyphRun - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgradient.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgradient.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgradient.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgradient.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGradient - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsanchorlayout.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsanchorlayout.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsanchorlayout.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsanchorlayout.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsAnchorLayout - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsanchor.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsanchor.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsanchor.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsanchor.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsAnchor - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsblureffect.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsblureffect.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsblureffect.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsblureffect.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsBlurEffect - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicscolorizeeffect.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicscolorizeeffect.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicscolorizeeffect.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicscolorizeeffect.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsColorizeEffect - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsdropshadoweffect.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsdropshadoweffect.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsdropshadoweffect.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsdropshadoweffect.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsDropShadowEffect - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicseffect.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicseffect.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicseffect.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicseffect.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsEffect - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsellipseitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsellipseitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsellipseitem.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsellipseitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsEllipseItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsgridlayout.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsgridlayout.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsgridlayout.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsgridlayout.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsGridLayout - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsitemgroup.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsitemgroup.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsitemgroup.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsitemgroup.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsItemGroup - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsitem.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicslayoutitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicslayoutitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicslayoutitem.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicslayoutitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsLayoutItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicslayout.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicslayout.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicslayout.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicslayout.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsLayout - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicslinearlayout.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicslinearlayout.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicslinearlayout.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicslinearlayout.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsLinearLayout - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicslineitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicslineitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicslineitem.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicslineitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsLineItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsobject.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsobject.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsobject.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsobject.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsObject - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsopacityeffect.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsopacityeffect.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsopacityeffect.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsopacityeffect.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsOpacityEffect - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicspathitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicspathitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicspathitem.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicspathitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsPathItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicspixmapitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicspixmapitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicspixmapitem.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicspixmapitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsPixmapItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicspolygonitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicspolygonitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicspolygonitem.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicspolygonitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsPolygonItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsproxywidget.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsproxywidget.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsproxywidget.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsproxywidget.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsProxyWidget - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsrectitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsrectitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsrectitem.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsrectitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsRectItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsrotation.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsrotation.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsrotation.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsrotation.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsRotation - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsscale.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsscale.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsscale.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsscale.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsScale - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsscenecontextmenuevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsscenecontextmenuevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsscenecontextmenuevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsscenecontextmenuevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsSceneContextMenuEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsscenedragdropevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsscenedragdropevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsscenedragdropevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsscenedragdropevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsSceneDragDropEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicssceneevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicssceneevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicssceneevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicssceneevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsSceneEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsscenehelpevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsscenehelpevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsscenehelpevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsscenehelpevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsSceneHelpEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsscenehoverevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsscenehoverevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsscenehoverevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsscenehoverevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsSceneHoverEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsscenemouseevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsscenemouseevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsscenemouseevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsscenemouseevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsSceneMouseEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsscenemoveevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsscenemoveevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsscenemoveevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsscenemoveevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsSceneMoveEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicssceneresizeevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicssceneresizeevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicssceneresizeevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicssceneresizeevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsSceneResizeEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsscene.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsscene.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsscene.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsscene.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsScene - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsscenewheelevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsscenewheelevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsscenewheelevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsscenewheelevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsSceneWheelEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicssimpletextitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicssimpletextitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicssimpletextitem.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicssimpletextitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsSimpleTextItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicssvgitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicssvgitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicssvgitem.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicssvgitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsSvgItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicstextitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicstextitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicstextitem.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicstextitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsTextItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicstransform.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicstransform.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicstransform.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicstransform.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsTransform - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsvideoitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsvideoitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsvideoitem.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsvideoitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsVideoItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsview.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsview.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicsview.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicsview.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsView - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicswebview.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicswebview.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicswebview.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicswebview.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsWebView - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicswidget.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicswidget.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgraphicswidget.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgraphicswidget.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGraphicsWidget - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgridlayout.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgridlayout.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgridlayout.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgridlayout.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGridLayout - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgroupbox.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgroupbox.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgroupbox.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgroupbox.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGroupBox - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qguiapplication.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qguiapplication.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qguiapplication.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qguiapplication.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGuiApplication - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgyroscopefilter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgyroscopefilter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgyroscopefilter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgyroscopefilter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGyroscopeFilter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgyroscopereading.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgyroscopereading.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgyroscopereading.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgyroscopereading.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGyroscopeReading - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qgyroscope.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qgyroscope.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qgyroscope.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qgyroscope.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QGyroscope - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qhboxlayout.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qhboxlayout.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qhboxlayout.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qhboxlayout.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QHBoxLayout - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qheaderview.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qheaderview.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qheaderview.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qheaderview.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QHeaderView - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qhelpcontentitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qhelpcontentitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qhelpcontentitem.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qhelpcontentitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QHelpContentItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qhelpcontentmodel.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qhelpcontentmodel.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qhelpcontentmodel.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qhelpcontentmodel.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QHelpContentModel - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qhelpcontentwidget.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qhelpcontentwidget.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qhelpcontentwidget.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qhelpcontentwidget.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QHelpContentWidget - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qhelpenginecore.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qhelpenginecore.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qhelpenginecore.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qhelpenginecore.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QHelpEngineCore - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qhelpengine.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qhelpengine.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qhelpengine.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qhelpengine.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QHelpEngine - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qhelpevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qhelpevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qhelpevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qhelpevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QHelpEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qhelpindexmodel.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qhelpindexmodel.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qhelpindexmodel.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qhelpindexmodel.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QHelpIndexModel - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qhelpindexwidget.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qhelpindexwidget.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qhelpindexwidget.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qhelpindexwidget.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QHelpIndexWidget - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qhelpsearchengine.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qhelpsearchengine.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qhelpsearchengine.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qhelpsearchengine.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QHelpSearchEngine - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qhelpsearchquery.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qhelpsearchquery.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qhelpsearchquery.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qhelpsearchquery.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QHelpSearchQuery - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qhelpsearchquerywidget.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qhelpsearchquerywidget.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qhelpsearchquerywidget.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qhelpsearchquerywidget.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QHelpSearchQueryWidget - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qhelpsearchresultwidget.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qhelpsearchresultwidget.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qhelpsearchresultwidget.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qhelpsearchresultwidget.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QHelpSearchResultWidget - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qhideevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qhideevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qhideevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qhideevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QHideEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qhistorystate.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qhistorystate.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qhistorystate.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qhistorystate.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QHistoryState - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qholsterfilter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qholsterfilter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qholsterfilter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qholsterfilter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QHolsterFilter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qholsterreading.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qholsterreading.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qholsterreading.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qholsterreading.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QHolsterReading - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qholstersensor.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qholstersensor.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qholstersensor.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qholstersensor.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QHolsterSensor - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qhostaddress.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qhostaddress.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qhostaddress.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qhostaddress.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QHostAddress - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qhostinfo.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qhostinfo.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qhostinfo.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qhostinfo.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QHostInfo - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qhoverevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qhoverevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qhoverevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qhoverevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QHoverEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qhttpmultipart.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qhttpmultipart.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qhttpmultipart.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qhttpmultipart.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QHttpMultiPart - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qhttppart.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qhttppart.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qhttppart.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qhttppart.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QHttpPart - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qicondragevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qicondragevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qicondragevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qicondragevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QIconDragEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qiconengine.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qiconengine.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qiconengine.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qiconengine.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QIconEngine - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qicon.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qicon.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qicon.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qicon.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QIcon - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qidentityproxymodel.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qidentityproxymodel.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qidentityproxymodel.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qidentityproxymodel.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QIdentityProxyModel - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qimageencodersettings.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qimageencodersettings.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qimageencodersettings.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qimageencodersettings.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QImageEncoderSettings - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qimageiohandler.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qimageiohandler.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qimageiohandler.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qimageiohandler.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QImageIOHandler - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qimagereader.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qimagereader.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qimagereader.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qimagereader.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QImageReader - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qimage.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qimage.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qimage.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qimage.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QImage - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qimagewriter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qimagewriter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qimagewriter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qimagewriter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QImageWriter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qinputdialog.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qinputdialog.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qinputdialog.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qinputdialog.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QInputDialog - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qinputevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qinputevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qinputevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qinputevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QInputEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qinputmethodevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qinputmethodevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qinputmethodevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qinputmethodevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QInputMethodEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qinputmethodqueryevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qinputmethodqueryevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qinputmethodqueryevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qinputmethodqueryevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QInputMethodQueryEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qinputmethod.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qinputmethod.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qinputmethod.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qinputmethod.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QInputMethod - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qintvalidator.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qintvalidator.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qintvalidator.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qintvalidator.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QIntValidator - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qiodevice.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qiodevice.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qiodevice.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qiodevice.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QIODevice - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qirproximityfilter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qirproximityfilter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qirproximityfilter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qirproximityfilter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QIRProximityFilter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qirproximityreading.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qirproximityreading.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qirproximityreading.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qirproximityreading.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QIRProximityReading - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qirproximitysensor.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qirproximitysensor.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qirproximitysensor.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qirproximitysensor.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QIRProximitySensor - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qitemdelegate.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qitemdelegate.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qitemdelegate.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qitemdelegate.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QItemDelegate - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qitemeditorcreatorbase.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qitemeditorcreatorbase.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qitemeditorcreatorbase.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qitemeditorcreatorbase.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QItemEditorCreatorBase - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qitemeditorfactory.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qitemeditorfactory.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qitemeditorfactory.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qitemeditorfactory.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QItemEditorFactory - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qitemselectionmodel.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qitemselectionmodel.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qitemselectionmodel.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qitemselectionmodel.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QItemSelectionModel - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qitemselectionrange.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qitemselectionrange.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qitemselectionrange.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qitemselectionrange.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QItemSelectionRange - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qitemselection.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qitemselection.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qitemselection.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qitemselection.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QItemSelection - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qjsengine.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qjsengine.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qjsengine.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qjsengine.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QJSEngine - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qjsvalueiterator.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qjsvalueiterator.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qjsvalueiterator.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qjsvalueiterator.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QJSValueIterator - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qjsvalue.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qjsvalue.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qjsvalue.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qjsvalue.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QJSValue - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qkeyevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qkeyevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qkeyevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qkeyevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QKeyEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qkeyeventtransition.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qkeyeventtransition.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qkeyeventtransition.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qkeyeventtransition.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QKeyEventTransition - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qkeysequenceedit.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qkeysequenceedit.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qkeysequenceedit.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qkeysequenceedit.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QKeySequenceEdit - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qkeysequence.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qkeysequence.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qkeysequence.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qkeysequence.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QKeySequence - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qlabel.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qlabel.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qlabel.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qlabel.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QLabel - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qlayoutitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qlayoutitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qlayoutitem.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qlayoutitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QLayoutItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qlayout.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qlayout.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qlayout.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qlayout.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QLayout - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qlcdnumber.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qlcdnumber.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qlcdnumber.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qlcdnumber.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QLCDNumber - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qlibraryinfo.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qlibraryinfo.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qlibraryinfo.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qlibraryinfo.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QLibraryInfo - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qlibrary.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qlibrary.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qlibrary.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qlibrary.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QLibrary - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qlightfilter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qlightfilter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qlightfilter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qlightfilter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QLightFilter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qlightreading.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qlightreading.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qlightreading.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qlightreading.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QLightReading - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qlightsensor.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qlightsensor.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qlightsensor.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qlightsensor.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QLightSensor - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qlineargradient.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qlineargradient.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qlineargradient.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qlineargradient.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QLinearGradient - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qlineedit.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qlineedit.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qlineedit.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qlineedit.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QLineEdit - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qlinef.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qlinef.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qlinef.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qlinef.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QLineF - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qline.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qline.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qline.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qline.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QLine - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qlistview.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qlistview.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qlistview.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qlistview.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QListView - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qlistwidgetitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qlistwidgetitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qlistwidgetitem.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qlistwidgetitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QListWidgetItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qlistwidget.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qlistwidget.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qlistwidget.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qlistwidget.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QListWidget - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qlocale.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qlocale.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qlocale.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qlocale.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QLocale - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qlocalserver.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qlocalserver.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qlocalserver.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qlocalserver.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QLocalServer - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qlocalsocket.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qlocalsocket.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qlocalsocket.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qlocalsocket.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QLocalSocket - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qlockfile.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qlockfile.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qlockfile.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qlockfile.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QLockFile - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmacpasteboardmime.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmacpasteboardmime.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmacpasteboardmime.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmacpasteboardmime.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMacPasteboardMime - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmagnetometerfilter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmagnetometerfilter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmagnetometerfilter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmagnetometerfilter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMagnetometerFilter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmagnetometerreading.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmagnetometerreading.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmagnetometerreading.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmagnetometerreading.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMagnetometerReading - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmagnetometer.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmagnetometer.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmagnetometer.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmagnetometer.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMagnetometer - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmainwindow.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmainwindow.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmainwindow.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmainwindow.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMainWindow - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmargins.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmargins.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmargins.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmargins.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMargins - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmatrix2x2.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmatrix2x2.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmatrix2x2.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmatrix2x2.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMatrix2x2 - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmatrix2x3.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmatrix2x3.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmatrix2x3.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmatrix2x3.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMatrix2x3 - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmatrix2x4.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmatrix2x4.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmatrix2x4.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmatrix2x4.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMatrix2x4 - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmatrix3x2.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmatrix3x2.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmatrix3x2.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmatrix3x2.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMatrix3x2 - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmatrix3x3.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmatrix3x3.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmatrix3x3.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmatrix3x3.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMatrix3x3 - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmatrix3x4.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmatrix3x4.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmatrix3x4.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmatrix3x4.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMatrix3x4 - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmatrix4x2.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmatrix4x2.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmatrix4x2.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmatrix4x2.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMatrix4x2 - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmatrix4x3.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmatrix4x3.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmatrix4x3.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmatrix4x3.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMatrix4x3 - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmatrix4x4.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmatrix4x4.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmatrix4x4.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmatrix4x4.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMatrix4x4 - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmdiarea.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmdiarea.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmdiarea.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmdiarea.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMdiArea - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmdisubwindow.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmdisubwindow.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmdisubwindow.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmdisubwindow.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMdiSubWindow - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmediabindableinterface.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmediabindableinterface.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmediabindableinterface.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmediabindableinterface.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMediaBindableInterface - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmediacontent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmediacontent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmediacontent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmediacontent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMediaContent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmediacontrol.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmediacontrol.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmediacontrol.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmediacontrol.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMediaControl - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmediametadata.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmediametadata.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmediametadata.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmediametadata.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMediaMetaData - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmediaobject.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmediaobject.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmediaobject.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmediaobject.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMediaObject - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmediaplayer.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmediaplayer.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmediaplayer.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmediaplayer.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMediaPlayer - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmediaplaylist.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmediaplaylist.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmediaplaylist.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmediaplaylist.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMediaPlaylist - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmediarecorder.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmediarecorder.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmediarecorder.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmediarecorder.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMediaRecorder - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmediaresource.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmediaresource.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmediaresource.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmediaresource.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMediaResource - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmediaservice.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmediaservice.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmediaservice.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmediaservice.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMediaService - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmediatimeinterval.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmediatimeinterval.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmediatimeinterval.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmediatimeinterval.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMediaTimeInterval - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmediatimerange.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmediatimerange.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmediatimerange.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmediatimerange.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMediaTimeRange - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmenubar.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmenubar.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmenubar.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmenubar.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMenuBar - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmenu.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmenu.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmenu.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmenu.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMenu - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmessageauthenticationcode.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmessageauthenticationcode.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmessageauthenticationcode.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmessageauthenticationcode.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMessageAuthenticationCode - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmessagebox.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmessagebox.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmessagebox.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmessagebox.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMessageBox - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmessagelogcontext.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmessagelogcontext.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmessagelogcontext.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmessagelogcontext.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMessageLogContext - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmessagelogger.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmessagelogger.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmessagelogger.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmessagelogger.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMessageLogger - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmetaclassinfo.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmetaclassinfo.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmetaclassinfo.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmetaclassinfo.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMetaClassInfo - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmetaenum.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmetaenum.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmetaenum.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmetaenum.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMetaEnum - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmetamethod.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmetamethod.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmetamethod.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmetamethod.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMetaMethod - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmetaobject.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmetaobject.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmetaobject.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmetaobject.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMetaObject - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmetaproperty.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmetaproperty.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmetaproperty.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmetaproperty.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMetaProperty - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmetatype.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmetatype.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmetatype.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmetatype.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMetaType - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmimedatabase.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmimedatabase.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmimedatabase.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmimedatabase.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMimeDatabase - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmimedata.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmimedata.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmimedata.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmimedata.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMimeData - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmimetype.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmimetype.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmimetype.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmimetype.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMimeType - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmodelindex.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmodelindex.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmodelindex.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmodelindex.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QModelIndex - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmouseevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmouseevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmouseevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmouseevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMouseEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmouseeventtransition.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmouseeventtransition.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmouseeventtransition.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmouseeventtransition.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMouseEventTransition - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmoveevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmoveevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmoveevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmoveevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMoveEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmovie.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmovie.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmovie.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmovie.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMovie - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmultimedia.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmultimedia.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmultimedia.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmultimedia.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMultimedia - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmutexlocker.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmutexlocker.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmutexlocker.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmutexlocker.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMutexLocker - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qmutex.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qmutex.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qmutex.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qmutex.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QMutex - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkaccessmanager.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkaccessmanager.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkaccessmanager.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkaccessmanager.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QNetworkAccessManager - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkaddressentry.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkaddressentry.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkaddressentry.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkaddressentry.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QNetworkAddressEntry - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkcachemetadata.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkcachemetadata.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkcachemetadata.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkcachemetadata.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QNetworkCacheMetaData - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkconfigurationmanager.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkconfigurationmanager.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkconfigurationmanager.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkconfigurationmanager.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QNetworkConfigurationManager - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkconfiguration.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkconfiguration.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkconfiguration.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkconfiguration.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QNetworkConfiguration - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkcookiejar.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkcookiejar.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkcookiejar.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkcookiejar.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QNetworkCookieJar - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkcookie.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkcookie.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkcookie.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkcookie.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QNetworkCookie - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkdiskcache.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkdiskcache.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkdiskcache.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkdiskcache.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QNetworkDiskCache - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkinterface.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkinterface.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkinterface.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkinterface.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QNetworkInterface - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkproxyfactory.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkproxyfactory.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkproxyfactory.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkproxyfactory.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QNetworkProxyFactory - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkproxyquery.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkproxyquery.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkproxyquery.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkproxyquery.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QNetworkProxyQuery - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkproxy.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkproxy.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkproxy.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkproxy.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QNetworkProxy - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkreply.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkreply.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkreply.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkreply.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QNetworkReply - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkrequest.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkrequest.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qnetworkrequest.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworkrequest.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QNetworkRequest - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qnetworksession.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworksession.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qnetworksession.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qnetworksession.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QNetworkSession - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qnmeapositioninfosource.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qnmeapositioninfosource.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qnmeapositioninfosource.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qnmeapositioninfosource.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QNmeaPositionInfoSource - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qobjectcleanuphandler.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qobjectcleanuphandler.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qobjectcleanuphandler.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qobjectcleanuphandler.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QObjectCleanupHandler - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qobject.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qobject.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qobject.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qobject.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QObject - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qoffscreensurface.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qoffscreensurface.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qoffscreensurface.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qoffscreensurface.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QOffscreenSurface - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qopenglbuffer.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qopenglbuffer.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qopenglbuffer.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qopenglbuffer.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QOpenGLBuffer - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qopenglcontextgroup.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qopenglcontextgroup.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qopenglcontextgroup.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qopenglcontextgroup.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QOpenGLContextGroup - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qopenglcontext.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qopenglcontext.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qopenglcontext.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qopenglcontext.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QOpenGLContext - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qopengldebuglogger.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qopengldebuglogger.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qopengldebuglogger.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qopengldebuglogger.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QOpenGLDebugLogger - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qopengldebugmessage.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qopengldebugmessage.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qopengldebugmessage.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qopengldebugmessage.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QOpenGLDebugMessage - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qopenglframebufferobjectformat.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qopenglframebufferobjectformat.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qopenglframebufferobjectformat.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qopenglframebufferobjectformat.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QOpenGLFramebufferObjectFormat - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qopenglframebufferobject.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qopenglframebufferobject.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qopenglframebufferobject.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qopenglframebufferobject.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QOpenGLFramebufferObject - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qopenglpaintdevice.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qopenglpaintdevice.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qopenglpaintdevice.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qopenglpaintdevice.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QOpenGLPaintDevice - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qopenglshaderprogram.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qopenglshaderprogram.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qopenglshaderprogram.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qopenglshaderprogram.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QOpenGLShaderProgram - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qopenglshader.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qopenglshader.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qopenglshader.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qopenglshader.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QOpenGLShader - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qopengltexture.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qopengltexture.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qopengltexture.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qopengltexture.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QOpenGLTexture - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qopengltimemonitor.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qopengltimemonitor.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qopengltimemonitor.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qopengltimemonitor.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QOpenGLTimeMonitor - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qopengltimerquery.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qopengltimerquery.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qopengltimerquery.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qopengltimerquery.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QOpenGLTimerQuery - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qopenglvertexarrayobject.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qopenglvertexarrayobject.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qopenglvertexarrayobject.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qopenglvertexarrayobject.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QOpenGLVertexArrayObject - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qorientationfilter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qorientationfilter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qorientationfilter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qorientationfilter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QOrientationFilter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qorientationreading.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qorientationreading.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qorientationreading.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qorientationreading.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QOrientationReading - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qorientationsensor.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qorientationsensor.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qorientationsensor.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qorientationsensor.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QOrientationSensor - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpagedpaintdevice.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpagedpaintdevice.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpagedpaintdevice.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpagedpaintdevice.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPagedPaintDevice - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpagesetupdialog.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpagesetupdialog.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpagesetupdialog.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpagesetupdialog.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPageSetupDialog - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpaintdevice.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpaintdevice.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpaintdevice.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpaintdevice.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPaintDevice - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpaintengine.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpaintengine.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpaintengine.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpaintengine.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPaintEngine - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpaintenginestate.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpaintenginestate.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpaintenginestate.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpaintenginestate.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPaintEngineState - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpainterpath.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpainterpath.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpainterpath.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpainterpath.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPainterPath - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpainterpathstroker.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpainterpathstroker.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpainterpathstroker.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpainterpathstroker.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPainterPathStroker - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpainter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpainter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpainter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpainter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPainter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpaintevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpaintevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpaintevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpaintevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPaintEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpalette.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpalette.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpalette.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpalette.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPalette - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpangesture.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpangesture.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpangesture.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpangesture.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPanGesture - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qparallelanimationgroup.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qparallelanimationgroup.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qparallelanimationgroup.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qparallelanimationgroup.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QParallelAnimationGroup - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpauseanimation.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpauseanimation.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpauseanimation.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpauseanimation.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPauseAnimation - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpdfwriter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpdfwriter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpdfwriter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpdfwriter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPdfWriter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpen.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpen.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpen.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpen.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPen - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpersistentmodelindex.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpersistentmodelindex.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpersistentmodelindex.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpersistentmodelindex.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPersistentModelIndex - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpictureio.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpictureio.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpictureio.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpictureio.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPictureIO - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpicture.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpicture.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpicture.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpicture.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPicture - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpinchgesture.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpinchgesture.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpinchgesture.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpinchgesture.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPinchGesture - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpixmapcache.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpixmapcache.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpixmapcache.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpixmapcache.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPixmapCache - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpixmap.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpixmap.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpixmap.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpixmap.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPixmap - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qplaintextdocumentlayout.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qplaintextdocumentlayout.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qplaintextdocumentlayout.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qplaintextdocumentlayout.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPlainTextDocumentLayout - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qplaintextedit.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qplaintextedit.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qplaintextedit.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qplaintextedit.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPlainTextEdit - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpluginloader.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpluginloader.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpluginloader.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpluginloader.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPluginLoader - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpointf.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpointf.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpointf.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpointf.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPointF - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpoint.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpoint.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpoint.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpoint.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPoint - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpolygonf.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpolygonf.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpolygonf.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpolygonf.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPolygonF - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpolygon.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpolygon.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpolygon.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpolygon.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPolygon - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpressurefilter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpressurefilter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpressurefilter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpressurefilter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPressureFilter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpressurereading.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpressurereading.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpressurereading.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpressurereading.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPressureReading - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpressuresensor.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpressuresensor.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpressuresensor.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpressuresensor.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPressureSensor - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qprintdialog.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qprintdialog.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qprintdialog.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qprintdialog.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPrintDialog - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qprintengine.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qprintengine.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qprintengine.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qprintengine.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPrintEngine - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qprinterinfo.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qprinterinfo.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qprinterinfo.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qprinterinfo.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPrinterInfo - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qprinter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qprinter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qprinter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qprinter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPrinter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qprintpreviewdialog.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qprintpreviewdialog.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qprintpreviewdialog.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qprintpreviewdialog.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPrintPreviewDialog - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qprintpreviewwidget.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qprintpreviewwidget.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qprintpreviewwidget.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qprintpreviewwidget.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPrintPreviewWidget - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qprocessenvironment.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qprocessenvironment.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qprocessenvironment.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qprocessenvironment.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QProcessEnvironment - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qprocess.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qprocess.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qprocess.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qprocess.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QProcess - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qprogressbar.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qprogressbar.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qprogressbar.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qprogressbar.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QProgressBar - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qprogressdialog.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qprogressdialog.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qprogressdialog.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qprogressdialog.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QProgressDialog - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpropertyanimation.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpropertyanimation.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpropertyanimation.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpropertyanimation.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPropertyAnimation - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qproximityfilter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qproximityfilter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qproximityfilter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qproximityfilter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QProximityFilter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qproximityreading.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qproximityreading.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qproximityreading.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qproximityreading.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QProximityReading - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qproximitysensor.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qproximitysensor.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qproximitysensor.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qproximitysensor.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QProximitySensor - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qpushbutton.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qpushbutton.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qpushbutton.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qpushbutton.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QPushButton - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qqmlabstracturlinterceptor.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlabstracturlinterceptor.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qqmlabstracturlinterceptor.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlabstracturlinterceptor.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQmlAbstractUrlInterceptor - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qqmlapplicationengine.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlapplicationengine.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qqmlapplicationengine.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlapplicationengine.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQmlApplicationEngine - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qqmlcomponent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlcomponent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qqmlcomponent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlcomponent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQmlComponent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qqmlcontext.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlcontext.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qqmlcontext.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlcontext.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQmlContext - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qqmlengine.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlengine.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qqmlengine.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlengine.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQmlEngine - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qqmlerror.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlerror.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qqmlerror.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlerror.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQmlError - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qqmlexpression.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlexpression.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qqmlexpression.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlexpression.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQmlExpression - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qqmlextensionplugin.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlextensionplugin.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qqmlextensionplugin.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlextensionplugin.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQmlExtensionPlugin - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qqmlfileselector.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlfileselector.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qqmlfileselector.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlfileselector.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQmlFileSelector - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qqmlimageproviderbase.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlimageproviderbase.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qqmlimageproviderbase.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlimageproviderbase.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQmlImageProviderBase - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qqmlincubatorcontrol.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlincubatorcontrol.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qqmlincubatorcontrol.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlincubatorcontrol.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQmlIncubatorControl - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qqmlincubator.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlincubator.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qqmlincubator.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlincubator.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQmlIncubator - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qqmllistproperty.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmllistproperty.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qqmllistproperty.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmllistproperty.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQmlListProperty - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qqmllistreference.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmllistreference.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qqmllistreference.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmllistreference.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQmlListReference - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qqmlnetworkaccessmanagerfactory.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlnetworkaccessmanagerfactory.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qqmlnetworkaccessmanagerfactory.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlnetworkaccessmanagerfactory.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQmlNetworkAccessManagerFactory - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qqmlparserstatus.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlparserstatus.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qqmlparserstatus.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlparserstatus.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQmlParserStatus - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qqmlpropertymap.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlpropertymap.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qqmlpropertymap.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlpropertymap.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQmlPropertyMap - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qqmlproperty.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlproperty.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qqmlproperty.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlproperty.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQmlProperty - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qqmlpropertyvaluesource.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlpropertyvaluesource.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qqmlpropertyvaluesource.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlpropertyvaluesource.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQmlPropertyValueSource - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qqmlscriptstring.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlscriptstring.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qqmlscriptstring.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qqmlscriptstring.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQmlScriptString - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qquaternion.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qquaternion.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qquaternion.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qquaternion.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQuaternion - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qquickframebufferobject.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qquickframebufferobject.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qquickframebufferobject.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qquickframebufferobject.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQuickFramebufferObject - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qquickimageprovider.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qquickimageprovider.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qquickimageprovider.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qquickimageprovider.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQuickImageProvider - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qquickitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qquickitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qquickitem.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qquickitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQuickItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qquickpainteditem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qquickpainteditem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qquickpainteditem.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qquickpainteditem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQuickPaintedItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qquicktextdocument.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qquicktextdocument.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qquicktextdocument.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qquicktextdocument.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQuickTextDocument - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qquicktexturefactory.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qquicktexturefactory.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qquicktexturefactory.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qquicktexturefactory.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQuickTextureFactory - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qquickview.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qquickview.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qquickview.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qquickview.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQuickView - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qquickwindow.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qquickwindow.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qquickwindow.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qquickwindow.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QQuickWindow - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qradialgradient.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qradialgradient.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qradialgradient.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qradialgradient.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QRadialGradient - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qradiobutton.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qradiobutton.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qradiobutton.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qradiobutton.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QRadioButton - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qradiodata.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qradiodata.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qradiodata.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qradiodata.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QRadioData - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qradiotuner.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qradiotuner.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qradiotuner.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qradiotuner.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QRadioTuner - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qrawfont.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qrawfont.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qrawfont.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qrawfont.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QRawFont - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qreadlocker.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qreadlocker.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qreadlocker.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qreadlocker.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QReadLocker - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qreadwritelock.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qreadwritelock.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qreadwritelock.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qreadwritelock.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QReadWriteLock - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qrectf.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qrectf.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qrectf.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qrectf.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QRectF - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qrect.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qrect.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qrect.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qrect.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QRect - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qregexp.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qregexp.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qregexp.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qregexp.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QRegExp - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qregexpvalidator.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qregexpvalidator.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qregexpvalidator.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qregexpvalidator.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QRegExpValidator - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qregion.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qregion.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qregion.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qregion.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QRegion - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qregularexpressionmatchiterator.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qregularexpressionmatchiterator.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qregularexpressionmatchiterator.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qregularexpressionmatchiterator.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QRegularExpressionMatchIterator - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qregularexpressionmatch.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qregularexpressionmatch.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qregularexpressionmatch.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qregularexpressionmatch.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QRegularExpressionMatch - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qregularexpression.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qregularexpression.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qregularexpression.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qregularexpression.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QRegularExpression - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qregularexpressionvalidator.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qregularexpressionvalidator.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qregularexpressionvalidator.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qregularexpressionvalidator.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QRegularExpressionValidator - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qresizeevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qresizeevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qresizeevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qresizeevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QResizeEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qresource.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qresource.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qresource.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qresource.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QResource - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qrotationfilter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qrotationfilter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qrotationfilter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qrotationfilter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QRotationFilter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qrotationreading.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qrotationreading.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qrotationreading.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qrotationreading.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QRotationReading - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qrotationsensor.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qrotationsensor.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qrotationsensor.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qrotationsensor.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QRotationSensor - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qrubberband.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qrubberband.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qrubberband.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qrubberband.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QRubberBand - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qrunnable.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qrunnable.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qrunnable.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qrunnable.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QRunnable - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsavefile.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsavefile.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsavefile.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsavefile.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSaveFile - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qscreen.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qscreen.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qscreen.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qscreen.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QScreen - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qscrollarea.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qscrollarea.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qscrollarea.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qscrollarea.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QScrollArea - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qscrollbar.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qscrollbar.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qscrollbar.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qscrollbar.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QScrollBar - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qscrollerproperties.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qscrollerproperties.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qscrollerproperties.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qscrollerproperties.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QScrollerProperties - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qscroller.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qscroller.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qscroller.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qscroller.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QScroller - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qscrollevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qscrollevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qscrollevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qscrollevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QScrollEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qscrollprepareevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qscrollprepareevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qscrollprepareevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qscrollprepareevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QScrollPrepareEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsemaphore.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsemaphore.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsemaphore.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsemaphore.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSemaphore - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsensorfilter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsensorfilter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsensorfilter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsensorfilter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSensorFilter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsensorreading.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsensorreading.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsensorreading.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsensorreading.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSensorReading - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsensor.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsensor.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsensor.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsensor.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSensor - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsequentialanimationgroup.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsequentialanimationgroup.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsequentialanimationgroup.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsequentialanimationgroup.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSequentialAnimationGroup - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qserialportinfo.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qserialportinfo.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qserialportinfo.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qserialportinfo.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSerialPortInfo - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qserialport.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qserialport.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qserialport.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qserialport.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSerialPort - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsessionmanager.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsessionmanager.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsessionmanager.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsessionmanager.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSessionManager - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsettings.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsettings.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsettings.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsettings.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSettings - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsgbasicgeometrynode.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgbasicgeometrynode.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsgbasicgeometrynode.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgbasicgeometrynode.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSGBasicGeometryNode - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsgclipnode.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgclipnode.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsgclipnode.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgclipnode.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSGClipNode - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsgdynamictexture.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgdynamictexture.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsgdynamictexture.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgdynamictexture.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSGDynamicTexture - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsgflatcolormaterial.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgflatcolormaterial.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsgflatcolormaterial.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgflatcolormaterial.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSGFlatColorMaterial - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsggeometrynode.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsggeometrynode.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsggeometrynode.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsggeometrynode.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSGGeometryNode - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsggeometry.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsggeometry.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsggeometry.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsggeometry.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSGGeometry - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsgmaterial.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgmaterial.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsgmaterial.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgmaterial.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSGMaterial - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsgmaterialshader.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgmaterialshader.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsgmaterialshader.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgmaterialshader.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSGMaterialShader - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsgmaterialtype.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgmaterialtype.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsgmaterialtype.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgmaterialtype.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSGMaterialType - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsgnode.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgnode.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsgnode.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgnode.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSGNode - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsgopacitynode.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgopacitynode.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsgopacitynode.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgopacitynode.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSGOpacityNode - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsgopaquetexturematerial.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgopaquetexturematerial.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsgopaquetexturematerial.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgopaquetexturematerial.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSGOpaqueTextureMaterial - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsgsimplerectnode.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgsimplerectnode.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsgsimplerectnode.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgsimplerectnode.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSGSimpleRectNode - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsgsimpletexturenode.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgsimpletexturenode.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsgsimpletexturenode.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgsimpletexturenode.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSGSimpleTextureNode - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsgtexturematerial.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgtexturematerial.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsgtexturematerial.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgtexturematerial.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSGTextureMaterial - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsgtextureprovider.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgtextureprovider.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsgtextureprovider.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgtextureprovider.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSGTextureProvider - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsgtexture.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgtexture.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsgtexture.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgtexture.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSGTexture - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsgtransformnode.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgtransformnode.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsgtransformnode.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgtransformnode.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSGTransformNode - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsgvertexcolormaterial.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgvertexcolormaterial.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsgvertexcolormaterial.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsgvertexcolormaterial.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSGVertexColorMaterial - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsharedmemory.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsharedmemory.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsharedmemory.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsharedmemory.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSharedMemory - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qshortcutevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qshortcutevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qshortcutevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qshortcutevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QShortcutEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qshortcut.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qshortcut.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qshortcut.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qshortcut.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QShortcut - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qshowevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qshowevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qshowevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qshowevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QShowEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsignalmapper.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsignalmapper.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsignalmapper.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsignalmapper.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSignalMapper - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsignalspy.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsignalspy.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsignalspy.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsignalspy.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSignalSpy - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsignaltransition.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsignaltransition.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsignaltransition.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsignaltransition.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSignalTransition - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsimplexmlnodemodel.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsimplexmlnodemodel.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsimplexmlnodemodel.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsimplexmlnodemodel.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSimpleXmlNodeModel - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsizef.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsizef.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsizef.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsizef.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSizeF - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsizegrip.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsizegrip.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsizegrip.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsizegrip.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSizeGrip - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsizepolicy.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsizepolicy.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsizepolicy.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsizepolicy.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSizePolicy - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsize.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsize.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsize.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsize.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSize - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qslider.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qslider.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qslider.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qslider.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSlider - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsocketnotifier.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsocketnotifier.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsocketnotifier.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsocketnotifier.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSocketNotifier - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsortfilterproxymodel.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsortfilterproxymodel.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsortfilterproxymodel.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsortfilterproxymodel.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSortFilterProxyModel - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsoundeffect.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsoundeffect.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsoundeffect.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsoundeffect.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSoundEffect - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsound.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsound.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsound.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsound.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSound - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsourcelocation.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsourcelocation.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsourcelocation.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsourcelocation.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSourceLocation - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qspaceritem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qspaceritem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qspaceritem.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qspaceritem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSpacerItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qspinbox.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qspinbox.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qspinbox.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qspinbox.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSpinBox - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsplashscreen.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsplashscreen.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsplashscreen.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsplashscreen.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSplashScreen - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsplitterhandle.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsplitterhandle.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsplitterhandle.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsplitterhandle.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSplitterHandle - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsplitter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsplitter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsplitter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsplitter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSplitter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsqldatabase.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqldatabase.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsqldatabase.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqldatabase.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSqlDatabase - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsqldrivercreatorbase.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqldrivercreatorbase.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsqldrivercreatorbase.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqldrivercreatorbase.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSqlDriverCreatorBase - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsqldriver.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqldriver.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsqldriver.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqldriver.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSqlDriver - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsqlerror.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqlerror.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsqlerror.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqlerror.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSqlError - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsqlfield.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqlfield.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsqlfield.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqlfield.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSqlField - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsqlindex.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqlindex.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsqlindex.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqlindex.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSqlIndex - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsqlquerymodel.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqlquerymodel.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsqlquerymodel.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqlquerymodel.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSqlQueryModel - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsqlquery.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqlquery.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsqlquery.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqlquery.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSqlQuery - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsqlrecord.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqlrecord.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsqlrecord.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqlrecord.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSqlRecord - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsqlrelationaldelegate.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqlrelationaldelegate.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsqlrelationaldelegate.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqlrelationaldelegate.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSqlRelationalDelegate - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsqlrelationaltablemodel.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqlrelationaltablemodel.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsqlrelationaltablemodel.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqlrelationaltablemodel.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSqlRelationalTableModel - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsqlrelation.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqlrelation.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsqlrelation.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqlrelation.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSqlRelation - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsqlresult.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqlresult.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsqlresult.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqlresult.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSqlResult - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsql.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsql.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsql.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsql.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSql - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsqltablemodel.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqltablemodel.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsqltablemodel.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsqltablemodel.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSqlTableModel - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsslcertificateextension.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsslcertificateextension.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsslcertificateextension.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsslcertificateextension.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSslCertificateExtension - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsslcertificate.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsslcertificate.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsslcertificate.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsslcertificate.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSslCertificate - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsslcipher.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsslcipher.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsslcipher.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsslcipher.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSslCipher - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsslconfiguration.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsslconfiguration.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsslconfiguration.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsslconfiguration.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSslConfiguration - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsslerror.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsslerror.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsslerror.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsslerror.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSslError - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsslkey.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsslkey.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsslkey.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsslkey.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSslKey - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qssl.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qssl.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qssl.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qssl.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSsl - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsslsocket.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsslsocket.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsslsocket.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsslsocket.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSslSocket - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstackedlayout.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstackedlayout.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstackedlayout.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstackedlayout.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStackedLayout - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstackedwidget.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstackedwidget.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstackedwidget.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstackedwidget.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStackedWidget - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstandarditemmodel.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstandarditemmodel.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstandarditemmodel.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstandarditemmodel.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStandardItemModel - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstandarditem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstandarditem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstandarditem.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstandarditem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStandardItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstandardpaths.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstandardpaths.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstandardpaths.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstandardpaths.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStandardPaths - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstatemachine.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstatemachine.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstatemachine.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstatemachine.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStateMachine - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstate.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstate.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstate.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstate.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QState - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstatictext.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstatictext.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstatictext.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstatictext.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStaticText - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstatusbar.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstatusbar.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstatusbar.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstatusbar.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStatusBar - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstatustipevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstatustipevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstatustipevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstatustipevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStatusTipEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstringlistmodel.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstringlistmodel.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstringlistmodel.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstringlistmodel.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStringListModel - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstyleditemdelegate.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleditemdelegate.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstyleditemdelegate.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleditemdelegate.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyledItemDelegate - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstylefactory.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstylefactory.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstylefactory.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstylefactory.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleFactory - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstylehintreturnmask.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstylehintreturnmask.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstylehintreturnmask.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstylehintreturnmask.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleHintReturnMask - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstylehintreturn.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstylehintreturn.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstylehintreturn.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstylehintreturn.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleHintReturn - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstylehintreturnvariant.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstylehintreturnvariant.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstylehintreturnvariant.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstylehintreturnvariant.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleHintReturnVariant - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstylehints.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstylehints.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstylehints.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstylehints.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleHints - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptionbutton.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptionbutton.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptionbutton.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptionbutton.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleOptionButton - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptioncombobox.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptioncombobox.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptioncombobox.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptioncombobox.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleOptionComboBox - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptioncomplex.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptioncomplex.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptioncomplex.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptioncomplex.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleOptionComplex - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptiondockwidget.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptiondockwidget.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptiondockwidget.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptiondockwidget.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleOptionDockWidget - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptionfocusrect.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptionfocusrect.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptionfocusrect.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptionfocusrect.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleOptionFocusRect - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptionframe.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptionframe.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptionframe.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptionframe.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleOptionFrame - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptiongraphicsitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptiongraphicsitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptiongraphicsitem.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptiongraphicsitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleOptionGraphicsItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptiongroupbox.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptiongroupbox.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptiongroupbox.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptiongroupbox.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleOptionGroupBox - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptionheader.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptionheader.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptionheader.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptionheader.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleOptionHeader - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptionmenuitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptionmenuitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptionmenuitem.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptionmenuitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleOptionMenuItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptionprogressbar.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptionprogressbar.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptionprogressbar.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptionprogressbar.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleOptionProgressBar - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoption.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoption.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoption.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoption.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleOption - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptionrubberband.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptionrubberband.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptionrubberband.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptionrubberband.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleOptionRubberBand - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptionsizegrip.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptionsizegrip.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptionsizegrip.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptionsizegrip.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleOptionSizeGrip - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptionslider.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptionslider.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptionslider.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptionslider.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleOptionSlider - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptionspinbox.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptionspinbox.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptionspinbox.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptionspinbox.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleOptionSpinBox - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptiontabbarbase.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptiontabbarbase.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptiontabbarbase.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptiontabbarbase.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleOptionTabBarBase - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptiontab.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptiontab.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptiontab.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptiontab.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleOptionTab - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptiontabwidgetframe.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptiontabwidgetframe.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptiontabwidgetframe.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptiontabwidgetframe.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleOptionTabWidgetFrame - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptiontitlebar.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptiontitlebar.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptiontitlebar.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptiontitlebar.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleOptionTitleBar - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptiontoolbar.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptiontoolbar.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptiontoolbar.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptiontoolbar.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleOptionToolBar - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptiontoolbox.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptiontoolbox.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptiontoolbox.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptiontoolbox.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleOptionToolBox - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptiontoolbutton.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptiontoolbutton.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptiontoolbutton.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptiontoolbutton.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleOptionToolButton - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptionviewitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptionviewitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstyleoptionviewitem.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyleoptionviewitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyleOptionViewItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstylepainter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstylepainter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstylepainter.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstylepainter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStylePainter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qstyle.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyle.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qstyle.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qstyle.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QStyle - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsurfaceformat.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsurfaceformat.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsurfaceformat.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsurfaceformat.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSurfaceFormat - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsurface.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsurface.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsurface.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsurface.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSurface - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsvggenerator.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsvggenerator.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsvggenerator.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsvggenerator.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSvgGenerator - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsvgrenderer.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsvgrenderer.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsvgrenderer.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsvgrenderer.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSvgRenderer - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsvgwidget.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsvgwidget.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsvgwidget.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsvgwidget.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSvgWidget - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qswipegesture.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qswipegesture.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qswipegesture.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qswipegesture.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSwipeGesture - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsyntaxhighlighter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsyntaxhighlighter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsyntaxhighlighter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsyntaxhighlighter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSyntaxHighlighter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsysinfo.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsysinfo.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsysinfo.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsysinfo.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSysInfo - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsystemsemaphore.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsystemsemaphore.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsystemsemaphore.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsystemsemaphore.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSystemSemaphore - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qsystemtrayicon.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qsystemtrayicon.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qsystemtrayicon.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qsystemtrayicon.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QSystemTrayIcon - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtabbar.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtabbar.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtabbar.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtabbar.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTabBar - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtabletevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtabletevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtabletevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtabletevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTabletEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtableview.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtableview.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtableview.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtableview.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTableView - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtablewidgetitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtablewidgetitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtablewidgetitem.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtablewidgetitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTableWidgetItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtablewidget.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtablewidget.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtablewidget.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtablewidget.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTableWidget - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtablewidgetselectionrange.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtablewidgetselectionrange.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtablewidgetselectionrange.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtablewidgetselectionrange.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTableWidgetSelectionRange - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtabwidget.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtabwidget.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtabwidget.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtabwidget.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTabWidget - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtapandholdgesture.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtapandholdgesture.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtapandholdgesture.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtapandholdgesture.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTapAndHoldGesture - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtapfilter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtapfilter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtapfilter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtapfilter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTapFilter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtapgesture.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtapgesture.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtapgesture.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtapgesture.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTapGesture - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtapreading.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtapreading.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtapreading.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtapreading.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTapReading - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtapsensor.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtapsensor.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtapsensor.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtapsensor.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTapSensor - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtcpserver.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtcpserver.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtcpserver.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtcpserver.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTcpServer - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtcpsocket.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtcpsocket.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtcpsocket.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtcpsocket.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTcpSocket - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtemporarydir.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtemporarydir.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtemporarydir.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtemporarydir.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTemporaryDir - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtemporaryfile.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtemporaryfile.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtemporaryfile.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtemporaryfile.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTemporaryFile - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtest.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtest.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtest.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtest.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTest - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextblockformat.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextblockformat.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextblockformat.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextblockformat.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextBlockFormat - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextblockgroup.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextblockgroup.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextblockgroup.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextblockgroup.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextBlockGroup - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextblock.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextblock.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextblock.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextblock.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextBlock - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextblockuserdata.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextblockuserdata.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextblockuserdata.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextblockuserdata.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextBlockUserData - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextboundaryfinder.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextboundaryfinder.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextboundaryfinder.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextboundaryfinder.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextBoundaryFinder - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextbrowser.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextbrowser.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextbrowser.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextbrowser.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextBrowser - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextcharformat.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextcharformat.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextcharformat.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextcharformat.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextCharFormat - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextcodec.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextcodec.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextcodec.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextcodec.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextCodec - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextcursor.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextcursor.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextcursor.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextcursor.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextCursor - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextdecoder.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextdecoder.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextdecoder.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextdecoder.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextDecoder - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextdocumentfragment.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextdocumentfragment.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextdocumentfragment.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextdocumentfragment.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextDocumentFragment - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextdocument.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextdocument.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextdocument.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextdocument.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextDocument - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextdocumentwriter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextdocumentwriter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextdocumentwriter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextdocumentwriter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextDocumentWriter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextedit.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextedit.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextedit.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextedit.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextEdit - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextencoder.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextencoder.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextencoder.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextencoder.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextEncoder - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextformat.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextformat.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextformat.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextformat.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextFormat - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextfragment.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextfragment.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextfragment.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextfragment.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextFragment - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextframeformat.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextframeformat.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextframeformat.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextframeformat.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextFrameFormat - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextframe.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextframe.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextframe.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextframe.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextFrame - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextimageformat.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextimageformat.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextimageformat.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextimageformat.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextImageFormat - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextinlineobject.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextinlineobject.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextinlineobject.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextinlineobject.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextInlineObject - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextitem.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextlayout.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextlayout.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextlayout.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextlayout.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextLayout - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextlength.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextlength.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextlength.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextlength.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextLength - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextline.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextline.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextline.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextline.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextLine - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextlistformat.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextlistformat.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextlistformat.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextlistformat.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextListFormat - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextlist.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextlist.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextlist.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextlist.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextList - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextobjectinterface.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextobjectinterface.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextobjectinterface.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextobjectinterface.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextObjectInterface - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextobject.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextobject.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextobject.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextobject.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextObject - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextoption.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextoption.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextoption.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextoption.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextOption - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextstreammanipulator.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextstreammanipulator.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextstreammanipulator.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextstreammanipulator.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextStreamManipulator - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtextstream.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextstream.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtextstream.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtextstream.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextStream - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtexttablecellformat.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtexttablecellformat.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtexttablecellformat.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtexttablecellformat.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextTableCellFormat - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtexttablecell.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtexttablecell.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtexttablecell.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtexttablecell.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextTableCell - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtexttableformat.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtexttableformat.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtexttableformat.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtexttableformat.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextTableFormat - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtexttable.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtexttable.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtexttable.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtexttable.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTextTable - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qthreadpool.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qthreadpool.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qthreadpool.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qthreadpool.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QThreadPool - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qthread.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qthread.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qthread.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qthread.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QThread - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtiltfilter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtiltfilter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtiltfilter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtiltfilter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTiltFilter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtiltreading.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtiltreading.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtiltreading.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtiltreading.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTiltReading - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtiltsensor.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtiltsensor.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtiltsensor.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtiltsensor.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTiltSensor - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtimeedit.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtimeedit.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtimeedit.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtimeedit.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTimeEdit - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtimeline.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtimeline.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtimeline.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtimeline.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTimeLine - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtimerevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtimerevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtimerevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtimerevent.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTimerEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtimer.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtimer.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtimer.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtimer.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTimer - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtime.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtime.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtime.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtime.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTime - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtimezone.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtimezone.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtimezone.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtimezone.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTimeZone - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtoolbar.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtoolbar.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtoolbar.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtoolbar.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QToolBar - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtoolbox.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtoolbox.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtoolbox.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtoolbox.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QToolBox - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtoolbutton.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtoolbutton.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtoolbutton.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtoolbutton.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QToolButton - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtooltip.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtooltip.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtooltip.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtooltip.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QToolTip - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtouchdevice.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtouchdevice.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtouchdevice.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtouchdevice.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTouchDevice - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtouchevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtouchevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtouchevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtouchevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTouchEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtransform.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtransform.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtransform.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtransform.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTransform - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtranslator.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtranslator.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtranslator.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtranslator.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTranslator - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtreeview.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtreeview.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtreeview.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtreeview.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTreeView - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtreewidgetitemiterator.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtreewidgetitemiterator.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtreewidgetitemiterator.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtreewidgetitemiterator.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTreeWidgetItemIterator - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtreewidgetitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtreewidgetitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtreewidgetitem.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtreewidgetitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTreeWidgetItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtreewidget.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtreewidget.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtreewidget.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtreewidget.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QTreeWidget - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qt.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qt.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qt.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qt.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: Qt - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qtwin.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qtwin.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qtwin.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qtwin.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QtWin - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qudpsocket.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qudpsocket.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qudpsocket.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qudpsocket.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QUdpSocket - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qundocommand.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qundocommand.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qundocommand.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qundocommand.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QUndoCommand - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qundogroup.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qundogroup.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qundogroup.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qundogroup.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QUndoGroup - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qundostack.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qundostack.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qundostack.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qundostack.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QUndoStack - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qundoview.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qundoview.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qundoview.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qundoview.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QUndoView - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qurlquery.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qurlquery.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qurlquery.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qurlquery.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QUrlQuery - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qurl.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qurl.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qurl.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qurl.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QUrl - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/quuid.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/quuid.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/quuid.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/quuid.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QUuid - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qvalidator.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qvalidator.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qvalidator.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qvalidator.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QValidator - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qvariantanimation.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qvariantanimation.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qvariantanimation.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qvariantanimation.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QVariantAnimation - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qvariant.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qvariant.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qvariant.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qvariant.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QVariant - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qvboxlayout.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qvboxlayout.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qvboxlayout.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qvboxlayout.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QVBoxLayout - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qvector2d.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qvector2d.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qvector2d.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qvector2d.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QVector2D - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qvector3d.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qvector3d.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qvector3d.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qvector3d.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QVector3D - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qvector4d.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qvector4d.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qvector4d.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qvector4d.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QVector4D - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qvideoencodersettings.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qvideoencodersettings.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qvideoencodersettings.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qvideoencodersettings.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QVideoEncoderSettings - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qvideoframe.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qvideoframe.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qvideoframe.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qvideoframe.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QVideoFrame - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qvideoprobe.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qvideoprobe.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qvideoprobe.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qvideoprobe.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QVideoProbe - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qvideosurfaceformat.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qvideosurfaceformat.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qvideosurfaceformat.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qvideosurfaceformat.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QVideoSurfaceFormat - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qvideowidget.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qvideowidget.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qvideowidget.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qvideowidget.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QVideoWidget - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwaitcondition.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwaitcondition.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwaitcondition.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwaitcondition.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWaitCondition - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwebdatabase.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebdatabase.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwebdatabase.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebdatabase.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWebDatabase - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwebelementcollection.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebelementcollection.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwebelementcollection.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebelementcollection.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWebElementCollection - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwebelement.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebelement.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwebelement.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebelement.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWebElement - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwebframe.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebframe.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwebframe.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebframe.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWebFrame - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwebhistoryinterface.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebhistoryinterface.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwebhistoryinterface.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebhistoryinterface.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWebHistoryInterface - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwebhistoryitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebhistoryitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwebhistoryitem.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebhistoryitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWebHistoryItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwebhistory.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebhistory.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwebhistory.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebhistory.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWebHistory - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwebhittestresult.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebhittestresult.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwebhittestresult.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebhittestresult.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWebHitTestResult - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwebinspector.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebinspector.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwebinspector.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebinspector.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWebInspector - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwebpage.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebpage.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwebpage.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebpage.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWebPage - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwebpluginfactory.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebpluginfactory.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwebpluginfactory.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebpluginfactory.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWebPluginFactory - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwebsecurityorigin.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebsecurityorigin.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwebsecurityorigin.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebsecurityorigin.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWebSecurityOrigin - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwebsettings.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebsettings.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwebsettings.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebsettings.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWebSettings - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwebview.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebview.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwebview.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwebview.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWebView - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwhatsthisclickedevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwhatsthisclickedevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwhatsthisclickedevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwhatsthisclickedevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWhatsThisClickedEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwhatsthis.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwhatsthis.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwhatsthis.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwhatsthis.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWhatsThis - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwheelevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwheelevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwheelevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwheelevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWheelEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwidgetaction.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwidgetaction.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwidgetaction.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwidgetaction.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWidgetAction - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwidgetitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwidgetitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwidgetitem.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwidgetitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWidgetItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwidget.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwidget.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwidget.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwidget.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWidget - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwindow.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwindow.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwindow.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwindow.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWindow - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwindowstatechangeevent.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwindowstatechangeevent.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwindowstatechangeevent.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwindowstatechangeevent.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWindowStateChangeEvent - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwinjumplistcategory.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwinjumplistcategory.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwinjumplistcategory.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwinjumplistcategory.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWinJumpListCategory - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwinjumplistitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwinjumplistitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwinjumplistitem.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwinjumplistitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWinJumpListItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwinjumplist.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwinjumplist.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwinjumplist.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwinjumplist.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWinJumpList - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwintaskbarbutton.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwintaskbarbutton.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwintaskbarbutton.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwintaskbarbutton.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWinTaskbarButton - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwintaskbarprogress.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwintaskbarprogress.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwintaskbarprogress.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwintaskbarprogress.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWinTaskbarProgress - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwinthumbnailtoolbar.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwinthumbnailtoolbar.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwinthumbnailtoolbar.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwinthumbnailtoolbar.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWinThumbnailToolBar - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwinthumbnailtoolbutton.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwinthumbnailtoolbutton.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwinthumbnailtoolbutton.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwinthumbnailtoolbutton.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWinThumbnailToolButton - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwizardpage.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwizardpage.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwizardpage.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwizardpage.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWizardPage - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwizard.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwizard.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwizard.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwizard.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWizard - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qwritelocker.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qwritelocker.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qwritelocker.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qwritelocker.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QWriteLocker - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qx11info.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qx11info.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qx11info.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qx11info.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QX11Info - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qxmlformatter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlformatter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qxmlformatter.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlformatter.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QXmlFormatter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qxmlitem.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlitem.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qxmlitem.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlitem.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QXmlItem - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qxmlnamepool.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlnamepool.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qxmlnamepool.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlnamepool.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QXmlNamePool - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qxmlname.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlname.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qxmlname.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlname.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QXmlName - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qxmlnodemodelindex.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlnodemodelindex.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qxmlnodemodelindex.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlnodemodelindex.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QXmlNodeModelIndex - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qxmlquery.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlquery.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qxmlquery.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlquery.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QXmlQuery - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qxmlresultitems.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlresultitems.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qxmlresultitems.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlresultitems.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QXmlResultItems - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qxmlschema.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlschema.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qxmlschema.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlschema.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QXmlSchema - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qxmlschemavalidator.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlschemavalidator.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qxmlschemavalidator.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlschemavalidator.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QXmlSchemaValidator - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qxmlserializer.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlserializer.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qxmlserializer.rst 2014-01-07 16:20:18.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlserializer.rst 2014-03-14 14:38:47.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QXmlSerializer - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qxmlstreamattribute.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlstreamattribute.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qxmlstreamattribute.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlstreamattribute.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QXmlStreamAttribute - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qxmlstreamattributes.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlstreamattributes.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qxmlstreamattributes.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlstreamattributes.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QXmlStreamAttributes - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qxmlstreamentitydeclaration.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlstreamentitydeclaration.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qxmlstreamentitydeclaration.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlstreamentitydeclaration.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QXmlStreamEntityDeclaration - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qxmlstreamentityresolver.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlstreamentityresolver.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qxmlstreamentityresolver.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlstreamentityresolver.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QXmlStreamEntityResolver - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qxmlstreamnamespacedeclaration.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlstreamnamespacedeclaration.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qxmlstreamnamespacedeclaration.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlstreamnamespacedeclaration.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QXmlStreamNamespaceDeclaration - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qxmlstreamnotationdeclaration.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlstreamnotationdeclaration.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qxmlstreamnotationdeclaration.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlstreamnotationdeclaration.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QXmlStreamNotationDeclaration - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qxmlstreamreader.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlstreamreader.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qxmlstreamreader.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlstreamreader.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QXmlStreamReader - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api/qxmlstreamwriter.rst pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlstreamwriter.rst --- pyqt5-5.2+dfsg/doc/sphinx/api/qxmlstreamwriter.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api/qxmlstreamwriter.rst 2014-03-14 14:38:46.000000000 +0000 @@ -5,4 +5,4 @@ .. class:: QXmlStreamWriter - `C++ documentation `_ + `C++ documentation `_ diff -Nru pyqt5-5.2+dfsg/doc/sphinx/api_metadata.cfg pyqt5-5.2.1+dfsg/doc/sphinx/api_metadata.cfg --- pyqt5-5.2+dfsg/doc/sphinx/api_metadata.cfg 2013-12-24 18:58:43.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/api_metadata.cfg 2014-01-10 12:50:57.000000000 +0000 @@ -1,9 +1,9 @@ -# Python Module Python Class C++ Module -# ------------- ------------ ---------- +# Python Module Python Class +# ------------- ------------ -QAxContainer QAxBase activeqt -QAxContainer QAxObject activeqt -QAxContainer QAxWidget activeqt +QAxContainer QAxBase +QAxContainer QAxObject +QAxContainer QAxWidget QtBluetooth QBluetoothAddress QtBluetooth QBluetoothDeviceDiscoveryAgent @@ -617,8 +617,8 @@ QtSvg QSvgRenderer QtSvg QSvgWidget -QtTest QSignalSpy qttestlib -QtTest QTest qttestlib +QtTest QSignalSpy +QtTest QTest QtWebKit QWebDatabase QtWebKit QWebElement @@ -630,12 +630,12 @@ QtWebKit QWebSecurityOrigin QtWebKit QWebSettings -QtWebKitWidgets QGraphicsWebView qtwebkit -QtWebKitWidgets QWebFrame qtwebkit -QtWebKitWidgets QWebHitTestResult qtwebkit -QtWebKitWidgets QWebInspector qtwebkit -QtWebKitWidgets QWebPage qtwebkit -QtWebKitWidgets QWebView qtwebkit +QtWebKitWidgets QGraphicsWebView +QtWebKitWidgets QWebFrame +QtWebKitWidgets QWebHitTestResult +QtWebKitWidgets QWebInspector +QtWebKitWidgets QWebPage +QtWebKitWidgets QWebView QtWidgets QAbstractButton QtWidgets QAbstractGraphicsShapeItem diff -Nru pyqt5-5.2+dfsg/doc/sphinx/conf.py pyqt5-5.2.1+dfsg/doc/sphinx/conf.py --- pyqt5-5.2+dfsg/doc/sphinx/conf.py 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/conf.py 2014-03-14 14:38:46.000000000 +0000 @@ -45,9 +45,9 @@ # built documents. # # The short X.Y version. -version = '5.2' +version = '5.2.1' # The full version, including alpha/beta/rc tags. -release = '5.2' +release = '5.2.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -103,7 +103,7 @@ # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". -html_title = "PyQt 5.2 Reference Guide" +html_title = "PyQt 5.2.1 Reference Guide" # A shorter title for the navigation bar. Default is the same as html_title. #html_short_title = None diff -Nru pyqt5-5.2+dfsg/doc/sphinx/introduction.rst pyqt5-5.2.1+dfsg/doc/sphinx/introduction.rst --- pyqt5-5.2+dfsg/doc/sphinx/introduction.rst 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/introduction.rst 2014-03-14 14:38:46.000000000 +0000 @@ -1,7 +1,7 @@ Introduction ============ -This is the reference guide for PyQt5 5.2. PyQt5 is a set of +This is the reference guide for PyQt5 5.2.1. PyQt5 is a set of `Python `__ bindings for v5 of the Qt application framework from `Digia `__. diff -Nru pyqt5-5.2+dfsg/doc/sphinx/pyqt4_differences.rst pyqt5-5.2.1+dfsg/doc/sphinx/pyqt4_differences.rst --- pyqt5-5.2+dfsg/doc/sphinx/pyqt4_differences.rst 2013-08-21 15:46:50.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/pyqt4_differences.rst 2014-03-04 16:59:41.000000000 +0000 @@ -55,6 +55,21 @@ all connections to the :class:`~PyQt5.QtCore.QObject` instance. +New-style Signals and Slots +--------------------------- + +Qt implements signals with an optional argument as two separate signals, one +with the argument and one without it. PyQt4 exposed both of these allowing you +to connect to each of them. However, when emitting the signal, you had to use +the signal appropriate to the number of arguments being emitted. + +PyQt5 exposes only the signal where all arguments are specified. However it +allows any optional arguments to be omitted when emitting the signal. + +Unlike PyQt4, PyQt5 supports the definition of properties, signals and slots in +classes not sub-classed from :class:`~PyQt5.QtCore.QObject` (i.e. in mixins). + + ``QtDeclarative``, ``QtScript`` and ``QtScriptTools`` Modules ------------------------------------------------------------- diff -Nru pyqt5-5.2+dfsg/doc/sphinx/signals_slots.rst pyqt5-5.2.1+dfsg/doc/sphinx/signals_slots.rst --- pyqt5-5.2+dfsg/doc/sphinx/signals_slots.rst 2013-08-21 15:46:50.000000000 +0000 +++ pyqt5-5.2.1+dfsg/doc/sphinx/signals_slots.rst 2014-03-04 17:02:37.000000000 +0000 @@ -30,11 +30,11 @@ Unbound and Bound Signals ------------------------- -A signal (specifically an unbound signal) is an attribute of a class that is a -sub-class of :class:`~PyQt5.QtCore.QObject`. When a signal is referenced as an -attribute of an instance of the class then PyQt5 automatically binds the -instance to the signal in order to create a *bound signal*. This is the same -mechanism that Python itself uses to create bound methods from class functions. +A signal (specifically an unbound signal) is a class attribute. When a signal +is referenced as an attribute of an instance of the class then PyQt5 +automatically binds the instance to the signal in order to create a *bound +signal*. This is the same mechanism that Python itself uses to create bound +methods from class functions. A bound signal has ``connect()``, ``disconnect()`` and ``emit()`` methods that implement the associated functionality. It also has a ``signal`` attribute @@ -105,9 +105,6 @@ # the QString argument then this code will run under Python v2 and v3. valueChanged = pyqtSignal([int], ['QString']) -New signals should only be defined in sub-classes of -:class:`~PyQt5.QtCore.QObject`. - New signals defined in this way will be automatically added to the class's :class:`~PyQt5.QtCore.QMetaObject`. This means that they will appear in Qt Designer and can be introspected using the :class:`~PyQt5.QtCore.QMetaObject` @@ -319,17 +316,6 @@ Therefore, when the user changes the value, your slot will be called twice - once with an integer argument, and once with a string argument. -This also happens with signals that take optional arguments. Qt implements -this using multiple signals. For example, -:class:`~PyQt5.QtWidgets.QAbstractButton` has the following signal:: - - void clicked(bool checked = false); - -Qt implements this as the following:: - - void clicked(); - void clicked(bool checked); - The :func:`~PyQt5.QtCore.pyqtSlot` decorator can be used to specify which of the signals should be connected to the slot. @@ -353,10 +339,3 @@ def spinbox_qstring_value(self, s): # s will be a Python string object (or a QString if they are enabled). pass - -The following shows an example using a button when you are not interested in -the optional argument:: - - @pyqtSlot() - def on_button_clicked(self): - pass Binary files /tmp/Vc0rVN_mYx/pyqt5-5.2+dfsg/examples/qtdemo/__pycache__/colors.cpython-34.pyc and /tmp/CRqqVOpEQl/pyqt5-5.2.1+dfsg/examples/qtdemo/__pycache__/colors.cpython-34.pyc differ Binary files /tmp/Vc0rVN_mYx/pyqt5-5.2+dfsg/examples/qtdemo/__pycache__/demoitemanimation.cpython-34.pyc and /tmp/CRqqVOpEQl/pyqt5-5.2.1+dfsg/examples/qtdemo/__pycache__/demoitemanimation.cpython-34.pyc differ Binary files /tmp/Vc0rVN_mYx/pyqt5-5.2+dfsg/examples/qtdemo/__pycache__/demoitem.cpython-34.pyc and /tmp/CRqqVOpEQl/pyqt5-5.2.1+dfsg/examples/qtdemo/__pycache__/demoitem.cpython-34.pyc differ Binary files /tmp/Vc0rVN_mYx/pyqt5-5.2+dfsg/examples/qtdemo/__pycache__/demotextitem.cpython-34.pyc and /tmp/CRqqVOpEQl/pyqt5-5.2.1+dfsg/examples/qtdemo/__pycache__/demotextitem.cpython-34.pyc differ Binary files /tmp/Vc0rVN_mYx/pyqt5-5.2+dfsg/examples/qtdemo/__pycache__/examplecontent.cpython-34.pyc and /tmp/CRqqVOpEQl/pyqt5-5.2.1+dfsg/examples/qtdemo/__pycache__/examplecontent.cpython-34.pyc differ Binary files /tmp/Vc0rVN_mYx/pyqt5-5.2+dfsg/examples/qtdemo/__pycache__/guidecircle.cpython-34.pyc and /tmp/CRqqVOpEQl/pyqt5-5.2.1+dfsg/examples/qtdemo/__pycache__/guidecircle.cpython-34.pyc differ Binary files /tmp/Vc0rVN_mYx/pyqt5-5.2+dfsg/examples/qtdemo/__pycache__/guide.cpython-34.pyc and /tmp/CRqqVOpEQl/pyqt5-5.2.1+dfsg/examples/qtdemo/__pycache__/guide.cpython-34.pyc differ Binary files /tmp/Vc0rVN_mYx/pyqt5-5.2+dfsg/examples/qtdemo/__pycache__/guideline.cpython-34.pyc and /tmp/CRqqVOpEQl/pyqt5-5.2.1+dfsg/examples/qtdemo/__pycache__/guideline.cpython-34.pyc differ Binary files /tmp/Vc0rVN_mYx/pyqt5-5.2+dfsg/examples/qtdemo/__pycache__/headingitem.cpython-34.pyc and /tmp/CRqqVOpEQl/pyqt5-5.2.1+dfsg/examples/qtdemo/__pycache__/headingitem.cpython-34.pyc differ Binary files /tmp/Vc0rVN_mYx/pyqt5-5.2+dfsg/examples/qtdemo/__pycache__/imageitem.cpython-34.pyc and /tmp/CRqqVOpEQl/pyqt5-5.2.1+dfsg/examples/qtdemo/__pycache__/imageitem.cpython-34.pyc differ Binary files /tmp/Vc0rVN_mYx/pyqt5-5.2+dfsg/examples/qtdemo/__pycache__/itemcircleanimation.cpython-34.pyc and /tmp/CRqqVOpEQl/pyqt5-5.2.1+dfsg/examples/qtdemo/__pycache__/itemcircleanimation.cpython-34.pyc differ Binary files /tmp/Vc0rVN_mYx/pyqt5-5.2+dfsg/examples/qtdemo/__pycache__/letteritem.cpython-34.pyc and /tmp/CRqqVOpEQl/pyqt5-5.2.1+dfsg/examples/qtdemo/__pycache__/letteritem.cpython-34.pyc differ Binary files /tmp/Vc0rVN_mYx/pyqt5-5.2+dfsg/examples/qtdemo/__pycache__/mainwindow.cpython-34.pyc and /tmp/CRqqVOpEQl/pyqt5-5.2.1+dfsg/examples/qtdemo/__pycache__/mainwindow.cpython-34.pyc differ Binary files /tmp/Vc0rVN_mYx/pyqt5-5.2+dfsg/examples/qtdemo/__pycache__/menucontent.cpython-34.pyc and /tmp/CRqqVOpEQl/pyqt5-5.2.1+dfsg/examples/qtdemo/__pycache__/menucontent.cpython-34.pyc differ Binary files /tmp/Vc0rVN_mYx/pyqt5-5.2+dfsg/examples/qtdemo/__pycache__/menumanager.cpython-34.pyc and /tmp/CRqqVOpEQl/pyqt5-5.2.1+dfsg/examples/qtdemo/__pycache__/menumanager.cpython-34.pyc differ Binary files /tmp/Vc0rVN_mYx/pyqt5-5.2+dfsg/examples/qtdemo/__pycache__/qtdemo_rc.cpython-34.pyc and /tmp/CRqqVOpEQl/pyqt5-5.2.1+dfsg/examples/qtdemo/__pycache__/qtdemo_rc.cpython-34.pyc differ Binary files /tmp/Vc0rVN_mYx/pyqt5-5.2+dfsg/examples/qtdemo/__pycache__/scanitem.cpython-34.pyc and /tmp/CRqqVOpEQl/pyqt5-5.2.1+dfsg/examples/qtdemo/__pycache__/scanitem.cpython-34.pyc differ Binary files /tmp/Vc0rVN_mYx/pyqt5-5.2+dfsg/examples/qtdemo/__pycache__/score.cpython-34.pyc and /tmp/CRqqVOpEQl/pyqt5-5.2.1+dfsg/examples/qtdemo/__pycache__/score.cpython-34.pyc differ Binary files /tmp/Vc0rVN_mYx/pyqt5-5.2+dfsg/examples/qtdemo/__pycache__/textbutton.cpython-34.pyc and /tmp/CRqqVOpEQl/pyqt5-5.2.1+dfsg/examples/qtdemo/__pycache__/textbutton.cpython-34.pyc differ Binary files /tmp/Vc0rVN_mYx/pyqt5-5.2+dfsg/examples/quick/canvas/__pycache__/canvas_rc.cpython-34.pyc and /tmp/CRqqVOpEQl/pyqt5-5.2.1+dfsg/examples/quick/canvas/__pycache__/canvas_rc.cpython-34.pyc differ Binary files /tmp/Vc0rVN_mYx/pyqt5-5.2+dfsg/examples/quick/shared/__pycache__/shared_rc.cpython-34.pyc and /tmp/CRqqVOpEQl/pyqt5-5.2.1+dfsg/examples/quick/shared/__pycache__/shared_rc.cpython-34.pyc differ diff -Nru pyqt5-5.2+dfsg/examples/widgets/tetrix.py pyqt5-5.2.1+dfsg/examples/widgets/tetrix.py --- pyqt5-5.2+dfsg/examples/widgets/tetrix.py 2014-01-07 16:20:17.000000000 +0000 +++ pyqt5-5.2.1+dfsg/examples/widgets/tetrix.py 2014-03-14 14:38:46.000000000 +0000 @@ -3,7 +3,7 @@ ############################################################################# ## -## Copyright (C) 2013 Riverbank Computing Limited. +## Copyright (C) 2014 Riverbank Computing Limited. ## Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). ## All rights reserved. ## @@ -42,6 +42,7 @@ ############################################################################# +import copy import random from PyQt5.QtCore import pyqtSignal, QBasicTimer, QSize, Qt @@ -329,7 +330,7 @@ self.update() def newPiece(self): - self.curPiece = self.nextPiece + self.curPiece = copy.deepcopy(self.nextPiece) self.nextPiece.setRandomShape() self.showNextPiece() self.curX = TetrixBoard.BoardWidth // 2 + 1 @@ -341,7 +342,7 @@ self.isStarted = False def showNextPiece(self): - if self.nextPieceLabel is not None: + if self.nextPieceLabel is None: return dx = self.nextPiece.maxX() - self.nextPiece.minX() + 1 @@ -349,7 +350,7 @@ pixmap = QPixmap(dx * self.squareWidth(), dy * self.squareHeight()) painter = QPainter(pixmap) - painter.fillRect(pixmap.rect(), self.nextPieceLabel.palette().background()) + painter.fillRect(pixmap.rect(), self.nextPieceLabel.palette().window()) for i in range(4): x = self.nextPiece.x(i) - self.nextPiece.minX() @@ -357,6 +358,8 @@ self.drawSquare(painter, x * self.squareWidth(), y * self.squareHeight(), self.nextPiece.shape()) + painter.end() + self.nextPieceLabel.setPixmap(pixmap) def tryMove(self, newPiece, newX, newY): @@ -406,7 +409,7 @@ ) def __init__(self): - self.coords = [[0,0] for _ in range(4)] + self.coords = [[0, 0] for _ in range(4)] self.pieceShape = NoShape self.setShape(NoShape) diff -Nru pyqt5-5.2+dfsg/NEWS pyqt5-5.2.1+dfsg/NEWS --- pyqt5-5.2+dfsg/NEWS 2014-01-07 16:19:54.000000000 +0000 +++ pyqt5-5.2.1+dfsg/NEWS 2014-03-14 14:38:18.000000000 +0000 @@ -1,3 +1,12 @@ +v5.2.1 14th March 2014 + - Added full support for Qt v5.2.1. + - Properties, signals and slots can now be defined in mixins (i.e. + non-QObject classes). + - Added support for creating QSGGeometry.AttributeSet instances. + - A fundamental value may now be given whenever a QJSValue is expected. + - Building PyQt5 as static libraries now works. + - Added support for building without OpenGL. + v5.2 8th January 2014 - Added full support for Qt v5.2. - Added the QtBluetooth module. diff -Nru pyqt5-5.2+dfsg/pylupdate/fetchtr.cpp pyqt5-5.2.1+dfsg/pylupdate/fetchtr.cpp --- pyqt5-5.2+dfsg/pylupdate/fetchtr.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/pylupdate/fetchtr.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -13,22 +13,42 @@ /**************************************************************************** ** -** Copyright (C) 1992-2005 Trolltech AS. All rights reserved. +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/legal ** -** This file is part of the Qt Linguist of the Qt Toolkit. +** This file is part of the tools applications of the Qt Toolkit. ** -** Licensees holding a valid Qt License Agreement may use this file in -** accordance with the rights, responsibilities and obligations -** contained therein. Please consult your licensing agreement or -** contact sales@trolltech.com if any conditions of this licensing -** agreement are not clear to you. -** -** Further information about Qt licensing is available at: -** http://www.trolltech.com/products/qt/licensing.html or by -** contacting info@trolltech.com. +** $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 Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/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 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. ** -** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE -** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +** +** $QT_END_LICENSE$ ** ****************************************************************************/ diff -Nru pyqt5-5.2+dfsg/pylupdate/main.cpp pyqt5-5.2.1+dfsg/pylupdate/main.cpp --- pyqt5-5.2+dfsg/pylupdate/main.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/pylupdate/main.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -13,22 +13,42 @@ /**************************************************************************** ** -** Copyright (C) 1992-2005 Trolltech AS. All rights reserved. +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/legal ** -** This file is part of the Qt Linguist of the Qt Toolkit. +** This file is part of the tools applications of the Qt Toolkit. ** -** Licensees holding a valid Qt License Agreement may use this file in -** accordance with the rights, responsibilities and obligations -** contained therein. Please consult your licensing agreement or -** contact sales@trolltech.com if any conditions of this licensing -** agreement are not clear to you. -** -** Further information about Qt licensing is available at: -** http://www.trolltech.com/products/qt/licensing.html or by -** contacting info@trolltech.com. +** $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 Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/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 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. ** -** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE -** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +** +** $QT_END_LICENSE$ ** ****************************************************************************/ diff -Nru pyqt5-5.2+dfsg/pylupdate/merge.cpp pyqt5-5.2.1+dfsg/pylupdate/merge.cpp --- pyqt5-5.2+dfsg/pylupdate/merge.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/pylupdate/merge.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -1,23 +1,41 @@ /**************************************************************************** ** -** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved. +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/legal ** -** This file is part of the Qt Linguist of the Qt Toolkit. +** This file is part of the tools applications of the Qt Toolkit. ** -** This file may be used under the terms of the GNU General Public -** License version 2.0 as published by the Free Software Foundation -** and appearing in the file LICENSE.GPL included in the packaging of -** this file. Please review the following information to ensure GNU -** General Public Licensing requirements will be met: -** http://www.trolltech.com/products/qt/opensource.html -** -** If you are unsure which license is appropriate for your use, please -** review the following information: -** http://www.trolltech.com/products/qt/licensing.html or contact the -** sales department at sales@trolltech.com. +** $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 Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/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 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. ** -** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE -** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +** +** $QT_END_LICENSE$ ** ****************************************************************************/ diff -Nru pyqt5-5.2+dfsg/pylupdate/metatranslator.cpp pyqt5-5.2.1+dfsg/pylupdate/metatranslator.cpp --- pyqt5-5.2+dfsg/pylupdate/metatranslator.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/pylupdate/metatranslator.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -13,22 +13,42 @@ /**************************************************************************** ** -** Copyright (C) 1992-2005 Trolltech AS. All rights reserved. +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/legal ** -** This file is part of the Qt Linguist of the Qt Toolkit. +** This file is part of the tools applications of the Qt Toolkit. ** -** Licensees holding a valid Qt License Agreement may use this file in -** accordance with the rights, responsibilities and obligations -** contained therein. Please consult your licensing agreement or -** contact sales@trolltech.com if any conditions of this licensing -** agreement are not clear to you. -** -** Further information about Qt licensing is available at: -** http://www.trolltech.com/products/qt/licensing.html or by -** contacting info@trolltech.com. +** $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 Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/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 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. ** -** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE -** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +** +** $QT_END_LICENSE$ ** ****************************************************************************/ diff -Nru pyqt5-5.2+dfsg/pylupdate/metatranslator.h pyqt5-5.2.1+dfsg/pylupdate/metatranslator.h --- pyqt5-5.2+dfsg/pylupdate/metatranslator.h 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/pylupdate/metatranslator.h 2014-03-14 14:38:45.000000000 +0000 @@ -13,22 +13,42 @@ /**************************************************************************** ** -** Copyright (C) 1992-2005 Trolltech AS. All rights reserved. +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/legal ** -** This file is part of the Qt Linguist of the Qt Toolkit. +** This file is part of the tools applications of the Qt Toolkit. ** -** Licensees holding a valid Qt License Agreement may use this file in -** accordance with the rights, responsibilities and obligations -** contained therein. Please consult your licensing agreement or -** contact sales@trolltech.com if any conditions of this licensing -** agreement are not clear to you. -** -** Further information about Qt licensing is available at: -** http://www.trolltech.com/products/qt/licensing.html or by -** contacting info@trolltech.com. +** $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 Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/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 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. ** -** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE -** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +** +** $QT_END_LICENSE$ ** ****************************************************************************/ diff -Nru pyqt5-5.2+dfsg/pylupdate/numberh.cpp pyqt5-5.2.1+dfsg/pylupdate/numberh.cpp --- pyqt5-5.2+dfsg/pylupdate/numberh.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/pylupdate/numberh.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -1,23 +1,41 @@ /**************************************************************************** ** -** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved. +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/legal ** -** This file is part of the Qt Linguist of the Qt Toolkit. +** This file is part of the tools applications of the Qt Toolkit. ** -** This file may be used under the terms of the GNU General Public -** License version 2.0 as published by the Free Software Foundation -** and appearing in the file LICENSE.GPL included in the packaging of -** this file. Please review the following information to ensure GNU -** General Public Licensing requirements will be met: -** http://www.trolltech.com/products/qt/opensource.html -** -** If you are unsure which license is appropriate for your use, please -** review the following information: -** http://www.trolltech.com/products/qt/licensing.html or contact the -** sales department at sales@trolltech.com. +** $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 Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/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 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. ** -** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE -** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +** +** $QT_END_LICENSE$ ** ****************************************************************************/ diff -Nru pyqt5-5.2+dfsg/pylupdate/proparser.cpp pyqt5-5.2.1+dfsg/pylupdate/proparser.cpp --- pyqt5-5.2+dfsg/pylupdate/proparser.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/pylupdate/proparser.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -1,21 +1,41 @@ /**************************************************************************** ** -** Copyright (C) 1992-2005 Trolltech AS. All rights reserved. +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/legal ** -** This file is part of the Qt Linguist of the Qt Toolkit. +** This file is part of the tools applications of the Qt Toolkit. ** -** Licensees holding a valid Qt License Agreement may use this file in -** accordance with the rights, responsibilities and obligations -** contained therein. Please consult your licensing agreement or -** contact sales@trolltech.com if any conditions of this licensing -** agreement are not clear to you. -** -** Further information about Qt licensing is available at: -** http://www.trolltech.com/products/qt/licensing.html or by -** contacting info@trolltech.com. +** $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 Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/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 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. ** -** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE -** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +** +** $QT_END_LICENSE$ ** ****************************************************************************/ diff -Nru pyqt5-5.2+dfsg/pylupdate/proparser.h pyqt5-5.2.1+dfsg/pylupdate/proparser.h --- pyqt5-5.2+dfsg/pylupdate/proparser.h 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/pylupdate/proparser.h 2014-03-14 14:38:45.000000000 +0000 @@ -1,21 +1,41 @@ /**************************************************************************** ** -** Copyright (C) 1992-2005 Trolltech AS. All rights reserved. +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/legal ** -** This file is part of the Qt Linguist of the Qt Toolkit. +** This file is part of the tools applications of the Qt Toolkit. ** -** Licensees holding a valid Qt License Agreement may use this file in -** accordance with the rights, responsibilities and obligations -** contained therein. Please consult your licensing agreement or -** contact sales@trolltech.com if any conditions of this licensing -** agreement are not clear to you. -** -** Further information about Qt licensing is available at: -** http://www.trolltech.com/products/qt/licensing.html or by -** contacting info@trolltech.com. +** $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 Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/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 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. ** -** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE -** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +** +** $QT_END_LICENSE$ ** ****************************************************************************/ diff -Nru pyqt5-5.2+dfsg/pylupdate/sametexth.cpp pyqt5-5.2.1+dfsg/pylupdate/sametexth.cpp --- pyqt5-5.2+dfsg/pylupdate/sametexth.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/pylupdate/sametexth.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -1,23 +1,41 @@ /**************************************************************************** ** -** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved. +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/legal ** -** This file is part of the Qt Linguist of the Qt Toolkit. +** This file is part of the tools applications of the Qt Toolkit. ** -** This file may be used under the terms of the GNU General Public -** License version 2.0 as published by the Free Software Foundation -** and appearing in the file LICENSE.GPL included in the packaging of -** this file. Please review the following information to ensure GNU -** General Public Licensing requirements will be met: -** http://www.trolltech.com/products/qt/opensource.html -** -** If you are unsure which license is appropriate for your use, please -** review the following information: -** http://www.trolltech.com/products/qt/licensing.html or contact the -** sales department at sales@trolltech.com. +** $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 Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/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 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. ** -** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE -** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +** +** $QT_END_LICENSE$ ** ****************************************************************************/ diff -Nru pyqt5-5.2+dfsg/pylupdate/simtexth.cpp pyqt5-5.2.1+dfsg/pylupdate/simtexth.cpp --- pyqt5-5.2+dfsg/pylupdate/simtexth.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/pylupdate/simtexth.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -1,23 +1,41 @@ /**************************************************************************** ** -** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved. +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/legal ** -** This file is part of the Qt Linguist of the Qt Toolkit. +** This file is part of the tools applications of the Qt Toolkit. ** -** This file may be used under the terms of the GNU General Public -** License version 2.0 as published by the Free Software Foundation -** and appearing in the file LICENSE.GPL included in the packaging of -** this file. Please review the following information to ensure GNU -** General Public Licensing requirements will be met: -** http://www.trolltech.com/products/qt/opensource.html -** -** If you are unsure which license is appropriate for your use, please -** review the following information: -** http://www.trolltech.com/products/qt/licensing.html or contact the -** sales department at sales@trolltech.com. +** $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 Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/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 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. ** -** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE -** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +** +** $QT_END_LICENSE$ ** ****************************************************************************/ diff -Nru pyqt5-5.2+dfsg/pylupdate/simtexth.h pyqt5-5.2.1+dfsg/pylupdate/simtexth.h --- pyqt5-5.2+dfsg/pylupdate/simtexth.h 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/pylupdate/simtexth.h 2014-03-14 14:38:45.000000000 +0000 @@ -1,23 +1,41 @@ /**************************************************************************** ** -** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved. +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/legal ** -** This file is part of the Qt Linguist of the Qt Toolkit. +** This file is part of the tools applications of the Qt Toolkit. ** -** This file may be used under the terms of the GNU General Public -** License version 2.0 as published by the Free Software Foundation -** and appearing in the file LICENSE.GPL included in the packaging of -** this file. Please review the following information to ensure GNU -** General Public Licensing requirements will be met: -** http://www.trolltech.com/products/qt/opensource.html -** -** If you are unsure which license is appropriate for your use, please -** review the following information: -** http://www.trolltech.com/products/qt/licensing.html or contact the -** sales department at sales@trolltech.com. +** $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 Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/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 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. ** -** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE -** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +** +** $QT_END_LICENSE$ ** ****************************************************************************/ diff -Nru pyqt5-5.2+dfsg/pylupdate/translator.cpp pyqt5-5.2.1+dfsg/pylupdate/translator.cpp --- pyqt5-5.2+dfsg/pylupdate/translator.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/pylupdate/translator.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -13,22 +13,42 @@ /**************************************************************************** ** -** Copyright (C) 1992-2005 Trolltech AS. All rights reserved. +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/legal ** -** This file is part of the Qt Linguist of the Qt Toolkit. +** This file is part of the tools applications of the Qt Toolkit. ** -** Licensees holding a valid Qt License Agreement may use this file in -** accordance with the rights, responsibilities and obligations -** contained therein. Please consult your licensing agreement or -** contact sales@trolltech.com if any conditions of this licensing -** agreement are not clear to you. -** -** Further information about Qt licensing is available at: -** http://www.trolltech.com/products/qt/licensing.html or by -** contacting info@trolltech.com. +** $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 Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/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 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. ** -** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE -** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +** +** $QT_END_LICENSE$ ** ****************************************************************************/ diff -Nru pyqt5-5.2+dfsg/pylupdate/translator.h pyqt5-5.2.1+dfsg/pylupdate/translator.h --- pyqt5-5.2+dfsg/pylupdate/translator.h 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/pylupdate/translator.h 2014-03-14 14:38:45.000000000 +0000 @@ -13,22 +13,42 @@ /**************************************************************************** ** -** Copyright (C) 1992-2005 Trolltech AS. All rights reserved. +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/legal ** -** This file is part of the Qt Linguist of the Qt Toolkit. +** This file is part of the tools applications of the Qt Toolkit. ** -** Licensees holding a valid Qt License Agreement may use this file in -** accordance with the rights, responsibilities and obligations -** contained therein. Please consult your licensing agreement or -** contact sales@trolltech.com if any conditions of this licensing -** agreement are not clear to you. -** -** Further information about Qt licensing is available at: -** http://www.trolltech.com/products/qt/licensing.html or by -** contacting info@trolltech.com. +** $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 Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/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 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. ** -** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE -** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +** +** $QT_END_LICENSE$ ** ****************************************************************************/ diff -Nru pyqt5-5.2+dfsg/PyQt5-Qt5.nsi pyqt5-5.2.1+dfsg/PyQt5-Qt5.nsi --- pyqt5-5.2+dfsg/PyQt5-Qt5.nsi 2014-01-07 16:19:54.000000000 +0000 +++ pyqt5-5.2.1+dfsg/PyQt5-Qt5.nsi 2014-03-14 14:38:18.000000000 +0000 @@ -19,7 +19,7 @@ # These will change with different releases. -!define PYQT_VERSION "5.2" +!define PYQT_VERSION "5.2.1" !define PYQT_INSTALLER "" #!define PYQT_INSTALLER "-2" !define PYQT_LICENSE "GPL" @@ -27,7 +27,7 @@ !define PYQT_PYTHON_MAJOR "3" !define PYQT_PYTHON_MINOR "3" !define PYQT_ARCH "x64" -!define PYQT_QT_VERS "5.2.0" +!define PYQT_QT_VERS "5.2.1" !define PYQT_QT_DOC_VERS "5.2" # These are all derived from the above. diff -Nru pyqt5-5.2+dfsg/pyrcc/main.cpp pyqt5-5.2.1+dfsg/pyrcc/main.cpp --- pyqt5-5.2+dfsg/pyrcc/main.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/pyrcc/main.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -1,21 +1,41 @@ /**************************************************************************** ** -** Copyright (C) 1992-2005 Trolltech AS. All rights reserved. +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/legal ** ** This file is part of the tools applications of the Qt Toolkit. ** -** Licensees holding a valid Qt License Agreement may use this file in -** accordance with the rights, responsibilities and obligations -** contained therein. Please consult your licensing agreement or -** contact sales@trolltech.com if any conditions of this licensing -** agreement are not clear to you. -** -** Further information about Qt licensing is available at: -** http://www.trolltech.com/products/qt/licensing.html or by -** contacting info@trolltech.com. +** $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 Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/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 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. ** -** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE -** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +** +** $QT_END_LICENSE$ ** ****************************************************************************/ diff -Nru pyqt5-5.2+dfsg/pyrcc/rcc.cpp pyqt5-5.2.1+dfsg/pyrcc/rcc.cpp --- pyqt5-5.2+dfsg/pyrcc/rcc.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/pyrcc/rcc.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -1,22 +1,42 @@ /**************************************************************************** ** ** Copyright (c) 2014 Riverbank Computing Limited. All rights reserved. -** Copyright (C) 1992-2005 Trolltech AS. All rights reserved. +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/legal ** ** This file is part of the tools applications of the Qt Toolkit. ** -** Licensees holding a valid Qt License Agreement may use this file in -** accordance with the rights, responsibilities and obligations -** contained therein. Please consult your licensing agreement or -** contact sales@trolltech.com if any conditions of this licensing -** agreement are not clear to you. -** -** Further information about Qt licensing is available at: -** http://www.trolltech.com/products/qt/licensing.html or by -** contacting info@trolltech.com. +** $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 Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/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 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. ** -** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE -** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +** +** $QT_END_LICENSE$ ** ****************************************************************************/ diff -Nru pyqt5-5.2+dfsg/pyrcc/rcc.h pyqt5-5.2.1+dfsg/pyrcc/rcc.h --- pyqt5-5.2+dfsg/pyrcc/rcc.h 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/pyrcc/rcc.h 2014-03-14 14:38:45.000000000 +0000 @@ -1,21 +1,41 @@ /**************************************************************************** ** -** Copyright (C) 1992-2005 Trolltech AS. All rights reserved. +** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). +** Contact: http://www.qt-project.org/legal ** ** This file is part of the tools applications of the Qt Toolkit. ** -** Licensees holding a valid Qt License Agreement may use this file in -** accordance with the rights, responsibilities and obligations -** contained therein. Please consult your licensing agreement or -** contact sales@trolltech.com if any conditions of this licensing -** agreement are not clear to you. -** -** Further information about Qt licensing is available at: -** http://www.trolltech.com/products/qt/licensing.html or by -** contacting info@trolltech.com. +** $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 Digia. For licensing terms and +** conditions see http://qt.digia.com/licensing. For further information +** use the contact form at http://qt.digia.com/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 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Digia gives you certain additional +** rights. These rights are described in the Digia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3.0 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU General Public License version 3.0 requirements will be +** met: http://www.gnu.org/copyleft/gpl.html. ** -** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE -** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +** +** $QT_END_LICENSE$ ** ****************************************************************************/ diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_api.h pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_api.h --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_api.h 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_api.h 2014-03-14 14:38:45.000000000 +0000 @@ -1,5 +1,4 @@ -// This defines the API provided by this library. It must not be explicitly -// included by the library itself. +// This defines the API provided by this library. // // Copyright (c) 2014 Riverbank Computing Limited // @@ -51,11 +50,6 @@ PyObject *qpycore_PyObject_FromQString(const QString &qstr); QString qpycore_PyObject_AsQString(PyObject *obj); -// Support for converting between PyObject and QStringList. -PyObject *qpycore_PyObject_FromQStringList(const QStringList &qstrlst); -QStringList qpycore_PySequence_AsQStringList(PyObject *obj); -int qpycore_PySequence_Check_QStringList(PyObject *obj); - // Support for converting between PyObject and QVariant. PyObject *qpycore_PyObject_FromQVariant(const QVariant &qvar); QVariant qpycore_PyObject_AsQVariant(PyObject *obj, int *is_err); @@ -77,9 +71,6 @@ // Support for QObject.staticMetaObject %GetCode. PyObject *qpycore_qobject_staticmetaobject(PyObject *type_obj); -// Support for emitting signals. -bool qpycore_qobject_emit(QObject *qtx, const char *sig, PyObject *sigargs); - // Support for QMetaObject.connectSlotsByName(). void qpycore_qmetaobject_connectslotsbyname(QObject *qobj, PyObject *qobj_wrapper); diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_chimera.cpp pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_chimera.cpp --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_chimera.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_chimera.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -27,9 +27,10 @@ #include "qpycore_chimera.h" #include "qpycore_misc.h" #include "qpycore_pyqtpyobject.h" -#include "qpycore_sip.h" #include "qpycore_types.h" +#include "sipAPIQtCore.h" + // The registered int types. QList Chimera::_registered_int_types; @@ -498,8 +499,8 @@ // Set the internal flag flag. void Chimera::set_flag() { - if (qpycore_is_pyqt4_class(_type)) - _is_flag = ((pyqt4ClassTypeDef *)_type)->qt4_flags & 0x01; + if (qpycore_is_pyqt_class(_type)) + _is_flag = ((pyqt5ClassTypeDef *)_type)->flags & 0x01; } diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_chimera.h pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_chimera.h --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_chimera.h 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_chimera.h 2014-03-14 14:38:45.000000000 +0000 @@ -30,7 +30,7 @@ #include #include -#include "qpycore_sip.h" +#include "sipAPIQtCore.h" // This describes a type that can be understood by Python and C++ (specifically diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_chimera_storage.cpp pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_chimera_storage.cpp --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_chimera_storage.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_chimera_storage.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -24,7 +24,8 @@ #include "qpycore_chimera.h" #include "qpycore_pyqtpyobject.h" -#include "qpycore_sip.h" + +#include "sipAPIQtCore.h" // Create a new storage instance containing a converted Python object. @@ -112,5 +113,8 @@ return sipConvertFromType(_ptr_storage, _parsed_type->typeDef(), 0); } + if (_parsed_type->typeDef() == sipType_QVariant) + return Chimera::toAnyPyObject(_value_storage); + return _parsed_type->toPyObject(_value_storage); } diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_classinfo.cpp pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_classinfo.cpp --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_classinfo.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_classinfo.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -23,6 +23,7 @@ #include +#include "qpycore_api.h" #include "qpycore_classinfo.h" diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_decorators.cpp pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_decorators.cpp --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_decorators.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_decorators.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -22,9 +22,10 @@ #include +#include "qpycore_api.h" #include "qpycore_chimera.h" #include "qpycore_misc.h" -#include "qpycore_sip.h" +#include "qpycore_objectified_strings.h" // Forward declarations. @@ -106,7 +107,7 @@ if (sig.startsWith('(')) { // Get the function's name. - PyObject *nobj = PyObject_GetAttr(f, qpycore_name_attr_name); + PyObject *nobj = PyObject_GetAttr(f, qpycore_dunder_name); if (!nobj) return 0; @@ -124,7 +125,7 @@ } // See if the function has already been decorated. - PyObject *decorations = PyObject_GetAttr(f, qpycore_signature_attr_name); + PyObject *decorations = PyObject_GetAttr(f, qpycore_dunder_pyqtsignature); int rc; if (decorations) @@ -146,7 +147,7 @@ PyList_SET_ITEM(decorations, 0, self); // Save the new decoration. - rc = PyObject_SetAttr(f, qpycore_signature_attr_name, decorations); + rc = PyObject_SetAttr(f, qpycore_dunder_pyqtsignature, decorations); } Py_DECREF(decorations); diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_enums_flags.cpp pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_enums_flags.cpp --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_enums_flags.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_enums_flags.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -25,7 +25,8 @@ #include "qpycore_chimera.h" #include "qpycore_enums_flags.h" -#include "qpycore_sip.h" + +#include "sipAPIQtCore.h" // Forward declarations. diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_init.cpp pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_init.cpp --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_init.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_init.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -20,12 +20,14 @@ #include +#include "qpycore_api.h" #include "qpycore_public_api.h" #include "qpycore_pyqtslotproxy.h" #include "qpycore_qobject_helpers.h" -#include "qpycore_sip.h" #include "qpycore_types.h" +#include "sipAPIQtCore.h" + // Perform any required initialisation. void qpycore_init() diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_misc.cpp pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_misc.cpp --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_misc.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_misc.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -20,12 +20,15 @@ #include +#include "qpycore_api.h" #include "qpycore_misc.h" #include "qpycore_types.h" +#include "sipAPIQtCore.h" + // Return true if the given type (which must be a class) was wrapped for PyQt5. -bool qpycore_is_pyqt4_class(const sipTypeDef *td) +bool qpycore_is_pyqt_class(const sipTypeDef *td) { return PyType_IsSubtype(Py_TYPE(sipTypeAsPyTypeObject(td)), &qpycore_pyqtWrapperType_Type); diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_misc.h pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_misc.h --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_misc.h 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_misc.h 2014-03-14 14:38:45.000000000 +0000 @@ -24,10 +24,10 @@ #include -#include "qpycore_sip.h" +#include "sipAPIQtCore.h" -bool qpycore_is_pyqt4_class(const sipTypeDef *td); +bool qpycore_is_pyqt_class(const sipTypeDef *td); #endif diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_objectified_strings.h pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_objectified_strings.h --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_objectified_strings.h 1970-01-01 00:00:00.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_objectified_strings.h 2014-03-14 14:38:45.000000000 +0000 @@ -0,0 +1,35 @@ +// This declares a number of objectified string objects. +// +// Copyright (c) 2014 Riverbank Computing Limited +// +// This file is part of PyQt5. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +#ifndef _QPYCORE_OBJECTIFIED_STRINGS_H +#define _QPYCORE_OBJECTIFIED_STRINGS_H + + +#include + + +// __name__ +extern PyObject *qpycore_dunder_name; + +// __pyqtSignature__ +extern PyObject *qpycore_dunder_pyqtsignature; + + +#endif diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_post_init.cpp.in pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_post_init.cpp.in --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_post_init.cpp.in 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_post_init.cpp.in 2014-03-14 14:38:45.000000000 +0000 @@ -22,21 +22,22 @@ #include +#include "qpycore_api.h" +#include "qpycore_objectified_strings.h" #include "qpycore_pyqtboundsignal.h" #include "qpycore_pyqtmethodproxy.h" #include "qpycore_pyqtproperty.h" #include "qpycore_pyqtpyobject.h" #include "qpycore_pyqtsignal.h" #include "qpycore_pyqtslotproxy.h" -#include "qpycore_sip.h" #include "qpycore_types.h" +#include "sipAPIQtCore.h" -// The name attribute name as an object. -PyObject *qpycore_name_attr_name; -// The signature attribute name as an object. -PyObject *qpycore_signature_attr_name; +// The objectified strings. +PyObject *qpycore_dunder_name; +PyObject *qpycore_dunder_pyqtsignature; // Perform any required post-initialisation. @@ -88,21 +89,21 @@ // Objectify some strings. #if PY_MAJOR_VERSION >= 3 - qpycore_signature_attr_name = PyUnicode_FromString("__pyqtSignature__"); + qpycore_dunder_pyqtsignature = PyUnicode_FromString("__pyqtSignature__"); #else - qpycore_signature_attr_name = PyString_FromString("__pyqtSignature__"); + qpycore_dunder_pyqtsignature = PyString_FromString("__pyqtSignature__"); #endif - if (!qpycore_signature_attr_name) + if (!qpycore_dunder_pyqtsignature) Py_FatalError("PyQt5.QtCore: Failed to objectify '__pyqtSignature__'"); #if PY_MAJOR_VERSION >= 3 - qpycore_name_attr_name = PyUnicode_FromString("__name__"); + qpycore_dunder_name = PyUnicode_FromString("__name__"); #else - qpycore_name_attr_name = PyString_FromString("__name__"); + qpycore_dunder_name = PyString_FromString("__name__"); #endif - if (!qpycore_name_attr_name) + if (!qpycore_dunder_name) Py_FatalError("PyQt5.QtCore: Failed to objectify '__name__'"); // Embed the configuration. diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore.pro pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore.pro --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore.pro 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore.pro 1970-01-01 00:00:00.000000000 +0000 @@ -1,80 +0,0 @@ -# This is the qmake project file for the QPy support code for the QtCore -# module. -# -# Copyright (c) 2014 Riverbank Computing Limited -# -# This file is part of PyQt5. -# -# This file may be used under the terms of the GNU General Public License -# version 3.0 as published by the Free Software Foundation and appearing in -# the file LICENSE included in the packaging of this file. Please review the -# following information to ensure the GNU General Public License version 3.0 -# requirements will be met: http://www.gnu.org/copyleft/gpl.html. -# -# If you do not wish to use this file under the terms of the GPL version 3.0 -# then you may purchase a commercial license. For more information contact -# info@riverbankcomputing.com. -# -# This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE -# WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - - -CONFIG += static warn_on -TARGET = qpycore -TEMPLATE = lib - -# Python's type system relies on type punning. -!win32: QMAKE_CXXFLAGS += -fno-strict-aliasing - -# This seems to be necessary for Qt v4.5.2. -win32: INCLUDEPATH += . - -SOURCES = \ - qpycore_chimera.cpp \ - qpycore_chimera_signature.cpp \ - qpycore_chimera_storage.cpp \ - qpycore_classinfo.cpp \ - qpycore_decorators.cpp \ - qpycore_enums_flags.cpp \ - qpycore_init.cpp \ - qpycore_misc.cpp \ - qpycore_post_init.cpp \ - qpycore_public_api.cpp \ - qpycore_pyqtboundsignal.cpp \ - qpycore_pyqtconfigure.cpp \ - qpycore_pyqtmethodproxy.cpp \ - qpycore_pyqtproperty.cpp \ - qpycore_pyqtpyobject.cpp \ - qpycore_pyqtsignal.cpp \ - qpycore_pyqtslot.cpp \ - qpycore_pyqtslotproxy.cpp \ - qpycore_qmessagelogger.cpp \ - qpycore_qmetaobject.cpp \ - qpycore_qmetaobject_helpers.cpp \ - qpycore_qobject_getattr.cpp \ - qpycore_qobject_helpers.cpp \ - qpycore_qstring.cpp \ - qpycore_qstringlist.cpp \ - qpycore_types.cpp \ - qpycore_qvariant.cpp \ - qpycore_qvariant_value.cpp - -HEADERS = \ - qpycore_api.h \ - qpycore_chimera.h \ - qpycore_classinfo.h \ - qpycore_enums_flags.h \ - qpycore_misc.h \ - qpycore_namespace.h \ - qpycore_public_api.h \ - qpycore_pyqtboundsignal.h \ - qpycore_pyqtproperty.h \ - qpycore_pyqtpyobject.h \ - qpycore_pyqtsignal.h \ - qpycore_pyqtslot.h \ - qpycore_pyqtslotproxy.h \ - qpycore_pyqtmethodproxy.h \ - qpycore_qmetaobjectbuilder.h \ - qpycore_qobject_helpers.h \ - qpycore_sip.h \ - qpycore_types.h diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_public_api.cpp pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_public_api.cpp --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_public_api.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_public_api.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -22,6 +22,7 @@ #include #include "qpycore_chimera.h" +#include "qpycore_objectified_strings.h" #include "qpycore_public_api.h" #include "qpycore_pyqtboundsignal.h" #include "qpycore_pyqtsignal.h" @@ -99,7 +100,7 @@ qpycore_pyqtBoundSignal *bs = (qpycore_pyqtBoundSignal *)signal; *transmitter = bs->bound_qobject; - signal_signature = bs->unbound_signal->signature->signature; + signal_signature = bs->unbound_signal->parsed_signature->signature; return sipErrorNone; } @@ -130,7 +131,8 @@ *receiver = reinterpret_cast(qobj); // Get the decoration. - PyObject *decorations = PyObject_GetAttr(slot, qpycore_signature_attr_name); + PyObject *decorations = PyObject_GetAttr(slot, + qpycore_dunder_pyqtsignature); if (!decorations) return sipErrorContinue; @@ -175,7 +177,7 @@ return sipErrorContinue; } - signal_signature = ps->signature->signature; + signal_signature = ps->parsed_signature->signature; return sipErrorNone; } diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_public_api.h pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_public_api.h --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_public_api.h 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_public_api.h 2014-03-14 14:38:45.000000000 +0000 @@ -19,7 +19,7 @@ #ifndef _QPYCORE_PUBLIC_API_H -#define _QPYCORE_APUBLIC_PI_H +#define _QPYCORE_PUBLIC_API_H #include diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_pyqtboundsignal.cpp pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_pyqtboundsignal.cpp --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_pyqtboundsignal.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_pyqtboundsignal.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -24,13 +24,16 @@ #include #include +#include "qpycore_api.h" #include "qpycore_chimera.h" #include "qpycore_misc.h" +#include "qpycore_objectified_strings.h" #include "qpycore_pyqtboundsignal.h" #include "qpycore_pyqtpyobject.h" #include "qpycore_pyqtsignal.h" #include "qpycore_pyqtslotproxy.h" -#include "qpycore_sip.h" + +#include "sipAPIQtCore.h" // Forward declarations. @@ -169,6 +172,9 @@ 0, /* tp_weaklist */ 0, /* tp_del */ 0, /* tp_version_tag */ +#if PY_VERSION_HEX >= 0x03040000 + 0, /* tp_finalize */ +#endif }; @@ -209,7 +215,7 @@ #else PyString_FromString #endif - (bs->unbound_signal->signature->signature.constData()); + (bs->unbound_signal->parsed_signature->signature.constData()); } @@ -218,7 +224,7 @@ { qpycore_pyqtBoundSignal *bs = (qpycore_pyqtBoundSignal *)self; - QByteArray name = bs->unbound_signal->signature->name(); + QByteArray name = bs->unbound_signal->parsed_signature->name(); return #if PY_MAJOR_VERSION >= 3 @@ -325,7 +331,7 @@ } QObject *q_tx = bs->bound_qobject, *q_rx; - Chimera::Signature *signal_signature = bs->unbound_signal->signature; + Chimera::Signature *signal_signature = bs->unbound_signal->parsed_signature; QByteArray slot_signature; sipErrorState estate = qpycore_get_receiver_slot_signature(py_slot, q_tx, @@ -375,7 +381,7 @@ qpycore_pyqtBoundSignal *bs = (qpycore_pyqtBoundSignal *)slot; *receiver = bs->bound_qobject; - slot_signature = bs->unbound_signal->signature->signature; + slot_signature = bs->unbound_signal->parsed_signature->signature; return sipErrorNone; } @@ -457,7 +463,7 @@ qpycore_pyqtBoundSignal *bs = (qpycore_pyqtBoundSignal *)self; PyObject *py_slot = 0, *res_obj; - Chimera::Signature *signal_signature = bs->unbound_signal->signature; + Chimera::Signature *signal_signature = bs->unbound_signal->parsed_signature; if (!PyArg_ParseTuple(args, "|O:disconnect", &py_slot)) return 0; @@ -479,7 +485,7 @@ qpycore_pyqtBoundSignal *slot_bs = (qpycore_pyqtBoundSignal *)py_slot; return disconnect(bs, slot_bs->bound_qobject, - slot_bs->unbound_signal->signature->signature.constData()); + slot_bs->unbound_signal->parsed_signature->signature.constData()); } if (!PyCallable_Check(py_slot)) @@ -523,7 +529,7 @@ static PyObject *disconnect(qpycore_pyqtBoundSignal *bs, QObject *qrx, const char *slot) { - Chimera::Signature *signature = bs->unbound_signal->signature; + Chimera::Signature *signature = bs->unbound_signal->parsed_signature; bool ok; Py_BEGIN_ALLOW_THREADS @@ -567,53 +573,44 @@ { Q_ASSERT(PyTuple_Check(args)); - // Even though we are bound to a specific signal, skip overloads that - // will fail because they require more arguments than we have. This - // accomodates the case where a signal has default arguments (so the - // full signature is the first one) but we want to supply fewer - // arguments without having to explicitly specify the correct bound - // signal. - SIP_SSIZE_T nr_args = PyTuple_GET_SIZE(args); - qpycore_pyqtSignal *ubs = bs->unbound_signal; + qpycore_pyqtSignal *ps = bs->unbound_signal; - while (ubs->signature->parsed_arguments.size() > nr_args) + // Use the emitter if there is one. + if (ps->emitter) + { + if (ps->emitter(bs->bound_qobject, args) < 0) + return 0; + } + else { - ubs = ubs->next; + Chimera::Signature *signature = ps->parsed_signature; + int mo_index = bs->bound_qobject->metaObject()->indexOfSignal( + signature->signature.constData() + 1); - if (!ubs) + if (mo_index < 0) { - // Revert back to the original unbound signal. - ubs = bs->unbound_signal; - break; + PyErr_Format(PyExc_AttributeError, + "signal was not defined in the first super-class of class '%s'", + Py_TYPE(bs->bound_pyobject)->tp_name); + return 0; } - } - - Chimera::Signature *signature = ubs->signature; - int mo_index = bs->bound_qobject->metaObject()->indexOfSignal(signature->signature.constData() + 1); - if (mo_index < 0) - { - PyErr_Format(PyExc_AttributeError, - "signal was not defined in the first super-class of class '%s'", - Py_TYPE(bs->bound_pyobject)->tp_name); - return 0; - } + // Use the docstring if there is one and it is auto-generated. + const char *docstring = bs->unbound_signal->docstring; - // Use the docstring if there is one and it is auto-generated. - const char *docstring = bs->unbound_signal->docstring; + if (!docstring || *docstring != '\1') + { + docstring = signature->py_signature.constData(); + } + else + { + // Skip the auto-generated marker. + ++docstring; + } - if (!docstring || *docstring != '\1') - { - docstring = signature->py_signature.constData(); + if (!do_emit(bs->bound_qobject, mo_index, signature, docstring, args)) + return 0; } - else - { - // Skip the auto-generated marker. - ++docstring; - } - - if (!do_emit(bs->bound_qobject, mo_index, signature, docstring, args)) - return 0; } Py_INCREF(Py_None); @@ -708,7 +705,7 @@ Py_DECREF(f_name_obj); // See if this has been decorated. - decorations = PyObject_GetAttr(f, qpycore_signature_attr_name); + decorations = PyObject_GetAttr(f, qpycore_dunder_pyqtsignature); if (decorations) { diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_pyqtboundsignal.h pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_pyqtboundsignal.h --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_pyqtboundsignal.h 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_pyqtboundsignal.h 2014-03-14 14:38:45.000000000 +0000 @@ -34,8 +34,6 @@ class QObject; QT_END_NAMESPACE -class Chimera::Signature; - extern "C" { diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_pyqtconfigure.cpp pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_pyqtconfigure.cpp --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_pyqtconfigure.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_pyqtconfigure.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -25,9 +25,11 @@ #include #include +#include "qpycore_api.h" #include "qpycore_chimera.h" #include "qpycore_pyqtboundsignal.h" -#include "qpycore_sip.h" + +#include "sipAPIQtCore.h" // The result of handling a keyword argument. diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_pyqtmethodproxy.cpp pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_pyqtmethodproxy.cpp --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_pyqtmethodproxy.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_pyqtmethodproxy.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -92,6 +92,9 @@ 0, /* tp_weaklist */ 0, /* tp_del */ 0, /* tp_version_tag */ +#if PY_VERSION_HEX >= 0x03040000 + 0, /* tp_finalize */ +#endif }; diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_pyqtproperty.cpp pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_pyqtproperty.cpp --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_pyqtproperty.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_pyqtproperty.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -155,7 +155,10 @@ 0, 0, 0, - 0 + 0, +#if PY_VERSION_HEX >= 0x03040000 + 0, +#endif }; diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_pyqtpyobject.cpp pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_pyqtpyobject.cpp --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_pyqtpyobject.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_pyqtpyobject.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -20,8 +20,10 @@ #include +#include "qpycore_api.h" #include "qpycore_pyqtpyobject.h" -#include "qpycore_sip.h" + +#include "sipAPIQtCore.h" // The Qt metatype id. diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_pyqtsignal.cpp pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_pyqtsignal.cpp --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_pyqtsignal.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_pyqtsignal.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -46,7 +46,7 @@ const QList *parameter_names, int revision, PyObject *types); static void append_overload(qpycore_pyqtSignal *ps); -static bool is_signal_name(const char *sig, const char *name, uint name_len); +static bool is_signal_name(const char *sig, const QByteArray &name); // Define the mapping methods. @@ -126,6 +126,9 @@ 0, /* tp_weaklist */ 0, /* tp_del */ 0, /* tp_version_tag */ +#if PY_VERSION_HEX >= 0x03040000 + 0, /* tp_finalize */ +#endif }; @@ -192,7 +195,7 @@ #else PyString_FromFormat #endif - ("", ps->signature->name().constData() + 1); + ("", ps->parsed_signature->name().constData() + 1); } @@ -209,7 +212,7 @@ { qpycore_pyqtSignal *ps = (qpycore_pyqtSignal *)self; - delete ps->signature; + delete ps->parsed_signature; if (ps->parameter_names) delete ps->parameter_names; @@ -495,21 +498,21 @@ // Create a new signal instance. -qpycore_pyqtSignal *qpycore_pyqtSignal_New(const char *signature_str, bool *fatal) +qpycore_pyqtSignal *qpycore_pyqtSignal_New(const char *signature, bool *fatal) { // Assume any error is fatal. if (fatal) *fatal = true; - QByteArray norm = QMetaObject::normalizedSignature(signature_str); - Chimera::Signature *signature = Chimera::parse(norm, "a signal argument"); + Chimera::Signature *parsed_signature = Chimera::parse(signature, + "a signal argument"); // At first glance the parse should never fail because the signature // originates from the .sip file. However it might if it includes a type // that has been forward declared, but not yet defined. The only example - // int PyQt is the declaration of QWidget by QSignalMapper. Therefore we + // in PyQt is the declaration of QWidget by QSignalMapper. Therefore we // assume the error isn't fatal. - if (!signature) + if (!parsed_signature) { if (fatal) *fatal = false; @@ -517,14 +520,15 @@ return 0; } - signature->signature.prepend('2'); + parsed_signature->signature.prepend('2'); + // Create and initialise the signal. qpycore_pyqtSignal *ps = (qpycore_pyqtSignal *)PyType_GenericNew( &qpycore_pyqtSignal_Type, 0, 0); if (!ps) { - delete signature; + delete parsed_signature; return 0; } @@ -532,7 +536,9 @@ ps->next = 0; ps->docstring = 0; ps->parameter_names = 0; - ps->signature = signature; + ps->revision = 0; + ps->parsed_signature = parsed_signature; + ps->emitter = 0; ps->non_signals = 0; return ps; @@ -575,7 +581,7 @@ do { - if (overload->signature->arguments() == ss_signature->signature) + if (overload->parsed_signature->arguments() == ss_signature->signature) break; overload = overload->next; @@ -597,21 +603,22 @@ const QList *parameter_names, int revision, PyObject *types) { - Chimera::Signature *signature = Chimera::parse(types, name, + Chimera::Signature *parsed_signature = Chimera::parse(types, name, "a pyqtSignal() type argument"); - if (!signature) + if (!parsed_signature) return -1; if (name) - signature->signature.prepend('2'); + parsed_signature->signature.prepend('2'); ps->default_signal = ps; ps->next = 0; ps->docstring = 0; ps->parameter_names = parameter_names; ps->revision = revision; - ps->signature = signature; + ps->parsed_signature = parsed_signature; + ps->emitter = 0; ps->non_signals = 0; return 0; @@ -639,17 +646,17 @@ // If the signature already has a name then they all have and there is // nothing more to do. - if (!ps->signature->signature.startsWith('(')) + if (!ps->parsed_signature->signature.startsWith('(')) return; do { - QByteArray &sig = ps->signature->signature; + QByteArray &sig = ps->parsed_signature->signature; sig.prepend(name); sig.prepend('2'); - QByteArray &py_sig = ps->signature->py_signature; + QByteArray &py_sig = ps->parsed_signature->py_signature; py_sig.prepend(name); py_sig.prepend('.'); @@ -664,8 +671,8 @@ // Handle the getting of a lazy attribute, ie. a native Qt signal. int qpycore_get_lazy_attr(const sipTypeDef *td, PyObject *dict) { - pyqt4ClassTypeDef *ctd = (pyqt4ClassTypeDef *)td; - const pyqt4QtSignal *sigs = ctd->qt4_signals; + pyqt5ClassTypeDef *ctd = (pyqt5ClassTypeDef *)td; + const pyqt5QtSignal *sigs = ctd->qt_signals; // Handle the trvial case. if (!sigs) @@ -677,7 +684,7 @@ do { // See if we have come to the end of the current signal. - if (default_signal && !is_signal_name(sigs->signature, default_name.constData(), default_name.size())) + if (default_signal && !is_signal_name(sigs->signature, default_name)) { if (PyDict_SetItemString(dict, default_name.constData(), (PyObject *)default_signal) < 0) return -1; @@ -700,6 +707,7 @@ } sig->docstring = sigs->docstring; + sig->emitter = sigs->emitter; // See if this is a new default. if (default_signal) @@ -713,8 +721,8 @@ default_signal = sig->default_signal = sig; - // Get the name. - default_name = sig->signature->name().mid(1); + default_name = sigs->signature; + default_name.truncate(default_name.indexOf('(')); } } while ((++sigs)->signature); @@ -723,14 +731,15 @@ if (!default_signal) return 0; - return PyDict_SetItemString(dict, default_name.constData(), (PyObject *)default_signal); + return PyDict_SetItemString(dict, default_name.constData(), + (PyObject *)default_signal); } -// Return true if the signal has the given name. -static bool is_signal_name(const char *sig, const char *name, uint name_len) +// Return true if a signal signatures has a particular name. +static bool is_signal_name(const char *sig, const QByteArray &name) { - return (qstrncmp(sig, name, name_len) == 0 && sig[name_len] == '('); + return (qstrncmp(sig, name.constData(), name.size()) == 0 && sig[name.size()] == '('); } diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_pyqtsignal.h pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_pyqtsignal.h --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_pyqtsignal.h 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_pyqtsignal.h 2014-03-14 14:38:45.000000000 +0000 @@ -23,6 +23,7 @@ #include +#include #include #include @@ -52,8 +53,11 @@ // The revision. int revision; - // The parsed signature. - Chimera::Signature *signature; + // The parsed signature, not set if there is an emitter. + Chimera::Signature *parsed_signature; + + // An optional emitter. + pyqt5EmitFunc emitter; // The non-signal overloads (if any). This is only set for the default. PyMethodDef *non_signals; @@ -67,7 +71,7 @@ } -qpycore_pyqtSignal *qpycore_pyqtSignal_New(const char *signature_str, +qpycore_pyqtSignal *qpycore_pyqtSignal_New(const char *signature, bool *fatal = 0); qpycore_pyqtSignal *qpycore_find_signal(qpycore_pyqtSignal *ps, PyObject *subscript, const char *context); diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_pyqtslotproxy.cpp pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_pyqtslotproxy.cpp --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_pyqtslotproxy.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_pyqtslotproxy.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -25,11 +25,13 @@ #include #include +#include "qpycore_api.h" #include "qpycore_chimera.h" #include "qpycore_qmetaobjectbuilder.h" #include "qpycore_pyqtslot.h" #include "qpycore_pyqtslotproxy.h" -#include "qpycore_sip.h" + +#include "sipAPIQtCore.h" // Proxy flags. diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_pyqtslotproxy.h pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_pyqtslotproxy.h --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_pyqtslotproxy.h 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_pyqtslotproxy.h 2014-03-14 14:38:45.000000000 +0000 @@ -31,7 +31,6 @@ #include "qpycore_namespace.h" #include "qpycore_chimera.h" -#include "qpycore_sip.h" QT_BEGIN_NAMESPACE diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_qmessagelogger.cpp pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_qmessagelogger.cpp --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_qmessagelogger.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_qmessagelogger.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -19,7 +19,10 @@ #include -#include + +#include "qpycore_api.h" + +#include "sipAPIQtCore.h" // Return the current Python context. This should be called with the GIL. diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_qmetaobject.cpp pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_qmetaobject.cpp --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_qmetaobject.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_qmetaobject.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -23,9 +23,11 @@ #include #include +#include "qpycore_api.h" #include "qpycore_chimera.h" #include "qpycore_misc.h" -#include "qpycore_sip.h" + +#include "sipAPIQtCore.h" // Forward declarations. diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_qmetaobject_helpers.cpp pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_qmetaobject_helpers.cpp --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_qmetaobject_helpers.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_qmetaobject_helpers.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -25,10 +25,14 @@ #include #include +#include "qpycore_api.h" #include "qpycore_chimera.h" #include "qpycore_misc.h" +#include "qpycore_objectified_strings.h" #include "qpycore_public_api.h" +#include "sipAPIQtCore.h" + // Forward declarations. static void connect(QObject *qobj, PyObject *slot_obj, @@ -63,7 +67,7 @@ // Use the signature attribute instead of the name if there is one. PyObject *sigattr = PyObject_GetAttr(slot_obj, - qpycore_signature_attr_name); + qpycore_dunder_pyqtsignature); if (sigattr) { diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_qobject_getattr.cpp pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_qobject_getattr.cpp --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_qobject_getattr.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_qobject_getattr.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -25,6 +25,7 @@ #include #include +#include "qpycore_api.h" #include "qpycore_pyqtboundsignal.h" #include "qpycore_pyqtmethodproxy.h" #include "qpycore_pyqtsignal.h" @@ -95,7 +96,9 @@ sig_hash = new SignalHash; PyObject *sig_obj; - QByteArray sig_str(method.methodSignature()); + + QByteArray sig_str = method.methodSignature(); + SignalHash::const_iterator it = sig_hash->find(sig_str); if (it == sig_hash->end()) diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_qobject_helpers.cpp pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_qobject_helpers.cpp --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_qobject_helpers.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_qobject_helpers.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -27,15 +27,17 @@ #include #include +#include "qpycore_api.h" #include "qpycore_chimera.h" #include "qpycore_pyqtboundsignal.h" #include "qpycore_pyqtproperty.h" #include "qpycore_pyqtpyobject.h" #include "qpycore_pyqtslot.h" #include "qpycore_qobject_helpers.h" -#include "qpycore_sip.h" #include "qpycore_types.h" +#include "sipAPIQtCore.h" + // Forward declarations. static int qt_metacall_worker(sipSimpleWrapper *pySelf, PyTypeObject *pytype, @@ -51,7 +53,7 @@ return ((pyqtWrapperType *)Py_TYPE(pySelf))->metaobject->mo; // Fall back to the static Qt meta-object. - return reinterpret_cast(((pyqt4ClassTypeDef *)base)->qt4_static_metaobject); + return reinterpret_cast(((pyqt5ClassTypeDef *)base)->static_metaobject); } @@ -252,7 +254,7 @@ break; } - if (((pyqt4ClassTypeDef *)td)->qt_interface && qstrcmp(((pyqt4ClassTypeDef *)td)->qt_interface, _clname) == 0) + if (((pyqt5ClassTypeDef *)td)->qt_interface && qstrcmp(((pyqt5ClassTypeDef *)td)->qt_interface, _clname) == 0) { *sipCpp = sipGetMixinAddress(pySelf, td); is_py_class = true; @@ -280,9 +282,9 @@ else { // It's a wrapped type. - pyqt4ClassTypeDef *p4ctd = (pyqt4ClassTypeDef *)((sipWrapperType *)pyqt_wt)->type; + pyqt5ClassTypeDef *pyqt_ctd = (pyqt5ClassTypeDef *)((sipWrapperType *)pyqt_wt)->type; - if (!p4ctd) + if (!pyqt_ctd) { /* * This is a side effect of a wrapped class not being fully ready @@ -294,7 +296,7 @@ return 0; } - mo = reinterpret_cast(p4ctd->qt4_static_metaobject); + mo = reinterpret_cast(pyqt_ctd->static_metaobject); } return sipConvertFromType(const_cast(mo), sipType_QMetaObject, 0); diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_qobject_helpers.h pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_qobject_helpers.h --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_qobject_helpers.h 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_qobject_helpers.h 2014-03-14 14:38:45.000000000 +0000 @@ -26,7 +26,7 @@ #include -#include "qpycore_sip.h" +#include "sipAPIQtCore.h" const QMetaObject *qpycore_qobject_metaobject(sipSimpleWrapper *pySelf, diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_qstring.cpp pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_qstring.cpp --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_qstring.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_qstring.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -24,7 +24,7 @@ #include #include -#include "qpycore_sip.h" +#include "qpycore_api.h" // Work out if we should enable PEP 393 support. This is complicated by the @@ -48,17 +48,15 @@ PyObject *obj; #if defined(PYQT_PEP_393) - // Assume that the text is Latin-1. Note that we could first assume that - // it is ASCII then try Latin-1, but the memory saving doesn't justify it. - // This is the most common case and means we end up with the smallest - // memory footprint and the quickest conversion. + // We have to work out exactly which kind to use. We assume ASCII while we + // are checking so that we only go through the string once is the most + // common case. Note that we can't use PyUnicode_FromKindAndData() because + // it doesn't handle surrogates in UCS2 strings. int py_len = qstr.length(); - if ((obj = PyUnicode_New(py_len, 0x00ff)) == NULL) + if ((obj = PyUnicode_New(py_len, 0x007f)) == NULL) return NULL; - // Populate the object but check if we have actually got UCS2 or UCS4 - // characters. int kind = PyUnicode_KIND(obj); void *data = PyUnicode_DATA(obj); const QChar *qch = qstr.data(); @@ -67,25 +65,31 @@ { ushort uch = qch->unicode(); - if (uch > 0x00ff) + if (uch > 0x007f) { // This is useless. Py_DECREF(obj); // Work out what kind we really need and what the Python length // should be. - Py_UCS4 maxchar = 0x00ffff; + Py_UCS4 maxchar = 0x00ff; do { - // See if this is a surrogate pair. We don't need to bounds - // check because Qt puts a null QChar on the end. - if (qch->isHighSurrogate() && (qch + 1)->isLowSurrogate()) + if (uch > 0x00ff) { - maxchar = 0x10ffff; - --py_len; - ++i; - ++qch; + if (maxchar == 0x00ff) + maxchar = 0x00ffff; + + // See if this is a surrogate pair. We don't need to + // bounds check because Qt puts a null QChar on the end. + if (qch->isHighSurrogate() && (qch + 1)->isLowSurrogate()) + { + maxchar = 0x10ffff; + --py_len; + ++i; + ++qch; + } } } while (++i < qstr.length()); diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_qstringlist.cpp pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_qstringlist.cpp --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_qstringlist.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_qstringlist.cpp 1970-01-01 00:00:00.000000000 +0000 @@ -1,107 +0,0 @@ -// This is the support for QStringList. -// -// Copyright (c) 2014 Riverbank Computing Limited -// -// This file is part of PyQt5. -// -// This file may be used under the terms of the GNU General Public License -// version 3.0 as published by the Free Software Foundation and appearing in -// the file LICENSE included in the packaging of this file. Please review the -// following information to ensure the GNU General Public License version 3.0 -// requirements will be met: http://www.gnu.org/copyleft/gpl.html. -// -// If you do not wish to use this file under the terms of the GPL version 3.0 -// then you may purchase a commercial license. For more information contact -// info@riverbankcomputing.com. -// -// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE -// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - - -#include - -#include - -#include "qpycore_sip.h" - - -// Convert a QStringList to a Python list object. -PyObject *qpycore_PyObject_FromQStringList(const QStringList &qstrlst) -{ - PyObject *obj; - - if ((obj = PyList_New(qstrlst.size())) == NULL) - return NULL; - - for (int i = 0; i < qstrlst.size(); ++i) - { - QString *qs = new QString(qstrlst.at(i)); - PyObject *qs_obj = sipConvertFromNewType(qs, sipType_QString, 0); - - if (!qs_obj) - { - Py_DECREF(obj); - delete qs; - - return 0; - } - - PyList_SET_ITEM(obj, i, qs_obj); - } - - return obj; -} - - -// Convert a Python sequence object to a QStringList. This should only be -// called after a successful call to qpycore_PySequence_Check_QStringList(). -QStringList qpycore_PySequence_AsQStringList(PyObject *obj) -{ - QStringList qstrlst; - SIP_SSIZE_T len = PySequence_Size(obj); - - for (SIP_SSIZE_T i = 0; i < len; ++i) - { - PyObject *itm = PySequence_ITEM(obj, i); - int state, iserr = 0; - QString *qs = reinterpret_cast(sipConvertToType(itm, sipType_QString, 0, SIP_NOT_NONE, &state, &iserr)); - - Py_DECREF(itm); - - if (iserr) - { - // This should never happen. - sipReleaseType(qs, sipType_QString, state); - return QStringList(); - } - - qstrlst.append(*qs); - - sipReleaseType(qs, sipType_QString, state); - } - - return qstrlst; -} - - -// See if a Python sequence object can be converted to a QStringList. -int qpycore_PySequence_Check_QStringList(PyObject *obj) -{ - SIP_SSIZE_T len; - - if (!PySequence_Check(obj) || (len = PySequence_Size(obj)) < 0) - return 0; - - for (SIP_SSIZE_T i = 0; i < len; ++i) - { - PyObject *itm = PySequence_ITEM(obj, i); - bool ok = (itm && sipCanConvertToType(itm, sipType_QString, SIP_NOT_NONE)); - - Py_XDECREF(itm); - - if (!ok) - return 0; - } - - return 1; -} diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_qvariant.cpp pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_qvariant.cpp --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_qvariant.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_qvariant.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -22,6 +22,7 @@ #include +#include "qpycore_api.h" #include "qpycore_chimera.h" diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_qvariant_value.cpp pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_qvariant_value.cpp --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_qvariant_value.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_qvariant_value.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -24,7 +24,8 @@ #include #include "qpycore_chimera.h" -#include "qpycore_sip.h" + +#include "sipAPIQtCore.h" // Forward declarations. diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_sip.h pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_sip.h --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_sip.h 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_sip.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -// This provides access to the SIP generated code for the QtCore module. -// -// Copyright (c) 2014 Riverbank Computing Limited -// -// This file is part of PyQt5. -// -// This file may be used under the terms of the GNU General Public License -// version 3.0 as published by the Free Software Foundation and appearing in -// the file LICENSE included in the packaging of this file. Please review the -// following information to ensure the GNU General Public License version 3.0 -// requirements will be met: http://www.gnu.org/copyleft/gpl.html. -// -// If you do not wish to use this file under the terms of the GPL version 3.0 -// then you may purchase a commercial license. For more information contact -// info@riverbankcomputing.com. -// -// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE -// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - - -#ifndef _QPYCORE_SIP_H -#define _QPYCORE_SIP_H - - -#include - -#include "sipAPIQtCore.h" - - -// The name attribute name as an object. -extern PyObject *qpycore_name_attr_name; - -// The signature attribute name as an object. -extern PyObject *qpycore_signature_attr_name; - - -#endif diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_types.cpp pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_types.cpp --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_types.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_types.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -54,13 +54,19 @@ #include "qpycore_classinfo.h" #include "qpycore_enums_flags.h" #include "qpycore_misc.h" +#include "qpycore_objectified_strings.h" #include "qpycore_pyqtproperty.h" #include "qpycore_pyqtsignal.h" #include "qpycore_pyqtslot.h" #include "qpycore_qmetaobjectbuilder.h" -#include "qpycore_sip.h" #include "qpycore_types.h" +#include "sipAPIQtCore.h" + + +// A tuple of the property name and definition. +typedef QPair PropertyData; + // Forward declarations. extern "C" { @@ -73,6 +79,12 @@ #endif } +static int trawl_hierarchy(PyTypeObject *pytype, qpycore_metaobject *qo, + QMetaObjectBuilder &builder, QList &psigs, + QMap &pprops); +static int trawl_type(PyTypeObject *pytype, qpycore_metaobject *qo, + QMetaObjectBuilder &builder, QList &psigs, + QMap &pprops); static int create_dynamic_metaobject(pyqtWrapperType *pyqt_wt); static const QMetaObject *get_scope_qmetaobject(const Chimera *ct); static const QMetaObject *get_qmetaobject(pyqtWrapperType *pyqt_wt); @@ -131,6 +143,9 @@ 0, /* tp_weaklist */ 0, /* tp_del */ 0, /* tp_version_tag */ +#if PY_VERSION_HEX >= 0x03040000 + 0, /* tp_finalize */ +#endif }; @@ -142,13 +157,13 @@ if (sipWrapperType_Type->tp_init((PyObject *)self, args, kwds) < 0) return -1; - pyqt4ClassTypeDef *pyqt_td = (pyqt4ClassTypeDef *)((sipWrapperType *)self)->type; + pyqt5ClassTypeDef *pyqt_td = (pyqt5ClassTypeDef *)((sipWrapperType *)self)->type; if (pyqt_td && !sipIsExactWrappedType((sipWrapperType *)self)) { // Create a dynamic meta-object as its base wrapped type has a static // Qt meta-object. - if (pyqt_td->qt4_static_metaobject && create_dynamic_metaobject(self) < 0) + if (pyqt_td->static_metaobject && create_dynamic_metaobject(self) < 0) return -1; } @@ -176,96 +191,14 @@ // Get the name of the type. Dynamic types have simple names. builder.setClassName(pytype->tp_name); - // Go through the class dictionary getting all PyQt properties, slots and + // Go through the class hierarchy getting all PyQt properties, slots and // signals. - typedef QPair prop_data; - QMap pprops; QList psigs; - SIP_SSIZE_T pos = 0; - PyObject *key, *value; - - while (PyDict_Next(pytype->tp_dict, &pos, &key, &value)) - { - // See if it is a slot, ie. it has been decorated with pyqtSlot(). - PyObject *sig_obj = PyObject_GetAttr(value, - qpycore_signature_attr_name); - - if (sig_obj) - { - // Make sure it is a list and not some legitimate attribute that - // happens to use our special name. - if (PyList_Check(sig_obj)) - { - for (SIP_SSIZE_T i = 0; i < PyList_GET_SIZE(sig_obj); ++i) - { - // Set up the skeleton slot. - PyObject *decoration = PyList_GET_ITEM(sig_obj, i); - Chimera::Signature *slot_signature = Chimera::Signature::fromPyObject(decoration); - - PyQtSlot *slot = new PyQtSlot(value, (PyObject *)pyqt_wt, - slot_signature);; - - qo->pslots.append(slot); - } - } - - Py_DECREF(sig_obj); - } - else - { - PyErr_Clear(); - - // Make sure the key is an ASCII string. Delay the error checking - // until we know we actually need it. - const char *ascii_key = sipString_AsASCIIString(&key); - - // See if the value is of interest. - if (PyObject_TypeCheck(value, &qpycore_pyqtProperty_Type)) - { - // It is a property. - - if (!ascii_key) - return -1; + QMap pprops; - Py_INCREF(value); - - qpycore_pyqtProperty *pp = (qpycore_pyqtProperty *)value; - - pprops.insert(pp->pyqtprop_sequence, prop_data(key, value)); - - // See if the property has a scope. If so, collect all - // QMetaObject pointers that are not in the super-class - // hierarchy. - const QMetaObject *mo = get_scope_qmetaobject(pp->pyqtprop_parsed_type); - - if (mo) - builder.addRelatedMetaObject(mo); - } - else if (PyObject_TypeCheck(value, &qpycore_pyqtSignal_Type)) - { - // It is a signal. - - if (!ascii_key) - return -1; - - qpycore_pyqtSignal *ps = (qpycore_pyqtSignal *)value; - - // Make sure the signal has a name. - qpycore_set_signal_name(ps, pytype->tp_name, ascii_key); - - // Add all the overloads. - do - { - psigs.append(ps); - ps = ps->next; - } - while (ps); - - Py_DECREF(key); - } - } - } + if (trawl_hierarchy(pytype, qo, builder, psigs, pprops) < 0) + return -1; qo->nr_signals = psigs.count(); @@ -311,7 +244,7 @@ const qpycore_pyqtSignal *ps = psigs.at(g); QMetaMethodBuilder signal_builder = builder.addSignal( - ps->signature->signature.mid(1)); + ps->parsed_signature->signature.mid(1)); if (ps->parameter_names) signal_builder.setParameterNames(*ps->parameter_names); @@ -329,21 +262,19 @@ // Add any type. if (slot_signature->result) - { slot_builder.setReturnType(slot_signature->result->name()); - } slot_builder.setRevision(slot_signature->revision); } // Add the properties to the meta-object. - QMapIterator it(pprops); + QMapIterator it(pprops); for (int p = 0; it.hasNext(); ++p) { it.next(); - const prop_data &pprop = it.value(); + const PropertyData &pprop = it.value(); const char *prop_name = SIPBytes_AS_STRING(pprop.first); qpycore_pyqtProperty *pp = (qpycore_pyqtProperty *)pprop.second; int notifier_id; @@ -351,7 +282,7 @@ if (pp->pyqtprop_notify) { qpycore_pyqtSignal *ps = (qpycore_pyqtSignal *)pp->pyqtprop_notify; - const QByteArray &sig = ps->signature->signature; + const QByteArray &sig = ps->parsed_signature->signature; notifier_id = builder.indexOfSignal(sig.mid(1)); @@ -429,7 +360,7 @@ // See if the name of the setter follows the Designer convention. // If so tell the UI compilers not to use setProperty(). PyObject *setter_name_obj = PyObject_GetAttr(pp->pyqtprop_set, - qpycore_name_attr_name); + qpycore_dunder_name); if (setter_name_obj) { @@ -488,6 +419,128 @@ } +// Trawl a type's hierarchy looking for any slots, signals or properties. +static int trawl_hierarchy(PyTypeObject *pytype, qpycore_metaobject *qo, + QMetaObjectBuilder &builder, QList &psigs, + QMap &pprops) +{ + if (trawl_type(pytype, qo, builder, psigs, pprops) < 0) + return -1; + + if (!pytype->tp_bases) + return 0; + + Q_ASSERT(PyTuple_Check(pytype->tp_bases)); + + for (SIP_SSIZE_T i = 0; i < PyTuple_GET_SIZE(pytype->tp_bases); ++i) + { + PyTypeObject *sup = (PyTypeObject *)PyTuple_GET_ITEM(pytype->tp_bases, i); + + if (PyType_IsSubtype(sup, sipTypeAsPyTypeObject(sipType_QObject))) + continue; + + if (trawl_hierarchy(sup, qo, builder, psigs, pprops) < 0) + return -1; + } + + return 0; +} + + +// Trawl a type's dict looking for any slots, signals or properties. +static int trawl_type(PyTypeObject *pytype, qpycore_metaobject *qo, + QMetaObjectBuilder &builder, QList &psigs, + QMap &pprops) +{ + SIP_SSIZE_T pos = 0; + PyObject *key, *value; + + while (PyDict_Next(pytype->tp_dict, &pos, &key, &value)) + { + // See if it is a slot, ie. it has been decorated with pyqtSlot(). + PyObject *sig_obj = PyObject_GetAttr(value, + qpycore_dunder_pyqtsignature); + + if (sig_obj) + { + // Make sure it is a list and not some legitimate attribute that + // happens to use our special name. + if (PyList_Check(sig_obj)) + { + for (SIP_SSIZE_T i = 0; i < PyList_GET_SIZE(sig_obj); ++i) + { + // Set up the skeleton slot. + PyObject *decoration = PyList_GET_ITEM(sig_obj, i); + Chimera::Signature *slot_signature = Chimera::Signature::fromPyObject(decoration); + + PyQtSlot *slot = new PyQtSlot(value, (PyObject *)pytype, + slot_signature);; + + qo->pslots.append(slot); + } + } + + Py_DECREF(sig_obj); + } + else + { + PyErr_Clear(); + + // Make sure the key is an ASCII string. Delay the error checking + // until we know we actually need it. + const char *ascii_key = sipString_AsASCIIString(&key); + + // See if the value is of interest. + if (PyObject_TypeCheck(value, &qpycore_pyqtProperty_Type)) + { + // It is a property. + + if (!ascii_key) + return -1; + + Py_INCREF(value); + + qpycore_pyqtProperty *pp = (qpycore_pyqtProperty *)value; + + pprops.insert(pp->pyqtprop_sequence, PropertyData(key, value)); + + // See if the property has a scope. If so, collect all + // QMetaObject pointers that are not in the super-class + // hierarchy. + const QMetaObject *mo = get_scope_qmetaobject(pp->pyqtprop_parsed_type); + + if (mo) + builder.addRelatedMetaObject(mo); + } + else if (PyObject_TypeCheck(value, &qpycore_pyqtSignal_Type)) + { + // It is a signal. + + if (!ascii_key) + return -1; + + qpycore_pyqtSignal *ps = (qpycore_pyqtSignal *)value; + + // Make sure the signal has a name. + qpycore_set_signal_name(ps, pytype->tp_name, ascii_key); + + // Add all the overloads. + do + { + psigs.append(ps); + ps = ps->next; + } + while (ps); + + Py_DECREF(key); + } + } + } + + return 0; +} + + // Return the QMetaObject for an enum type's scope. static const QMetaObject *get_scope_qmetaobject(const Chimera *ct) { @@ -502,7 +555,7 @@ return 0; // Check the scope is wrapped by PyQt. - if (!qpycore_is_pyqt4_class(td)) + if (!qpycore_is_pyqt_class(td)) return 0; return get_qmetaobject((pyqtWrapperType *)sipTypeAsPyTypeObject(td)); @@ -517,7 +570,7 @@ return pyqt_wt->metaobject->mo; // It's a wrapped type. - return reinterpret_cast(((pyqt4ClassTypeDef *)((sipWrapperType *)pyqt_wt)->type)->qt4_static_metaobject); + return reinterpret_cast(((pyqt5ClassTypeDef *)((sipWrapperType *)pyqt_wt)->type)->static_metaobject); } diff -Nru pyqt5-5.2+dfsg/qpy/QtCore/qpycore_types.h pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_types.h --- pyqt5-5.2+dfsg/qpy/QtCore/qpycore_types.h 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtCore/qpycore_types.h 2014-03-14 14:38:45.000000000 +0000 @@ -30,7 +30,8 @@ #include "qpycore_chimera.h" #include "qpycore_pyqtproperty.h" -#include "qpycore_sip.h" + +#include "sipAPIQtCore.h" class PyQtSlot; diff -Nru pyqt5-5.2+dfsg/qpy/QtDBus/qpydbus_api.h pyqt5-5.2.1+dfsg/qpy/QtDBus/qpydbus_api.h --- pyqt5-5.2+dfsg/qpy/QtDBus/qpydbus_api.h 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtDBus/qpydbus_api.h 2014-03-14 14:38:45.000000000 +0000 @@ -1,5 +1,4 @@ -// This defines the API provided by this library. It must not be explicitly -// included by the library itself. +// This defines the API provided by this library. // // Copyright (c) 2014 Riverbank Computing Limited // diff -Nru pyqt5-5.2+dfsg/qpy/QtDBus/qpydbus_chimera_helpers.cpp pyqt5-5.2.1+dfsg/qpy/QtDBus/qpydbus_chimera_helpers.cpp --- pyqt5-5.2+dfsg/qpy/QtDBus/qpydbus_chimera_helpers.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtDBus/qpydbus_chimera_helpers.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -18,9 +18,7 @@ // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -#include "sipAPIQtDBus.h" - -#include "qpydbus_chimera_helpers.h" +#include #include #include @@ -28,6 +26,10 @@ #include #include +#include "qpydbus_chimera_helpers.h" + +#include "sipAPIQtDBus.h" + // Forward declarations. static PyObject *from_variant_type(const QDBusArgument &arg); diff -Nru pyqt5-5.2+dfsg/qpy/QtDBus/qpydbus_chimera_helpers.h pyqt5-5.2.1+dfsg/qpy/QtDBus/qpydbus_chimera_helpers.h --- pyqt5-5.2+dfsg/qpy/QtDBus/qpydbus_chimera_helpers.h 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtDBus/qpydbus_chimera_helpers.h 2014-03-14 14:38:45.000000000 +0000 @@ -18,8 +18,8 @@ // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -#ifndef _QPYDBUSCHIMERAHELPERS_H -#define _QPYDBUSCHIMERAHELPERS_H +#ifndef _QPYDBUS_CHIMERAHELPERS_H +#define _QPYDBUS_CHIMERAHELPERS_H #include diff -Nru pyqt5-5.2+dfsg/qpy/QtDBus/qpydbuspendingreply.cpp pyqt5-5.2.1+dfsg/qpy/QtDBus/qpydbuspendingreply.cpp --- pyqt5-5.2+dfsg/qpy/QtDBus/qpydbuspendingreply.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtDBus/qpydbuspendingreply.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -20,10 +20,10 @@ #include -#include "sipAPIQtDBus.h" - #include "qpydbuspendingreply.h" +#include "sipAPIQtDBus.h" + // Default ctor. QPyDBusPendingReply::QPyDBusPendingReply() : QDBusPendingReply() diff -Nru pyqt5-5.2+dfsg/qpy/QtDBus/qpydbus_post_init.cpp pyqt5-5.2.1+dfsg/qpy/QtDBus/qpydbus_post_init.cpp --- pyqt5-5.2+dfsg/qpy/QtDBus/qpydbus_post_init.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtDBus/qpydbus_post_init.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -20,10 +20,11 @@ #include -#include "sipAPIQtDBus.h" - +#include "qpydbus_api.h" #include "qpydbus_chimera_helpers.h" +#include "sipAPIQtDBus.h" + // Perform any required initialisation. void qpydbus_post_init() diff -Nru pyqt5-5.2+dfsg/qpy/QtDBus/qpydbus.pro pyqt5-5.2.1+dfsg/qpy/QtDBus/qpydbus.pro --- pyqt5-5.2+dfsg/qpy/QtDBus/qpydbus.pro 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtDBus/qpydbus.pro 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -# This is the qmake project file for the QPy support code for the QtDBus -# module. -# -# Copyright (c) 2014 Riverbank Computing Limited -# -# This file is part of PyQt5. -# -# This file may be used under the terms of the GNU General Public License -# version 3.0 as published by the Free Software Foundation and appearing in -# the file LICENSE included in the packaging of this file. Please review the -# following information to ensure the GNU General Public License version 3.0 -# requirements will be met: http://www.gnu.org/copyleft/gpl.html. -# -# If you do not wish to use this file under the terms of the GPL version 3.0 -# then you may purchase a commercial license. For more information contact -# info@riverbankcomputing.com. -# -# This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE -# WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - - -QT += dbus -CONFIG += static warn_on -TARGET = qpydbus -TEMPLATE = lib - -SOURCES = \ - qpydbus_chimera_helpers.cpp \ - qpydbus_post_init.cpp \ - qpydbuspendingreply.cpp \ - qpydbusreply.cpp - -HEADERS = \ - qpydbus_api.h \ - qpydbus_chimera_helpers.h \ - qpydbuspendingreply.h \ - qpydbusreply.h diff -Nru pyqt5-5.2+dfsg/qpy/QtDBus/qpydbusreply.cpp pyqt5-5.2.1+dfsg/qpy/QtDBus/qpydbusreply.cpp --- pyqt5-5.2+dfsg/qpy/QtDBus/qpydbusreply.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtDBus/qpydbusreply.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -23,10 +23,10 @@ #include #include -#include "sipAPIQtDBus.h" - #include "qpydbusreply.h" +#include "sipAPIQtDBus.h" + // Extract a reply from a message. The GIL should be held. QPyDBusReply::QPyDBusReply(const QDBusMessage &reply) diff -Nru pyqt5-5.2+dfsg/qpy/QtDesigner/qpydesigner.pro pyqt5-5.2.1+dfsg/qpy/QtDesigner/qpydesigner.pro --- pyqt5-5.2+dfsg/qpy/QtDesigner/qpydesigner.pro 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtDesigner/qpydesigner.pro 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -# This is the qmake project file for the QPy support code for the QtDesigner -# module. -# -# Copyright (c) 2014 Riverbank Computing Limited -# -# This file is part of PyQt5. -# -# This file may be used under the terms of the GNU General Public License -# version 3.0 as published by the Free Software Foundation and appearing in -# the file LICENSE included in the packaging of this file. Please review the -# following information to ensure the GNU General Public License version 3.0 -# requirements will be met: http://www.gnu.org/copyleft/gpl.html. -# -# If you do not wish to use this file under the terms of the GPL version 3.0 -# then you may purchase a commercial license. For more information contact -# info@riverbankcomputing.com. -# -# This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE -# WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - - -CONFIG += static plugin warn_on -QT += designer -TARGET = qpydesigner -TEMPLATE = lib - -HEADERS = \ - qpydesignercontainerextension.h \ - qpydesignercustomwidgetcollectionplugin.h \ - qpydesignercustomwidgetplugin.h \ - qpydesignermembersheetextension.h \ - qpydesignerpropertysheetextension.h \ - qpydesignertaskmenuextension.h diff -Nru pyqt5-5.2+dfsg/qpy/QtGui/qpygui.pro pyqt5-5.2.1+dfsg/qpy/QtGui/qpygui.pro --- pyqt5-5.2+dfsg/qpy/QtGui/qpygui.pro 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtGui/qpygui.pro 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -# This is the qmake project file for the QPy support code for the QtGui module. -# -# Copyright (c) 2014 Riverbank Computing Limited -# -# This file is part of PyQt5. -# -# This file may be used under the terms of the GNU General Public License -# version 3.0 as published by the Free Software Foundation and appearing in -# the file LICENSE included in the packaging of this file. Please review the -# following information to ensure the GNU General Public License version 3.0 -# requirements will be met: http://www.gnu.org/copyleft/gpl.html. -# -# If you do not wish to use this file under the terms of the GPL version 3.0 -# then you may purchase a commercial license. For more information contact -# info@riverbankcomputing.com. -# -# This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE -# WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - - -CONFIG += static warn_on -TARGET = qpygui -TEMPLATE = lib - -SOURCES = \ - qpyopengl_add_constants.c \ - qpyopengl_array_convertors.cpp \ - qpyopengl_attribute_array.cpp \ - qpyopengl_data_cache.cpp \ - qpyopengl_init.cpp \ - qpyopengl_uniform_value_array.cpp \ - qpyopengl_value_array.cpp \ - qpyopengl_version_functions.cpp - -HEADERS = \ - qpyopengl_api.h \ - qpyopengl_data_cache.h diff -Nru pyqt5-5.2+dfsg/qpy/QtGui/qpyopengl_add_constants.c pyqt5-5.2.1+dfsg/qpy/QtGui/qpyopengl_add_constants.c --- pyqt5-5.2+dfsg/qpy/QtGui/qpyopengl_add_constants.c 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtGui/qpyopengl_add_constants.c 1970-01-01 00:00:00.000000000 +0000 @@ -1,5124 +0,0 @@ -/* - * This implements a function to populate a Python object with the OpenGL - * constants. This file is automatically generated. - * - * Copyright (c) 2014 Riverbank Computing Limited - * - * This file is part of PyQt5. - * - * This file may be used under the terms of the GNU General Public License - * version 3.0 as published by the Free Software Foundation and appearing in - * the file LICENSE included in the packaging of this file. Please review the - * following information to ensure the GNU General Public License version 3.0 - * requirements will be met: http://www.gnu.org/copyleft/gpl.html. - * - * If you do not wish to use this file under the terms of the GPL version 3.0 - * then you may purchase a commercial license. For more information contact - * info@riverbankcomputing.com. - * - * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE - * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - */ - - -#include - - -struct OpenGLEnum_i -{ - const char *name; - int value; -}; - -static struct OpenGLEnum_i openGLEnums_i[] = { - {"GL_CURRENT_BIT", 0x00000001}, - {"GL_POINT_BIT", 0x00000002}, - {"GL_LINE_BIT", 0x00000004}, - {"GL_POLYGON_BIT", 0x00000008}, - {"GL_POLYGON_STIPPLE_BIT", 0x00000010}, - {"GL_PIXEL_MODE_BIT", 0x00000020}, - {"GL_LIGHTING_BIT", 0x00000040}, - {"GL_FOG_BIT", 0x00000080}, - {"GL_DEPTH_BUFFER_BIT", 0x00000100}, - {"GL_ACCUM_BUFFER_BIT", 0x00000200}, - {"GL_STENCIL_BUFFER_BIT", 0x00000400}, - {"GL_VIEWPORT_BIT", 0x00000800}, - {"GL_TRANSFORM_BIT", 0x00001000}, - {"GL_ENABLE_BIT", 0x00002000}, - {"GL_COLOR_BUFFER_BIT", 0x00004000}, - {"GL_HINT_BIT", 0x00008000}, - {"GL_EVAL_BIT", 0x00010000}, - {"GL_LIST_BIT", 0x00020000}, - {"GL_TEXTURE_BIT", 0x00040000}, - {"GL_SCISSOR_BIT", 0x00080000}, - {"GL_MULTISAMPLE_BIT", 0x20000000}, - {"GL_MULTISAMPLE_BIT_ARB", 0x20000000}, - {"GL_MULTISAMPLE_BIT_EXT", 0x20000000}, - {"GL_MULTISAMPLE_BIT_3DFX", 0x20000000}, - {"GL_ALL_ATTRIB_BITS", 0xFFFFFFFF}, - {"GL_COVERAGE_BUFFER_BIT_NV", 0x00008000}, - {"GL_CLIENT_PIXEL_STORE_BIT", 0x00000001}, - {"GL_CLIENT_VERTEX_ARRAY_BIT", 0x00000002}, - {"GL_CLIENT_ALL_ATTRIB_BITS", 0xFFFFFFFF}, - {"GL_CONTEXT_FLAG_FORWARD_COMPATIBLE_BIT", 0x00000001}, - {"GL_CONTEXT_FLAG_DEBUG_BIT", 0x00000002}, - {"GL_CONTEXT_FLAG_DEBUG_BIT_KHR", 0x00000002}, - {"GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB", 0x00000004}, - {"GL_CONTEXT_CORE_PROFILE_BIT", 0x00000001}, - {"GL_CONTEXT_COMPATIBILITY_PROFILE_BIT", 0x00000002}, - {"GL_MAP_READ_BIT", 0x0001}, - {"GL_MAP_READ_BIT_EXT", 0x0001}, - {"GL_MAP_WRITE_BIT", 0x0002}, - {"GL_MAP_WRITE_BIT_EXT", 0x0002}, - {"GL_MAP_INVALIDATE_RANGE_BIT", 0x0004}, - {"GL_MAP_INVALIDATE_RANGE_BIT_EXT", 0x0004}, - {"GL_MAP_INVALIDATE_BUFFER_BIT", 0x0008}, - {"GL_MAP_INVALIDATE_BUFFER_BIT_EXT", 0x0008}, - {"GL_MAP_FLUSH_EXPLICIT_BIT", 0x0010}, - {"GL_MAP_FLUSH_EXPLICIT_BIT_EXT", 0x0010}, - {"GL_MAP_UNSYNCHRONIZED_BIT", 0x0020}, - {"GL_MAP_UNSYNCHRONIZED_BIT_EXT", 0x0020}, - {"GL_MAP_PERSISTENT_BIT", 0x0040}, - {"GL_MAP_COHERENT_BIT", 0x0080}, - {"GL_DYNAMIC_STORAGE_BIT", 0x0100}, - {"GL_CLIENT_STORAGE_BIT", 0x0200}, - {"GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT", 0x00000001}, - {"GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT_EXT", 0x00000001}, - {"GL_ELEMENT_ARRAY_BARRIER_BIT", 0x00000002}, - {"GL_ELEMENT_ARRAY_BARRIER_BIT_EXT", 0x00000002}, - {"GL_UNIFORM_BARRIER_BIT", 0x00000004}, - {"GL_UNIFORM_BARRIER_BIT_EXT", 0x00000004}, - {"GL_TEXTURE_FETCH_BARRIER_BIT", 0x00000008}, - {"GL_TEXTURE_FETCH_BARRIER_BIT_EXT", 0x00000008}, - {"GL_SHADER_GLOBAL_ACCESS_BARRIER_BIT_NV", 0x00000010}, - {"GL_SHADER_IMAGE_ACCESS_BARRIER_BIT", 0x00000020}, - {"GL_SHADER_IMAGE_ACCESS_BARRIER_BIT_EXT", 0x00000020}, - {"GL_COMMAND_BARRIER_BIT", 0x00000040}, - {"GL_COMMAND_BARRIER_BIT_EXT", 0x00000040}, - {"GL_PIXEL_BUFFER_BARRIER_BIT", 0x00000080}, - {"GL_PIXEL_BUFFER_BARRIER_BIT_EXT", 0x00000080}, - {"GL_TEXTURE_UPDATE_BARRIER_BIT", 0x00000100}, - {"GL_TEXTURE_UPDATE_BARRIER_BIT_EXT", 0x00000100}, - {"GL_BUFFER_UPDATE_BARRIER_BIT", 0x00000200}, - {"GL_BUFFER_UPDATE_BARRIER_BIT_EXT", 0x00000200}, - {"GL_FRAMEBUFFER_BARRIER_BIT", 0x00000400}, - {"GL_FRAMEBUFFER_BARRIER_BIT_EXT", 0x00000400}, - {"GL_TRANSFORM_FEEDBACK_BARRIER_BIT", 0x00000800}, - {"GL_TRANSFORM_FEEDBACK_BARRIER_BIT_EXT", 0x00000800}, - {"GL_ATOMIC_COUNTER_BARRIER_BIT", 0x00001000}, - {"GL_ATOMIC_COUNTER_BARRIER_BIT_EXT", 0x00001000}, - {"GL_SHADER_STORAGE_BARRIER_BIT", 0x00002000}, - {"GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT", 0x00004000}, - {"GL_QUERY_BUFFER_BARRIER_BIT", 0x00008000}, - {"GL_ALL_BARRIER_BITS", 0xFFFFFFFF}, - {"GL_ALL_BARRIER_BITS_EXT", 0xFFFFFFFF}, - {"GL_SYNC_FLUSH_COMMANDS_BIT", 0x00000001}, - {"GL_SYNC_FLUSH_COMMANDS_BIT_APPLE", 0x00000001}, - {"GL_VERTEX_SHADER_BIT", 0x00000001}, - {"GL_VERTEX_SHADER_BIT_EXT", 0x00000001}, - {"GL_FRAGMENT_SHADER_BIT", 0x00000002}, - {"GL_FRAGMENT_SHADER_BIT_EXT", 0x00000002}, - {"GL_GEOMETRY_SHADER_BIT", 0x00000004}, - {"GL_TESS_CONTROL_SHADER_BIT", 0x00000008}, - {"GL_TESS_EVALUATION_SHADER_BIT", 0x00000010}, - {"GL_COMPUTE_SHADER_BIT", 0x00000020}, - {"GL_ALL_SHADER_BITS", 0xFFFFFFFF}, - {"GL_ALL_SHADER_BITS_EXT", 0xFFFFFFFF}, - {"GL_TEXTURE_STORAGE_SPARSE_BIT_AMD", 0x00000001}, - {"GL_RED_BIT_ATI", 0x00000001}, - {"GL_GREEN_BIT_ATI", 0x00000002}, - {"GL_BLUE_BIT_ATI", 0x00000004}, - {"GL_2X_BIT_ATI", 0x00000001}, - {"GL_4X_BIT_ATI", 0x00000002}, - {"GL_8X_BIT_ATI", 0x00000004}, - {"GL_HALF_BIT_ATI", 0x00000008}, - {"GL_QUARTER_BIT_ATI", 0x00000010}, - {"GL_EIGHTH_BIT_ATI", 0x00000020}, - {"GL_SATURATE_BIT_ATI", 0x00000040}, - {"GL_COMP_BIT_ATI", 0x00000002}, - {"GL_NEGATE_BIT_ATI", 0x00000004}, - {"GL_BIAS_BIT_ATI", 0x00000008}, - {"GL_TRACE_OPERATIONS_BIT_MESA", 0x0001}, - {"GL_TRACE_PRIMITIVES_BIT_MESA", 0x0002}, - {"GL_TRACE_ARRAYS_BIT_MESA", 0x0004}, - {"GL_TRACE_TEXTURES_BIT_MESA", 0x0008}, - {"GL_TRACE_PIXELS_BIT_MESA", 0x0010}, - {"GL_TRACE_ERRORS_BIT_MESA", 0x0020}, - {"GL_TRACE_ALL_BITS_MESA", 0xFFFF}, - {"GL_BOLD_BIT_NV", 0x01}, - {"GL_ITALIC_BIT_NV", 0x02}, - {"GL_GLYPH_WIDTH_BIT_NV", 0x01}, - {"GL_GLYPH_HEIGHT_BIT_NV", 0x02}, - {"GL_GLYPH_HORIZONTAL_BEARING_X_BIT_NV", 0x04}, - {"GL_GLYPH_HORIZONTAL_BEARING_Y_BIT_NV", 0x08}, - {"GL_GLYPH_HORIZONTAL_BEARING_ADVANCE_BIT_NV", 0x10}, - {"GL_GLYPH_VERTICAL_BEARING_X_BIT_NV", 0x20}, - {"GL_GLYPH_VERTICAL_BEARING_Y_BIT_NV", 0x40}, - {"GL_GLYPH_VERTICAL_BEARING_ADVANCE_BIT_NV", 0x80}, - {"GL_GLYPH_HAS_KERNING_BIT_NV", 0x100}, - {"GL_FONT_X_MIN_BOUNDS_BIT_NV", 0x00010000}, - {"GL_FONT_Y_MIN_BOUNDS_BIT_NV", 0x00020000}, - {"GL_FONT_X_MAX_BOUNDS_BIT_NV", 0x00040000}, - {"GL_FONT_Y_MAX_BOUNDS_BIT_NV", 0x00080000}, - {"GL_FONT_UNITS_PER_EM_BIT_NV", 0x00100000}, - {"GL_FONT_ASCENDER_BIT_NV", 0x00200000}, - {"GL_FONT_DESCENDER_BIT_NV", 0x00400000}, - {"GL_FONT_HEIGHT_BIT_NV", 0x00800000}, - {"GL_FONT_MAX_ADVANCE_WIDTH_BIT_NV", 0x01000000}, - {"GL_FONT_MAX_ADVANCE_HEIGHT_BIT_NV", 0x02000000}, - {"GL_FONT_UNDERLINE_POSITION_BIT_NV", 0x04000000}, - {"GL_FONT_UNDERLINE_THICKNESS_BIT_NV", 0x08000000}, - {"GL_FONT_HAS_KERNING_BIT_NV", 0x10000000}, - {"GL_VERTEX23_BIT_PGI", 0x00000004}, - {"GL_VERTEX4_BIT_PGI", 0x00000008}, - {"GL_COLOR3_BIT_PGI", 0x00010000}, - {"GL_COLOR4_BIT_PGI", 0x00020000}, - {"GL_EDGEFLAG_BIT_PGI", 0x00040000}, - {"GL_INDEX_BIT_PGI", 0x00080000}, - {"GL_MAT_AMBIENT_BIT_PGI", 0x00100000}, - {"GL_MAT_AMBIENT_AND_DIFFUSE_BIT_PGI", 0x00200000}, - {"GL_MAT_DIFFUSE_BIT_PGI", 0x00400000}, - {"GL_MAT_EMISSION_BIT_PGI", 0x00800000}, - {"GL_MAT_COLOR_INDEXES_BIT_PGI", 0x01000000}, - {"GL_MAT_SHININESS_BIT_PGI", 0x02000000}, - {"GL_MAT_SPECULAR_BIT_PGI", 0x04000000}, - {"GL_NORMAL_BIT_PGI", 0x08000000}, - {"GL_TEXCOORD1_BIT_PGI", 0x10000000}, - {"GL_TEXCOORD2_BIT_PGI", 0x20000000}, - {"GL_TEXCOORD3_BIT_PGI", 0x40000000}, - {"GL_TEXCOORD4_BIT_PGI", 0x80000000}, - {"GL_COLOR_BUFFER_BIT0_QCOM", 0x00000001}, - {"GL_COLOR_BUFFER_BIT1_QCOM", 0x00000002}, - {"GL_COLOR_BUFFER_BIT2_QCOM", 0x00000004}, - {"GL_COLOR_BUFFER_BIT3_QCOM", 0x00000008}, - {"GL_COLOR_BUFFER_BIT4_QCOM", 0x00000010}, - {"GL_COLOR_BUFFER_BIT5_QCOM", 0x00000020}, - {"GL_COLOR_BUFFER_BIT6_QCOM", 0x00000040}, - {"GL_COLOR_BUFFER_BIT7_QCOM", 0x00000080}, - {"GL_DEPTH_BUFFER_BIT0_QCOM", 0x00000100}, - {"GL_DEPTH_BUFFER_BIT1_QCOM", 0x00000200}, - {"GL_DEPTH_BUFFER_BIT2_QCOM", 0x00000400}, - {"GL_DEPTH_BUFFER_BIT3_QCOM", 0x00000800}, - {"GL_DEPTH_BUFFER_BIT4_QCOM", 0x00001000}, - {"GL_DEPTH_BUFFER_BIT5_QCOM", 0x00002000}, - {"GL_DEPTH_BUFFER_BIT6_QCOM", 0x00004000}, - {"GL_DEPTH_BUFFER_BIT7_QCOM", 0x00008000}, - {"GL_STENCIL_BUFFER_BIT0_QCOM", 0x00010000}, - {"GL_STENCIL_BUFFER_BIT1_QCOM", 0x00020000}, - {"GL_STENCIL_BUFFER_BIT2_QCOM", 0x00040000}, - {"GL_STENCIL_BUFFER_BIT3_QCOM", 0x00080000}, - {"GL_STENCIL_BUFFER_BIT4_QCOM", 0x00100000}, - {"GL_STENCIL_BUFFER_BIT5_QCOM", 0x00200000}, - {"GL_STENCIL_BUFFER_BIT6_QCOM", 0x00400000}, - {"GL_STENCIL_BUFFER_BIT7_QCOM", 0x00800000}, - {"GL_MULTISAMPLE_BUFFER_BIT0_QCOM", 0x01000000}, - {"GL_MULTISAMPLE_BUFFER_BIT1_QCOM", 0x02000000}, - {"GL_MULTISAMPLE_BUFFER_BIT2_QCOM", 0x04000000}, - {"GL_MULTISAMPLE_BUFFER_BIT3_QCOM", 0x08000000}, - {"GL_MULTISAMPLE_BUFFER_BIT4_QCOM", 0x10000000}, - {"GL_MULTISAMPLE_BUFFER_BIT5_QCOM", 0x20000000}, - {"GL_MULTISAMPLE_BUFFER_BIT6_QCOM", 0x40000000}, - {"GL_MULTISAMPLE_BUFFER_BIT7_QCOM", 0x80000000}, - {"GL_TEXTURE_DEFORMATION_BIT_SGIX", 0x00000001}, - {"GL_GEOMETRY_DEFORMATION_BIT_SGIX", 0x00000002}, - {"GL_RESTART_SUN", 0x0001}, - {"GL_REPLACE_MIDDLE_SUN", 0x0002}, - {"GL_REPLACE_OLDEST_SUN", 0x0003}, - {"GL_LAYOUT_DEFAULT_INTEL", 0}, - {"GL_LAYOUT_LINEAR_INTEL", 1}, - {"GL_LAYOUT_LINEAR_CPU_CACHED_INTEL", 2}, - {"GL_NEXT_BUFFER_NV", -2}, - {"GL_SKIP_COMPONENTS4_NV", -3}, - {"GL_SKIP_COMPONENTS3_NV", -4}, - {"GL_SKIP_COMPONENTS2_NV", -5}, - {"GL_SKIP_COMPONENTS1_NV", -6}, - {"GL_CLOSE_PATH_NV", 0x00}, - {"GL_MOVE_TO_NV", 0x02}, - {"GL_RELATIVE_MOVE_TO_NV", 0x03}, - {"GL_LINE_TO_NV", 0x04}, - {"GL_RELATIVE_LINE_TO_NV", 0x05}, - {"GL_HORIZONTAL_LINE_TO_NV", 0x06}, - {"GL_RELATIVE_HORIZONTAL_LINE_TO_NV", 0x07}, - {"GL_VERTICAL_LINE_TO_NV", 0x08}, - {"GL_RELATIVE_VERTICAL_LINE_TO_NV", 0x09}, - {"GL_QUADRATIC_CURVE_TO_NV", 0x0A}, - {"GL_RELATIVE_QUADRATIC_CURVE_TO_NV", 0x0B}, - {"GL_CUBIC_CURVE_TO_NV", 0x0C}, - {"GL_RELATIVE_CUBIC_CURVE_TO_NV", 0x0D}, - {"GL_SMOOTH_QUADRATIC_CURVE_TO_NV", 0x0E}, - {"GL_RELATIVE_SMOOTH_QUADRATIC_CURVE_TO_NV", 0x0F}, - {"GL_SMOOTH_CUBIC_CURVE_TO_NV", 0x10}, - {"GL_RELATIVE_SMOOTH_CUBIC_CURVE_TO_NV", 0x11}, - {"GL_SMALL_CCW_ARC_TO_NV", 0x12}, - {"GL_RELATIVE_SMALL_CCW_ARC_TO_NV", 0x13}, - {"GL_SMALL_CW_ARC_TO_NV", 0x14}, - {"GL_RELATIVE_SMALL_CW_ARC_TO_NV", 0x15}, - {"GL_LARGE_CCW_ARC_TO_NV", 0x16}, - {"GL_RELATIVE_LARGE_CCW_ARC_TO_NV", 0x17}, - {"GL_LARGE_CW_ARC_TO_NV", 0x18}, - {"GL_RELATIVE_LARGE_CW_ARC_TO_NV", 0x19}, - {"GL_RESTART_PATH_NV", 0xF0}, - {"GL_DUP_FIRST_CUBIC_CURVE_TO_NV", 0xF2}, - {"GL_DUP_LAST_CUBIC_CURVE_TO_NV", 0xF4}, - {"GL_RECT_NV", 0xF6}, - {"GL_CIRCULAR_CCW_ARC_TO_NV", 0xF8}, - {"GL_CIRCULAR_CW_ARC_TO_NV", 0xFA}, - {"GL_CIRCULAR_TANGENT_ARC_TO_NV", 0xFC}, - {"GL_ARC_TO_NV", 0xFE}, - {"GL_RELATIVE_ARC_TO_NV", 0xFF}, - {"GL_FALSE", 0}, - {"GL_NO_ERROR", 0}, - {"GL_ZERO", 0}, - {"GL_NONE", 0}, - {"GL_NONE_OES", 0}, - {"GL_TRUE", 1}, - {"GL_ONE", 1}, - {"GL_VERSION_ES_CL_1_0", 1}, - {"GL_VERSION_ES_CM_1_1", 1}, - {"GL_VERSION_ES_CL_1_1", 1}, - {"GL_POINTS", 0x0000}, - {"GL_LINES", 0x0001}, - {"GL_LINE_LOOP", 0x0002}, - {"GL_LINE_STRIP", 0x0003}, - {"GL_TRIANGLES", 0x0004}, - {"GL_TRIANGLE_STRIP", 0x0005}, - {"GL_TRIANGLE_FAN", 0x0006}, - {"GL_QUADS", 0x0007}, - {"GL_QUAD_STRIP", 0x0008}, - {"GL_POLYGON", 0x0009}, - {"GL_LINES_ADJACENCY", 0x000A}, - {"GL_LINES_ADJACENCY_ARB", 0x000A}, - {"GL_LINES_ADJACENCY_EXT", 0x000A}, - {"GL_LINE_STRIP_ADJACENCY", 0x000B}, - {"GL_LINE_STRIP_ADJACENCY_ARB", 0x000B}, - {"GL_LINE_STRIP_ADJACENCY_EXT", 0x000B}, - {"GL_TRIANGLES_ADJACENCY", 0x000C}, - {"GL_TRIANGLES_ADJACENCY_ARB", 0x000C}, - {"GL_TRIANGLES_ADJACENCY_EXT", 0x000C}, - {"GL_TRIANGLE_STRIP_ADJACENCY", 0x000D}, - {"GL_TRIANGLE_STRIP_ADJACENCY_ARB", 0x000D}, - {"GL_TRIANGLE_STRIP_ADJACENCY_EXT", 0x000D}, - {"GL_PATCHES", 0x000E}, - {"GL_ACCUM", 0x0100}, - {"GL_LOAD", 0x0101}, - {"GL_RETURN", 0x0102}, - {"GL_MULT", 0x0103}, - {"GL_ADD", 0x0104}, - {"GL_NEVER", 0x0200}, - {"GL_LESS", 0x0201}, - {"GL_EQUAL", 0x0202}, - {"GL_LEQUAL", 0x0203}, - {"GL_GREATER", 0x0204}, - {"GL_NOTEQUAL", 0x0205}, - {"GL_GEQUAL", 0x0206}, - {"GL_ALWAYS", 0x0207}, - {"GL_SRC_COLOR", 0x0300}, - {"GL_ONE_MINUS_SRC_COLOR", 0x0301}, - {"GL_SRC_ALPHA", 0x0302}, - {"GL_ONE_MINUS_SRC_ALPHA", 0x0303}, - {"GL_DST_ALPHA", 0x0304}, - {"GL_ONE_MINUS_DST_ALPHA", 0x0305}, - {"GL_DST_COLOR", 0x0306}, - {"GL_ONE_MINUS_DST_COLOR", 0x0307}, - {"GL_SRC_ALPHA_SATURATE", 0x0308}, - {"GL_FRONT_LEFT", 0x0400}, - {"GL_FRONT_RIGHT", 0x0401}, - {"GL_BACK_LEFT", 0x0402}, - {"GL_BACK_RIGHT", 0x0403}, - {"GL_FRONT", 0x0404}, - {"GL_BACK", 0x0405}, - {"GL_LEFT", 0x0406}, - {"GL_RIGHT", 0x0407}, - {"GL_FRONT_AND_BACK", 0x0408}, - {"GL_AUX0", 0x0409}, - {"GL_AUX1", 0x040A}, - {"GL_AUX2", 0x040B}, - {"GL_AUX3", 0x040C}, - {"GL_INVALID_ENUM", 0x0500}, - {"GL_INVALID_VALUE", 0x0501}, - {"GL_INVALID_OPERATION", 0x0502}, - {"GL_STACK_OVERFLOW", 0x0503}, - {"GL_STACK_OVERFLOW_KHR", 0x0503}, - {"GL_STACK_UNDERFLOW", 0x0504}, - {"GL_STACK_UNDERFLOW_KHR", 0x0504}, - {"GL_OUT_OF_MEMORY", 0x0505}, - {"GL_INVALID_FRAMEBUFFER_OPERATION", 0x0506}, - {"GL_INVALID_FRAMEBUFFER_OPERATION_EXT", 0x0506}, - {"GL_INVALID_FRAMEBUFFER_OPERATION_OES", 0x0506}, - {"GL_2D", 0x0600}, - {"GL_3D", 0x0601}, - {"GL_3D_COLOR", 0x0602}, - {"GL_3D_COLOR_TEXTURE", 0x0603}, - {"GL_4D_COLOR_TEXTURE", 0x0604}, - {"GL_PASS_THROUGH_TOKEN", 0x0700}, - {"GL_POINT_TOKEN", 0x0701}, - {"GL_LINE_TOKEN", 0x0702}, - {"GL_POLYGON_TOKEN", 0x0703}, - {"GL_BITMAP_TOKEN", 0x0704}, - {"GL_DRAW_PIXEL_TOKEN", 0x0705}, - {"GL_COPY_PIXEL_TOKEN", 0x0706}, - {"GL_LINE_RESET_TOKEN", 0x0707}, - {"GL_EXP", 0x0800}, - {"GL_EXP2", 0x0801}, - {"GL_CW", 0x0900}, - {"GL_CCW", 0x0901}, - {"GL_COEFF", 0x0A00}, - {"GL_ORDER", 0x0A01}, - {"GL_DOMAIN", 0x0A02}, - {"GL_CURRENT_COLOR", 0x0B00}, - {"GL_CURRENT_INDEX", 0x0B01}, - {"GL_CURRENT_NORMAL", 0x0B02}, - {"GL_CURRENT_TEXTURE_COORDS", 0x0B03}, - {"GL_CURRENT_RASTER_COLOR", 0x0B04}, - {"GL_CURRENT_RASTER_INDEX", 0x0B05}, - {"GL_CURRENT_RASTER_TEXTURE_COORDS", 0x0B06}, - {"GL_CURRENT_RASTER_POSITION", 0x0B07}, - {"GL_CURRENT_RASTER_POSITION_VALID", 0x0B08}, - {"GL_CURRENT_RASTER_DISTANCE", 0x0B09}, - {"GL_POINT_SMOOTH", 0x0B10}, - {"GL_POINT_SIZE", 0x0B11}, - {"GL_POINT_SIZE_RANGE", 0x0B12}, - {"GL_SMOOTH_POINT_SIZE_RANGE", 0x0B12}, - {"GL_POINT_SIZE_GRANULARITY", 0x0B13}, - {"GL_SMOOTH_POINT_SIZE_GRANULARITY", 0x0B13}, - {"GL_LINE_SMOOTH", 0x0B20}, - {"GL_LINE_WIDTH", 0x0B21}, - {"GL_LINE_WIDTH_RANGE", 0x0B22}, - {"GL_SMOOTH_LINE_WIDTH_RANGE", 0x0B22}, - {"GL_LINE_WIDTH_GRANULARITY", 0x0B23}, - {"GL_SMOOTH_LINE_WIDTH_GRANULARITY", 0x0B23}, - {"GL_LINE_STIPPLE", 0x0B24}, - {"GL_LINE_STIPPLE_PATTERN", 0x0B25}, - {"GL_LINE_STIPPLE_REPEAT", 0x0B26}, - {"GL_LIST_MODE", 0x0B30}, - {"GL_MAX_LIST_NESTING", 0x0B31}, - {"GL_LIST_BASE", 0x0B32}, - {"GL_LIST_INDEX", 0x0B33}, - {"GL_POLYGON_MODE", 0x0B40}, - {"GL_POLYGON_SMOOTH", 0x0B41}, - {"GL_POLYGON_STIPPLE", 0x0B42}, - {"GL_EDGE_FLAG", 0x0B43}, - {"GL_CULL_FACE", 0x0B44}, - {"GL_CULL_FACE_MODE", 0x0B45}, - {"GL_FRONT_FACE", 0x0B46}, - {"GL_LIGHTING", 0x0B50}, - {"GL_LIGHT_MODEL_LOCAL_VIEWER", 0x0B51}, - {"GL_LIGHT_MODEL_TWO_SIDE", 0x0B52}, - {"GL_LIGHT_MODEL_AMBIENT", 0x0B53}, - {"GL_SHADE_MODEL", 0x0B54}, - {"GL_COLOR_MATERIAL_FACE", 0x0B55}, - {"GL_COLOR_MATERIAL_PARAMETER", 0x0B56}, - {"GL_COLOR_MATERIAL", 0x0B57}, - {"GL_FOG", 0x0B60}, - {"GL_FOG_INDEX", 0x0B61}, - {"GL_FOG_DENSITY", 0x0B62}, - {"GL_FOG_START", 0x0B63}, - {"GL_FOG_END", 0x0B64}, - {"GL_FOG_MODE", 0x0B65}, - {"GL_FOG_COLOR", 0x0B66}, - {"GL_DEPTH_RANGE", 0x0B70}, - {"GL_DEPTH_TEST", 0x0B71}, - {"GL_DEPTH_WRITEMASK", 0x0B72}, - {"GL_DEPTH_CLEAR_VALUE", 0x0B73}, - {"GL_DEPTH_FUNC", 0x0B74}, - {"GL_ACCUM_CLEAR_VALUE", 0x0B80}, - {"GL_STENCIL_TEST", 0x0B90}, - {"GL_STENCIL_CLEAR_VALUE", 0x0B91}, - {"GL_STENCIL_FUNC", 0x0B92}, - {"GL_STENCIL_VALUE_MASK", 0x0B93}, - {"GL_STENCIL_FAIL", 0x0B94}, - {"GL_STENCIL_PASS_DEPTH_FAIL", 0x0B95}, - {"GL_STENCIL_PASS_DEPTH_PASS", 0x0B96}, - {"GL_STENCIL_REF", 0x0B97}, - {"GL_STENCIL_WRITEMASK", 0x0B98}, - {"GL_MATRIX_MODE", 0x0BA0}, - {"GL_NORMALIZE", 0x0BA1}, - {"GL_VIEWPORT", 0x0BA2}, - {"GL_MODELVIEW_STACK_DEPTH", 0x0BA3}, - {"GL_MODELVIEW0_STACK_DEPTH_EXT", 0x0BA3}, - {"GL_PROJECTION_STACK_DEPTH", 0x0BA4}, - {"GL_TEXTURE_STACK_DEPTH", 0x0BA5}, - {"GL_MODELVIEW_MATRIX", 0x0BA6}, - {"GL_MODELVIEW0_MATRIX_EXT", 0x0BA6}, - {"GL_PROJECTION_MATRIX", 0x0BA7}, - {"GL_TEXTURE_MATRIX", 0x0BA8}, - {"GL_ATTRIB_STACK_DEPTH", 0x0BB0}, - {"GL_CLIENT_ATTRIB_STACK_DEPTH", 0x0BB1}, - {"GL_ALPHA_TEST", 0x0BC0}, - {"GL_ALPHA_TEST_QCOM", 0x0BC0}, - {"GL_ALPHA_TEST_FUNC", 0x0BC1}, - {"GL_ALPHA_TEST_FUNC_QCOM", 0x0BC1}, - {"GL_ALPHA_TEST_REF", 0x0BC2}, - {"GL_ALPHA_TEST_REF_QCOM", 0x0BC2}, - {"GL_DITHER", 0x0BD0}, - {"GL_BLEND_DST", 0x0BE0}, - {"GL_BLEND_SRC", 0x0BE1}, - {"GL_BLEND", 0x0BE2}, - {"GL_LOGIC_OP_MODE", 0x0BF0}, - {"GL_INDEX_LOGIC_OP", 0x0BF1}, - {"GL_LOGIC_OP", 0x0BF1}, - {"GL_COLOR_LOGIC_OP", 0x0BF2}, - {"GL_AUX_BUFFERS", 0x0C00}, - {"GL_DRAW_BUFFER", 0x0C01}, - {"GL_DRAW_BUFFER_EXT", 0x0C01}, - {"GL_READ_BUFFER", 0x0C02}, - {"GL_READ_BUFFER_EXT", 0x0C02}, - {"GL_READ_BUFFER_NV", 0x0C02}, - {"GL_SCISSOR_BOX", 0x0C10}, - {"GL_SCISSOR_TEST", 0x0C11}, - {"GL_INDEX_CLEAR_VALUE", 0x0C20}, - {"GL_INDEX_WRITEMASK", 0x0C21}, - {"GL_COLOR_CLEAR_VALUE", 0x0C22}, - {"GL_COLOR_WRITEMASK", 0x0C23}, - {"GL_INDEX_MODE", 0x0C30}, - {"GL_RGBA_MODE", 0x0C31}, - {"GL_DOUBLEBUFFER", 0x0C32}, - {"GL_STEREO", 0x0C33}, - {"GL_RENDER_MODE", 0x0C40}, - {"GL_PERSPECTIVE_CORRECTION_HINT", 0x0C50}, - {"GL_POINT_SMOOTH_HINT", 0x0C51}, - {"GL_LINE_SMOOTH_HINT", 0x0C52}, - {"GL_POLYGON_SMOOTH_HINT", 0x0C53}, - {"GL_FOG_HINT", 0x0C54}, - {"GL_TEXTURE_GEN_S", 0x0C60}, - {"GL_TEXTURE_GEN_T", 0x0C61}, - {"GL_TEXTURE_GEN_R", 0x0C62}, - {"GL_TEXTURE_GEN_Q", 0x0C63}, - {"GL_PIXEL_MAP_I_TO_I", 0x0C70}, - {"GL_PIXEL_MAP_S_TO_S", 0x0C71}, - {"GL_PIXEL_MAP_I_TO_R", 0x0C72}, - {"GL_PIXEL_MAP_I_TO_G", 0x0C73}, - {"GL_PIXEL_MAP_I_TO_B", 0x0C74}, - {"GL_PIXEL_MAP_I_TO_A", 0x0C75}, - {"GL_PIXEL_MAP_R_TO_R", 0x0C76}, - {"GL_PIXEL_MAP_G_TO_G", 0x0C77}, - {"GL_PIXEL_MAP_B_TO_B", 0x0C78}, - {"GL_PIXEL_MAP_A_TO_A", 0x0C79}, - {"GL_PIXEL_MAP_I_TO_I_SIZE", 0x0CB0}, - {"GL_PIXEL_MAP_S_TO_S_SIZE", 0x0CB1}, - {"GL_PIXEL_MAP_I_TO_R_SIZE", 0x0CB2}, - {"GL_PIXEL_MAP_I_TO_G_SIZE", 0x0CB3}, - {"GL_PIXEL_MAP_I_TO_B_SIZE", 0x0CB4}, - {"GL_PIXEL_MAP_I_TO_A_SIZE", 0x0CB5}, - {"GL_PIXEL_MAP_R_TO_R_SIZE", 0x0CB6}, - {"GL_PIXEL_MAP_G_TO_G_SIZE", 0x0CB7}, - {"GL_PIXEL_MAP_B_TO_B_SIZE", 0x0CB8}, - {"GL_PIXEL_MAP_A_TO_A_SIZE", 0x0CB9}, - {"GL_UNPACK_SWAP_BYTES", 0x0CF0}, - {"GL_UNPACK_LSB_FIRST", 0x0CF1}, - {"GL_UNPACK_ROW_LENGTH", 0x0CF2}, - {"GL_UNPACK_ROW_LENGTH_EXT", 0x0CF2}, - {"GL_UNPACK_SKIP_ROWS", 0x0CF3}, - {"GL_UNPACK_SKIP_ROWS_EXT", 0x0CF3}, - {"GL_UNPACK_SKIP_PIXELS", 0x0CF4}, - {"GL_UNPACK_SKIP_PIXELS_EXT", 0x0CF4}, - {"GL_UNPACK_ALIGNMENT", 0x0CF5}, - {"GL_PACK_SWAP_BYTES", 0x0D00}, - {"GL_PACK_LSB_FIRST", 0x0D01}, - {"GL_PACK_ROW_LENGTH", 0x0D02}, - {"GL_PACK_SKIP_ROWS", 0x0D03}, - {"GL_PACK_SKIP_PIXELS", 0x0D04}, - {"GL_PACK_ALIGNMENT", 0x0D05}, - {"GL_MAP_COLOR", 0x0D10}, - {"GL_MAP_STENCIL", 0x0D11}, - {"GL_INDEX_SHIFT", 0x0D12}, - {"GL_INDEX_OFFSET", 0x0D13}, - {"GL_RED_SCALE", 0x0D14}, - {"GL_RED_BIAS", 0x0D15}, - {"GL_ZOOM_X", 0x0D16}, - {"GL_ZOOM_Y", 0x0D17}, - {"GL_GREEN_SCALE", 0x0D18}, - {"GL_GREEN_BIAS", 0x0D19}, - {"GL_BLUE_SCALE", 0x0D1A}, - {"GL_BLUE_BIAS", 0x0D1B}, - {"GL_ALPHA_SCALE", 0x0D1C}, - {"GL_ALPHA_BIAS", 0x0D1D}, - {"GL_DEPTH_SCALE", 0x0D1E}, - {"GL_DEPTH_BIAS", 0x0D1F}, - {"GL_MAX_EVAL_ORDER", 0x0D30}, - {"GL_MAX_LIGHTS", 0x0D31}, - {"GL_MAX_CLIP_PLANES", 0x0D32}, - {"GL_MAX_CLIP_DISTANCES", 0x0D32}, - {"GL_MAX_TEXTURE_SIZE", 0x0D33}, - {"GL_MAX_PIXEL_MAP_TABLE", 0x0D34}, - {"GL_MAX_ATTRIB_STACK_DEPTH", 0x0D35}, - {"GL_MAX_MODELVIEW_STACK_DEPTH", 0x0D36}, - {"GL_MAX_NAME_STACK_DEPTH", 0x0D37}, - {"GL_MAX_PROJECTION_STACK_DEPTH", 0x0D38}, - {"GL_MAX_TEXTURE_STACK_DEPTH", 0x0D39}, - {"GL_MAX_VIEWPORT_DIMS", 0x0D3A}, - {"GL_MAX_CLIENT_ATTRIB_STACK_DEPTH", 0x0D3B}, - {"GL_SUBPIXEL_BITS", 0x0D50}, - {"GL_INDEX_BITS", 0x0D51}, - {"GL_RED_BITS", 0x0D52}, - {"GL_GREEN_BITS", 0x0D53}, - {"GL_BLUE_BITS", 0x0D54}, - {"GL_ALPHA_BITS", 0x0D55}, - {"GL_DEPTH_BITS", 0x0D56}, - {"GL_STENCIL_BITS", 0x0D57}, - {"GL_ACCUM_RED_BITS", 0x0D58}, - {"GL_ACCUM_GREEN_BITS", 0x0D59}, - {"GL_ACCUM_BLUE_BITS", 0x0D5A}, - {"GL_ACCUM_ALPHA_BITS", 0x0D5B}, - {"GL_NAME_STACK_DEPTH", 0x0D70}, - {"GL_AUTO_NORMAL", 0x0D80}, - {"GL_MAP1_COLOR_4", 0x0D90}, - {"GL_MAP1_INDEX", 0x0D91}, - {"GL_MAP1_NORMAL", 0x0D92}, - {"GL_MAP1_TEXTURE_COORD_1", 0x0D93}, - {"GL_MAP1_TEXTURE_COORD_2", 0x0D94}, - {"GL_MAP1_TEXTURE_COORD_3", 0x0D95}, - {"GL_MAP1_TEXTURE_COORD_4", 0x0D96}, - {"GL_MAP1_VERTEX_3", 0x0D97}, - {"GL_MAP1_VERTEX_4", 0x0D98}, - {"GL_MAP2_COLOR_4", 0x0DB0}, - {"GL_MAP2_INDEX", 0x0DB1}, - {"GL_MAP2_NORMAL", 0x0DB2}, - {"GL_MAP2_TEXTURE_COORD_1", 0x0DB3}, - {"GL_MAP2_TEXTURE_COORD_2", 0x0DB4}, - {"GL_MAP2_TEXTURE_COORD_3", 0x0DB5}, - {"GL_MAP2_TEXTURE_COORD_4", 0x0DB6}, - {"GL_MAP2_VERTEX_3", 0x0DB7}, - {"GL_MAP2_VERTEX_4", 0x0DB8}, - {"GL_MAP1_GRID_DOMAIN", 0x0DD0}, - {"GL_MAP1_GRID_SEGMENTS", 0x0DD1}, - {"GL_MAP2_GRID_DOMAIN", 0x0DD2}, - {"GL_MAP2_GRID_SEGMENTS", 0x0DD3}, - {"GL_TEXTURE_1D", 0x0DE0}, - {"GL_TEXTURE_2D", 0x0DE1}, - {"GL_FEEDBACK_BUFFER_POINTER", 0x0DF0}, - {"GL_FEEDBACK_BUFFER_SIZE", 0x0DF1}, - {"GL_FEEDBACK_BUFFER_TYPE", 0x0DF2}, - {"GL_SELECTION_BUFFER_POINTER", 0x0DF3}, - {"GL_SELECTION_BUFFER_SIZE", 0x0DF4}, - {"GL_TEXTURE_WIDTH", 0x1000}, - {"GL_TEXTURE_HEIGHT", 0x1001}, - {"GL_TEXTURE_INTERNAL_FORMAT", 0x1003}, - {"GL_TEXTURE_COMPONENTS", 0x1003}, - {"GL_TEXTURE_BORDER_COLOR", 0x1004}, - {"GL_TEXTURE_BORDER_COLOR_NV", 0x1004}, - {"GL_TEXTURE_BORDER", 0x1005}, - {"GL_DONT_CARE", 0x1100}, - {"GL_FASTEST", 0x1101}, - {"GL_NICEST", 0x1102}, - {"GL_AMBIENT", 0x1200}, - {"GL_DIFFUSE", 0x1201}, - {"GL_SPECULAR", 0x1202}, - {"GL_POSITION", 0x1203}, - {"GL_SPOT_DIRECTION", 0x1204}, - {"GL_SPOT_EXPONENT", 0x1205}, - {"GL_SPOT_CUTOFF", 0x1206}, - {"GL_CONSTANT_ATTENUATION", 0x1207}, - {"GL_LINEAR_ATTENUATION", 0x1208}, - {"GL_QUADRATIC_ATTENUATION", 0x1209}, - {"GL_COMPILE", 0x1300}, - {"GL_COMPILE_AND_EXECUTE", 0x1301}, - {"GL_BYTE", 0x1400}, - {"GL_UNSIGNED_BYTE", 0x1401}, - {"GL_SHORT", 0x1402}, - {"GL_UNSIGNED_SHORT", 0x1403}, - {"GL_INT", 0x1404}, - {"GL_UNSIGNED_INT", 0x1405}, - {"GL_FLOAT", 0x1406}, - {"GL_2_BYTES", 0x1407}, - {"GL_3_BYTES", 0x1408}, - {"GL_4_BYTES", 0x1409}, - {"GL_DOUBLE", 0x140A}, - {"GL_DOUBLE_EXT", 0x140A}, - {"GL_HALF_FLOAT", 0x140B}, - {"GL_HALF_FLOAT_ARB", 0x140B}, - {"GL_HALF_FLOAT_NV", 0x140B}, - {"GL_HALF_APPLE", 0x140B}, - {"GL_FIXED", 0x140C}, - {"GL_FIXED_OES", 0x140C}, - {"GL_INT64_NV", 0x140E}, - {"GL_UNSIGNED_INT64_ARB", 0x140F}, - {"GL_UNSIGNED_INT64_NV", 0x140F}, - {"GL_CLEAR", 0x1500}, - {"GL_AND", 0x1501}, - {"GL_AND_REVERSE", 0x1502}, - {"GL_COPY", 0x1503}, - {"GL_AND_INVERTED", 0x1504}, - {"GL_NOOP", 0x1505}, - {"GL_XOR", 0x1506}, - {"GL_OR", 0x1507}, - {"GL_NOR", 0x1508}, - {"GL_EQUIV", 0x1509}, - {"GL_INVERT", 0x150A}, - {"GL_OR_REVERSE", 0x150B}, - {"GL_COPY_INVERTED", 0x150C}, - {"GL_OR_INVERTED", 0x150D}, - {"GL_NAND", 0x150E}, - {"GL_SET", 0x150F}, - {"GL_EMISSION", 0x1600}, - {"GL_SHININESS", 0x1601}, - {"GL_AMBIENT_AND_DIFFUSE", 0x1602}, - {"GL_COLOR_INDEXES", 0x1603}, - {"GL_MODELVIEW", 0x1700}, - {"GL_MODELVIEW0_ARB", 0x1700}, - {"GL_MODELVIEW0_EXT", 0x1700}, - {"GL_PROJECTION", 0x1701}, - {"GL_TEXTURE", 0x1702}, - {"GL_COLOR", 0x1800}, - {"GL_COLOR_EXT", 0x1800}, - {"GL_DEPTH", 0x1801}, - {"GL_DEPTH_EXT", 0x1801}, - {"GL_STENCIL", 0x1802}, - {"GL_STENCIL_EXT", 0x1802}, - {"GL_COLOR_INDEX", 0x1900}, - {"GL_STENCIL_INDEX", 0x1901}, - {"GL_DEPTH_COMPONENT", 0x1902}, - {"GL_RED", 0x1903}, - {"GL_RED_EXT", 0x1903}, - {"GL_GREEN", 0x1904}, - {"GL_BLUE", 0x1905}, - {"GL_ALPHA", 0x1906}, - {"GL_RGB", 0x1907}, - {"GL_RGBA", 0x1908}, - {"GL_LUMINANCE", 0x1909}, - {"GL_LUMINANCE_ALPHA", 0x190A}, - {"GL_BITMAP", 0x1A00}, - {"GL_POINT", 0x1B00}, - {"GL_LINE", 0x1B01}, - {"GL_FILL", 0x1B02}, - {"GL_RENDER", 0x1C00}, - {"GL_FEEDBACK", 0x1C01}, - {"GL_SELECT", 0x1C02}, - {"GL_FLAT", 0x1D00}, - {"GL_SMOOTH", 0x1D01}, - {"GL_KEEP", 0x1E00}, - {"GL_REPLACE", 0x1E01}, - {"GL_INCR", 0x1E02}, - {"GL_DECR", 0x1E03}, - {"GL_VENDOR", 0x1F00}, - {"GL_RENDERER", 0x1F01}, - {"GL_VERSION", 0x1F02}, - {"GL_EXTENSIONS", 0x1F03}, - {"GL_S", 0x2000}, - {"GL_T", 0x2001}, - {"GL_R", 0x2002}, - {"GL_Q", 0x2003}, - {"GL_MODULATE", 0x2100}, - {"GL_DECAL", 0x2101}, - {"GL_TEXTURE_ENV_MODE", 0x2200}, - {"GL_TEXTURE_ENV_COLOR", 0x2201}, - {"GL_TEXTURE_ENV", 0x2300}, - {"GL_EYE_LINEAR", 0x2400}, - {"GL_OBJECT_LINEAR", 0x2401}, - {"GL_SPHERE_MAP", 0x2402}, - {"GL_TEXTURE_GEN_MODE", 0x2500}, - {"GL_OBJECT_PLANE", 0x2501}, - {"GL_EYE_PLANE", 0x2502}, - {"GL_NEAREST", 0x2600}, - {"GL_LINEAR", 0x2601}, - {"GL_NEAREST_MIPMAP_NEAREST", 0x2700}, - {"GL_LINEAR_MIPMAP_NEAREST", 0x2701}, - {"GL_NEAREST_MIPMAP_LINEAR", 0x2702}, - {"GL_LINEAR_MIPMAP_LINEAR", 0x2703}, - {"GL_TEXTURE_MAG_FILTER", 0x2800}, - {"GL_TEXTURE_MIN_FILTER", 0x2801}, - {"GL_TEXTURE_WRAP_S", 0x2802}, - {"GL_TEXTURE_WRAP_T", 0x2803}, - {"GL_CLAMP", 0x2900}, - {"GL_REPEAT", 0x2901}, - {"GL_POLYGON_OFFSET_UNITS", 0x2A00}, - {"GL_POLYGON_OFFSET_POINT", 0x2A01}, - {"GL_POLYGON_OFFSET_LINE", 0x2A02}, - {"GL_R3_G3_B2", 0x2A10}, - {"GL_V2F", 0x2A20}, - {"GL_V3F", 0x2A21}, - {"GL_C4UB_V2F", 0x2A22}, - {"GL_C4UB_V3F", 0x2A23}, - {"GL_C3F_V3F", 0x2A24}, - {"GL_N3F_V3F", 0x2A25}, - {"GL_C4F_N3F_V3F", 0x2A26}, - {"GL_T2F_V3F", 0x2A27}, - {"GL_T4F_V4F", 0x2A28}, - {"GL_T2F_C4UB_V3F", 0x2A29}, - {"GL_T2F_C3F_V3F", 0x2A2A}, - {"GL_T2F_N3F_V3F", 0x2A2B}, - {"GL_T2F_C4F_N3F_V3F", 0x2A2C}, - {"GL_T4F_C4F_N3F_V4F", 0x2A2D}, - {"GL_CLIP_PLANE0", 0x3000}, - {"GL_CLIP_DISTANCE0", 0x3000}, - {"GL_CLIP_PLANE1", 0x3001}, - {"GL_CLIP_DISTANCE1", 0x3001}, - {"GL_CLIP_PLANE2", 0x3002}, - {"GL_CLIP_DISTANCE2", 0x3002}, - {"GL_CLIP_PLANE3", 0x3003}, - {"GL_CLIP_DISTANCE3", 0x3003}, - {"GL_CLIP_PLANE4", 0x3004}, - {"GL_CLIP_DISTANCE4", 0x3004}, - {"GL_CLIP_PLANE5", 0x3005}, - {"GL_CLIP_DISTANCE5", 0x3005}, - {"GL_CLIP_DISTANCE6", 0x3006}, - {"GL_CLIP_DISTANCE7", 0x3007}, - {"GL_LIGHT0", 0x4000}, - {"GL_LIGHT1", 0x4001}, - {"GL_LIGHT2", 0x4002}, - {"GL_LIGHT3", 0x4003}, - {"GL_LIGHT4", 0x4004}, - {"GL_LIGHT5", 0x4005}, - {"GL_LIGHT6", 0x4006}, - {"GL_LIGHT7", 0x4007}, - {"GL_ABGR_EXT", 0x8000}, - {"GL_CONSTANT_COLOR", 0x8001}, - {"GL_CONSTANT_COLOR_EXT", 0x8001}, - {"GL_ONE_MINUS_CONSTANT_COLOR", 0x8002}, - {"GL_ONE_MINUS_CONSTANT_COLOR_EXT", 0x8002}, - {"GL_CONSTANT_ALPHA", 0x8003}, - {"GL_CONSTANT_ALPHA_EXT", 0x8003}, - {"GL_ONE_MINUS_CONSTANT_ALPHA", 0x8004}, - {"GL_ONE_MINUS_CONSTANT_ALPHA_EXT", 0x8004}, - {"GL_BLEND_COLOR", 0x8005}, - {"GL_BLEND_COLOR_EXT", 0x8005}, - {"GL_FUNC_ADD", 0x8006}, - {"GL_FUNC_ADD_EXT", 0x8006}, - {"GL_FUNC_ADD_OES", 0x8006}, - {"GL_MIN", 0x8007}, - {"GL_MIN_EXT", 0x8007}, - {"GL_MAX", 0x8008}, - {"GL_MAX_EXT", 0x8008}, - {"GL_BLEND_EQUATION", 0x8009}, - {"GL_BLEND_EQUATION_EXT", 0x8009}, - {"GL_BLEND_EQUATION_OES", 0x8009}, - {"GL_BLEND_EQUATION_RGB", 0x8009}, - {"GL_BLEND_EQUATION_RGB_EXT", 0x8009}, - {"GL_BLEND_EQUATION_RGB_OES", 0x8009}, - {"GL_FUNC_SUBTRACT", 0x800A}, - {"GL_FUNC_SUBTRACT_EXT", 0x800A}, - {"GL_FUNC_SUBTRACT_OES", 0x800A}, - {"GL_FUNC_REVERSE_SUBTRACT", 0x800B}, - {"GL_FUNC_REVERSE_SUBTRACT_EXT", 0x800B}, - {"GL_FUNC_REVERSE_SUBTRACT_OES", 0x800B}, - {"GL_CMYK_EXT", 0x800C}, - {"GL_CMYKA_EXT", 0x800D}, - {"GL_PACK_CMYK_HINT_EXT", 0x800E}, - {"GL_UNPACK_CMYK_HINT_EXT", 0x800F}, - {"GL_CONVOLUTION_1D", 0x8010}, - {"GL_CONVOLUTION_1D_EXT", 0x8010}, - {"GL_CONVOLUTION_2D", 0x8011}, - {"GL_CONVOLUTION_2D_EXT", 0x8011}, - {"GL_SEPARABLE_2D", 0x8012}, - {"GL_SEPARABLE_2D_EXT", 0x8012}, - {"GL_CONVOLUTION_BORDER_MODE", 0x8013}, - {"GL_CONVOLUTION_BORDER_MODE_EXT", 0x8013}, - {"GL_CONVOLUTION_FILTER_SCALE", 0x8014}, - {"GL_CONVOLUTION_FILTER_SCALE_EXT", 0x8014}, - {"GL_CONVOLUTION_FILTER_BIAS", 0x8015}, - {"GL_CONVOLUTION_FILTER_BIAS_EXT", 0x8015}, - {"GL_REDUCE", 0x8016}, - {"GL_REDUCE_EXT", 0x8016}, - {"GL_CONVOLUTION_FORMAT", 0x8017}, - {"GL_CONVOLUTION_FORMAT_EXT", 0x8017}, - {"GL_CONVOLUTION_WIDTH", 0x8018}, - {"GL_CONVOLUTION_WIDTH_EXT", 0x8018}, - {"GL_CONVOLUTION_HEIGHT", 0x8019}, - {"GL_CONVOLUTION_HEIGHT_EXT", 0x8019}, - {"GL_MAX_CONVOLUTION_WIDTH", 0x801A}, - {"GL_MAX_CONVOLUTION_WIDTH_EXT", 0x801A}, - {"GL_MAX_CONVOLUTION_HEIGHT", 0x801B}, - {"GL_MAX_CONVOLUTION_HEIGHT_EXT", 0x801B}, - {"GL_POST_CONVOLUTION_RED_SCALE", 0x801C}, - {"GL_POST_CONVOLUTION_RED_SCALE_EXT", 0x801C}, - {"GL_POST_CONVOLUTION_GREEN_SCALE", 0x801D}, - {"GL_POST_CONVOLUTION_GREEN_SCALE_EXT", 0x801D}, - {"GL_POST_CONVOLUTION_BLUE_SCALE", 0x801E}, - {"GL_POST_CONVOLUTION_BLUE_SCALE_EXT", 0x801E}, - {"GL_POST_CONVOLUTION_ALPHA_SCALE", 0x801F}, - {"GL_POST_CONVOLUTION_ALPHA_SCALE_EXT", 0x801F}, - {"GL_POST_CONVOLUTION_RED_BIAS", 0x8020}, - {"GL_POST_CONVOLUTION_RED_BIAS_EXT", 0x8020}, - {"GL_POST_CONVOLUTION_GREEN_BIAS", 0x8021}, - {"GL_POST_CONVOLUTION_GREEN_BIAS_EXT", 0x8021}, - {"GL_POST_CONVOLUTION_BLUE_BIAS", 0x8022}, - {"GL_POST_CONVOLUTION_BLUE_BIAS_EXT", 0x8022}, - {"GL_POST_CONVOLUTION_ALPHA_BIAS", 0x8023}, - {"GL_POST_CONVOLUTION_ALPHA_BIAS_EXT", 0x8023}, - {"GL_HISTOGRAM", 0x8024}, - {"GL_HISTOGRAM_EXT", 0x8024}, - {"GL_PROXY_HISTOGRAM", 0x8025}, - {"GL_PROXY_HISTOGRAM_EXT", 0x8025}, - {"GL_HISTOGRAM_WIDTH", 0x8026}, - {"GL_HISTOGRAM_WIDTH_EXT", 0x8026}, - {"GL_HISTOGRAM_FORMAT", 0x8027}, - {"GL_HISTOGRAM_FORMAT_EXT", 0x8027}, - {"GL_HISTOGRAM_RED_SIZE", 0x8028}, - {"GL_HISTOGRAM_RED_SIZE_EXT", 0x8028}, - {"GL_HISTOGRAM_GREEN_SIZE", 0x8029}, - {"GL_HISTOGRAM_GREEN_SIZE_EXT", 0x8029}, - {"GL_HISTOGRAM_BLUE_SIZE", 0x802A}, - {"GL_HISTOGRAM_BLUE_SIZE_EXT", 0x802A}, - {"GL_HISTOGRAM_ALPHA_SIZE", 0x802B}, - {"GL_HISTOGRAM_ALPHA_SIZE_EXT", 0x802B}, - {"GL_HISTOGRAM_LUMINANCE_SIZE", 0x802C}, - {"GL_HISTOGRAM_LUMINANCE_SIZE_EXT", 0x802C}, - {"GL_HISTOGRAM_SINK", 0x802D}, - {"GL_HISTOGRAM_SINK_EXT", 0x802D}, - {"GL_MINMAX", 0x802E}, - {"GL_MINMAX_EXT", 0x802E}, - {"GL_MINMAX_FORMAT", 0x802F}, - {"GL_MINMAX_FORMAT_EXT", 0x802F}, - {"GL_MINMAX_SINK", 0x8030}, - {"GL_MINMAX_SINK_EXT", 0x8030}, - {"GL_TABLE_TOO_LARGE_EXT", 0x8031}, - {"GL_TABLE_TOO_LARGE", 0x8031}, - {"GL_UNSIGNED_BYTE_3_3_2", 0x8032}, - {"GL_UNSIGNED_BYTE_3_3_2_EXT", 0x8032}, - {"GL_UNSIGNED_SHORT_4_4_4_4", 0x8033}, - {"GL_UNSIGNED_SHORT_4_4_4_4_EXT", 0x8033}, - {"GL_UNSIGNED_SHORT_5_5_5_1", 0x8034}, - {"GL_UNSIGNED_SHORT_5_5_5_1_EXT", 0x8034}, - {"GL_UNSIGNED_INT_8_8_8_8", 0x8035}, - {"GL_UNSIGNED_INT_8_8_8_8_EXT", 0x8035}, - {"GL_UNSIGNED_INT_10_10_10_2", 0x8036}, - {"GL_UNSIGNED_INT_10_10_10_2_EXT", 0x8036}, - {"GL_POLYGON_OFFSET_EXT", 0x8037}, - {"GL_POLYGON_OFFSET_FILL", 0x8037}, - {"GL_POLYGON_OFFSET_FACTOR", 0x8038}, - {"GL_POLYGON_OFFSET_FACTOR_EXT", 0x8038}, - {"GL_POLYGON_OFFSET_BIAS_EXT", 0x8039}, - {"GL_RESCALE_NORMAL", 0x803A}, - {"GL_RESCALE_NORMAL_EXT", 0x803A}, - {"GL_ALPHA4", 0x803B}, - {"GL_ALPHA4_EXT", 0x803B}, - {"GL_ALPHA8", 0x803C}, - {"GL_ALPHA8_EXT", 0x803C}, - {"GL_ALPHA12", 0x803D}, - {"GL_ALPHA12_EXT", 0x803D}, - {"GL_ALPHA16", 0x803E}, - {"GL_ALPHA16_EXT", 0x803E}, - {"GL_LUMINANCE4", 0x803F}, - {"GL_LUMINANCE4_EXT", 0x803F}, - {"GL_LUMINANCE8", 0x8040}, - {"GL_LUMINANCE8_EXT", 0x8040}, - {"GL_LUMINANCE12", 0x8041}, - {"GL_LUMINANCE12_EXT", 0x8041}, - {"GL_LUMINANCE16", 0x8042}, - {"GL_LUMINANCE16_EXT", 0x8042}, - {"GL_LUMINANCE4_ALPHA4", 0x8043}, - {"GL_LUMINANCE4_ALPHA4_EXT", 0x8043}, - {"GL_LUMINANCE6_ALPHA2", 0x8044}, - {"GL_LUMINANCE6_ALPHA2_EXT", 0x8044}, - {"GL_LUMINANCE8_ALPHA8", 0x8045}, - {"GL_LUMINANCE8_ALPHA8_EXT", 0x8045}, - {"GL_LUMINANCE12_ALPHA4", 0x8046}, - {"GL_LUMINANCE12_ALPHA4_EXT", 0x8046}, - {"GL_LUMINANCE12_ALPHA12", 0x8047}, - {"GL_LUMINANCE12_ALPHA12_EXT", 0x8047}, - {"GL_LUMINANCE16_ALPHA16", 0x8048}, - {"GL_LUMINANCE16_ALPHA16_EXT", 0x8048}, - {"GL_INTENSITY", 0x8049}, - {"GL_INTENSITY_EXT", 0x8049}, - {"GL_INTENSITY4", 0x804A}, - {"GL_INTENSITY4_EXT", 0x804A}, - {"GL_INTENSITY8", 0x804B}, - {"GL_INTENSITY8_EXT", 0x804B}, - {"GL_INTENSITY12", 0x804C}, - {"GL_INTENSITY12_EXT", 0x804C}, - {"GL_INTENSITY16", 0x804D}, - {"GL_INTENSITY16_EXT", 0x804D}, - {"GL_RGB2_EXT", 0x804E}, - {"GL_RGB4", 0x804F}, - {"GL_RGB4_EXT", 0x804F}, - {"GL_RGB5", 0x8050}, - {"GL_RGB5_EXT", 0x8050}, - {"GL_RGB8", 0x8051}, - {"GL_RGB8_EXT", 0x8051}, - {"GL_RGB10", 0x8052}, - {"GL_RGB10_EXT", 0x8052}, - {"GL_RGB12", 0x8053}, - {"GL_RGB12_EXT", 0x8053}, - {"GL_RGB16", 0x8054}, - {"GL_RGB16_EXT", 0x8054}, - {"GL_RGBA2", 0x8055}, - {"GL_RGBA2_EXT", 0x8055}, - {"GL_RGBA4", 0x8056}, - {"GL_RGBA4_EXT", 0x8056}, - {"GL_RGBA4_OES", 0x8056}, - {"GL_RGB5_A1", 0x8057}, - {"GL_RGB5_A1_EXT", 0x8057}, - {"GL_RGB5_A1_OES", 0x8057}, - {"GL_RGBA8", 0x8058}, - {"GL_RGBA8_EXT", 0x8058}, - {"GL_RGBA8_OES", 0x8058}, - {"GL_RGB10_A2", 0x8059}, - {"GL_RGB10_A2_EXT", 0x8059}, - {"GL_RGBA12", 0x805A}, - {"GL_RGBA12_EXT", 0x805A}, - {"GL_RGBA16", 0x805B}, - {"GL_RGBA16_EXT", 0x805B}, - {"GL_TEXTURE_RED_SIZE", 0x805C}, - {"GL_TEXTURE_RED_SIZE_EXT", 0x805C}, - {"GL_TEXTURE_GREEN_SIZE", 0x805D}, - {"GL_TEXTURE_GREEN_SIZE_EXT", 0x805D}, - {"GL_TEXTURE_BLUE_SIZE", 0x805E}, - {"GL_TEXTURE_BLUE_SIZE_EXT", 0x805E}, - {"GL_TEXTURE_ALPHA_SIZE", 0x805F}, - {"GL_TEXTURE_ALPHA_SIZE_EXT", 0x805F}, - {"GL_TEXTURE_LUMINANCE_SIZE", 0x8060}, - {"GL_TEXTURE_LUMINANCE_SIZE_EXT", 0x8060}, - {"GL_TEXTURE_INTENSITY_SIZE", 0x8061}, - {"GL_TEXTURE_INTENSITY_SIZE_EXT", 0x8061}, - {"GL_REPLACE_EXT", 0x8062}, - {"GL_PROXY_TEXTURE_1D", 0x8063}, - {"GL_PROXY_TEXTURE_1D_EXT", 0x8063}, - {"GL_PROXY_TEXTURE_2D", 0x8064}, - {"GL_PROXY_TEXTURE_2D_EXT", 0x8064}, - {"GL_TEXTURE_TOO_LARGE_EXT", 0x8065}, - {"GL_TEXTURE_PRIORITY", 0x8066}, - {"GL_TEXTURE_PRIORITY_EXT", 0x8066}, - {"GL_TEXTURE_RESIDENT", 0x8067}, - {"GL_TEXTURE_RESIDENT_EXT", 0x8067}, - {"GL_TEXTURE_1D_BINDING_EXT", 0x8068}, - {"GL_TEXTURE_BINDING_1D", 0x8068}, - {"GL_TEXTURE_2D_BINDING_EXT", 0x8069}, - {"GL_TEXTURE_BINDING_2D", 0x8069}, - {"GL_TEXTURE_3D_BINDING_EXT", 0x806A}, - {"GL_TEXTURE_3D_BINDING_OES", 0x806A}, - {"GL_TEXTURE_BINDING_3D", 0x806A}, - {"GL_PACK_SKIP_IMAGES", 0x806B}, - {"GL_PACK_SKIP_IMAGES_EXT", 0x806B}, - {"GL_PACK_IMAGE_HEIGHT", 0x806C}, - {"GL_PACK_IMAGE_HEIGHT_EXT", 0x806C}, - {"GL_UNPACK_SKIP_IMAGES", 0x806D}, - {"GL_UNPACK_SKIP_IMAGES_EXT", 0x806D}, - {"GL_UNPACK_IMAGE_HEIGHT", 0x806E}, - {"GL_UNPACK_IMAGE_HEIGHT_EXT", 0x806E}, - {"GL_TEXTURE_3D", 0x806F}, - {"GL_TEXTURE_3D_EXT", 0x806F}, - {"GL_TEXTURE_3D_OES", 0x806F}, - {"GL_PROXY_TEXTURE_3D", 0x8070}, - {"GL_PROXY_TEXTURE_3D_EXT", 0x8070}, - {"GL_TEXTURE_DEPTH", 0x8071}, - {"GL_TEXTURE_DEPTH_EXT", 0x8071}, - {"GL_TEXTURE_WRAP_R", 0x8072}, - {"GL_TEXTURE_WRAP_R_EXT", 0x8072}, - {"GL_TEXTURE_WRAP_R_OES", 0x8072}, - {"GL_MAX_3D_TEXTURE_SIZE", 0x8073}, - {"GL_MAX_3D_TEXTURE_SIZE_EXT", 0x8073}, - {"GL_MAX_3D_TEXTURE_SIZE_OES", 0x8073}, - {"GL_VERTEX_ARRAY", 0x8074}, - {"GL_VERTEX_ARRAY_EXT", 0x8074}, - {"GL_VERTEX_ARRAY_KHR", 0x8074}, - {"GL_NORMAL_ARRAY", 0x8075}, - {"GL_NORMAL_ARRAY_EXT", 0x8075}, - {"GL_COLOR_ARRAY", 0x8076}, - {"GL_COLOR_ARRAY_EXT", 0x8076}, - {"GL_INDEX_ARRAY", 0x8077}, - {"GL_INDEX_ARRAY_EXT", 0x8077}, - {"GL_TEXTURE_COORD_ARRAY", 0x8078}, - {"GL_TEXTURE_COORD_ARRAY_EXT", 0x8078}, - {"GL_EDGE_FLAG_ARRAY", 0x8079}, - {"GL_EDGE_FLAG_ARRAY_EXT", 0x8079}, - {"GL_VERTEX_ARRAY_SIZE", 0x807A}, - {"GL_VERTEX_ARRAY_SIZE_EXT", 0x807A}, - {"GL_VERTEX_ARRAY_TYPE", 0x807B}, - {"GL_VERTEX_ARRAY_TYPE_EXT", 0x807B}, - {"GL_VERTEX_ARRAY_STRIDE", 0x807C}, - {"GL_VERTEX_ARRAY_STRIDE_EXT", 0x807C}, - {"GL_VERTEX_ARRAY_COUNT_EXT", 0x807D}, - {"GL_NORMAL_ARRAY_TYPE", 0x807E}, - {"GL_NORMAL_ARRAY_TYPE_EXT", 0x807E}, - {"GL_NORMAL_ARRAY_STRIDE", 0x807F}, - {"GL_NORMAL_ARRAY_STRIDE_EXT", 0x807F}, - {"GL_NORMAL_ARRAY_COUNT_EXT", 0x8080}, - {"GL_COLOR_ARRAY_SIZE", 0x8081}, - {"GL_COLOR_ARRAY_SIZE_EXT", 0x8081}, - {"GL_COLOR_ARRAY_TYPE", 0x8082}, - {"GL_COLOR_ARRAY_TYPE_EXT", 0x8082}, - {"GL_COLOR_ARRAY_STRIDE", 0x8083}, - {"GL_COLOR_ARRAY_STRIDE_EXT", 0x8083}, - {"GL_COLOR_ARRAY_COUNT_EXT", 0x8084}, - {"GL_INDEX_ARRAY_TYPE", 0x8085}, - {"GL_INDEX_ARRAY_TYPE_EXT", 0x8085}, - {"GL_INDEX_ARRAY_STRIDE", 0x8086}, - {"GL_INDEX_ARRAY_STRIDE_EXT", 0x8086}, - {"GL_INDEX_ARRAY_COUNT_EXT", 0x8087}, - {"GL_TEXTURE_COORD_ARRAY_SIZE", 0x8088}, - {"GL_TEXTURE_COORD_ARRAY_SIZE_EXT", 0x8088}, - {"GL_TEXTURE_COORD_ARRAY_TYPE", 0x8089}, - {"GL_TEXTURE_COORD_ARRAY_TYPE_EXT", 0x8089}, - {"GL_TEXTURE_COORD_ARRAY_STRIDE", 0x808A}, - {"GL_TEXTURE_COORD_ARRAY_STRIDE_EXT", 0x808A}, - {"GL_TEXTURE_COORD_ARRAY_COUNT_EXT", 0x808B}, - {"GL_EDGE_FLAG_ARRAY_STRIDE", 0x808C}, - {"GL_EDGE_FLAG_ARRAY_STRIDE_EXT", 0x808C}, - {"GL_EDGE_FLAG_ARRAY_COUNT_EXT", 0x808D}, - {"GL_VERTEX_ARRAY_POINTER", 0x808E}, - {"GL_VERTEX_ARRAY_POINTER_EXT", 0x808E}, - {"GL_NORMAL_ARRAY_POINTER", 0x808F}, - {"GL_NORMAL_ARRAY_POINTER_EXT", 0x808F}, - {"GL_COLOR_ARRAY_POINTER", 0x8090}, - {"GL_COLOR_ARRAY_POINTER_EXT", 0x8090}, - {"GL_INDEX_ARRAY_POINTER", 0x8091}, - {"GL_INDEX_ARRAY_POINTER_EXT", 0x8091}, - {"GL_TEXTURE_COORD_ARRAY_POINTER", 0x8092}, - {"GL_TEXTURE_COORD_ARRAY_POINTER_EXT", 0x8092}, - {"GL_EDGE_FLAG_ARRAY_POINTER", 0x8093}, - {"GL_EDGE_FLAG_ARRAY_POINTER_EXT", 0x8093}, - {"GL_INTERLACE_SGIX", 0x8094}, - {"GL_DETAIL_TEXTURE_2D_SGIS", 0x8095}, - {"GL_DETAIL_TEXTURE_2D_BINDING_SGIS", 0x8096}, - {"GL_LINEAR_DETAIL_SGIS", 0x8097}, - {"GL_LINEAR_DETAIL_ALPHA_SGIS", 0x8098}, - {"GL_LINEAR_DETAIL_COLOR_SGIS", 0x8099}, - {"GL_DETAIL_TEXTURE_LEVEL_SGIS", 0x809A}, - {"GL_DETAIL_TEXTURE_MODE_SGIS", 0x809B}, - {"GL_DETAIL_TEXTURE_FUNC_POINTS_SGIS", 0x809C}, - {"GL_MULTISAMPLE", 0x809D}, - {"GL_MULTISAMPLE_ARB", 0x809D}, - {"GL_MULTISAMPLE_EXT", 0x809D}, - {"GL_MULTISAMPLE_SGIS", 0x809D}, - {"GL_SAMPLE_ALPHA_TO_COVERAGE", 0x809E}, - {"GL_SAMPLE_ALPHA_TO_COVERAGE_ARB", 0x809E}, - {"GL_SAMPLE_ALPHA_TO_MASK_EXT", 0x809E}, - {"GL_SAMPLE_ALPHA_TO_MASK_SGIS", 0x809E}, - {"GL_SAMPLE_ALPHA_TO_ONE", 0x809F}, - {"GL_SAMPLE_ALPHA_TO_ONE_ARB", 0x809F}, - {"GL_SAMPLE_ALPHA_TO_ONE_EXT", 0x809F}, - {"GL_SAMPLE_ALPHA_TO_ONE_SGIS", 0x809F}, - {"GL_SAMPLE_COVERAGE", 0x80A0}, - {"GL_SAMPLE_COVERAGE_ARB", 0x80A0}, - {"GL_SAMPLE_MASK_EXT", 0x80A0}, - {"GL_SAMPLE_MASK_SGIS", 0x80A0}, - {"GL_1PASS_EXT", 0x80A1}, - {"GL_1PASS_SGIS", 0x80A1}, - {"GL_2PASS_0_EXT", 0x80A2}, - {"GL_2PASS_0_SGIS", 0x80A2}, - {"GL_2PASS_1_EXT", 0x80A3}, - {"GL_2PASS_1_SGIS", 0x80A3}, - {"GL_4PASS_0_EXT", 0x80A4}, - {"GL_4PASS_0_SGIS", 0x80A4}, - {"GL_4PASS_1_EXT", 0x80A5}, - {"GL_4PASS_1_SGIS", 0x80A5}, - {"GL_4PASS_2_EXT", 0x80A6}, - {"GL_4PASS_2_SGIS", 0x80A6}, - {"GL_4PASS_3_EXT", 0x80A7}, - {"GL_4PASS_3_SGIS", 0x80A7}, - {"GL_SAMPLE_BUFFERS", 0x80A8}, - {"GL_SAMPLE_BUFFERS_ARB", 0x80A8}, - {"GL_SAMPLE_BUFFERS_EXT", 0x80A8}, - {"GL_SAMPLE_BUFFERS_SGIS", 0x80A8}, - {"GL_SAMPLES", 0x80A9}, - {"GL_SAMPLES_ARB", 0x80A9}, - {"GL_SAMPLES_EXT", 0x80A9}, - {"GL_SAMPLES_SGIS", 0x80A9}, - {"GL_SAMPLE_COVERAGE_VALUE", 0x80AA}, - {"GL_SAMPLE_COVERAGE_VALUE_ARB", 0x80AA}, - {"GL_SAMPLE_MASK_VALUE_EXT", 0x80AA}, - {"GL_SAMPLE_MASK_VALUE_SGIS", 0x80AA}, - {"GL_SAMPLE_COVERAGE_INVERT", 0x80AB}, - {"GL_SAMPLE_COVERAGE_INVERT_ARB", 0x80AB}, - {"GL_SAMPLE_MASK_INVERT_EXT", 0x80AB}, - {"GL_SAMPLE_MASK_INVERT_SGIS", 0x80AB}, - {"GL_SAMPLE_PATTERN_EXT", 0x80AC}, - {"GL_SAMPLE_PATTERN_SGIS", 0x80AC}, - {"GL_LINEAR_SHARPEN_SGIS", 0x80AD}, - {"GL_LINEAR_SHARPEN_ALPHA_SGIS", 0x80AE}, - {"GL_LINEAR_SHARPEN_COLOR_SGIS", 0x80AF}, - {"GL_SHARPEN_TEXTURE_FUNC_POINTS_SGIS", 0x80B0}, - {"GL_COLOR_MATRIX", 0x80B1}, - {"GL_COLOR_MATRIX_SGI", 0x80B1}, - {"GL_COLOR_MATRIX_STACK_DEPTH", 0x80B2}, - {"GL_COLOR_MATRIX_STACK_DEPTH_SGI", 0x80B2}, - {"GL_MAX_COLOR_MATRIX_STACK_DEPTH", 0x80B3}, - {"GL_MAX_COLOR_MATRIX_STACK_DEPTH_SGI", 0x80B3}, - {"GL_POST_COLOR_MATRIX_RED_SCALE", 0x80B4}, - {"GL_POST_COLOR_MATRIX_RED_SCALE_SGI", 0x80B4}, - {"GL_POST_COLOR_MATRIX_GREEN_SCALE", 0x80B5}, - {"GL_POST_COLOR_MATRIX_GREEN_SCALE_SGI", 0x80B5}, - {"GL_POST_COLOR_MATRIX_BLUE_SCALE", 0x80B6}, - {"GL_POST_COLOR_MATRIX_BLUE_SCALE_SGI", 0x80B6}, - {"GL_POST_COLOR_MATRIX_ALPHA_SCALE", 0x80B7}, - {"GL_POST_COLOR_MATRIX_ALPHA_SCALE_SGI", 0x80B7}, - {"GL_POST_COLOR_MATRIX_RED_BIAS", 0x80B8}, - {"GL_POST_COLOR_MATRIX_RED_BIAS_SGI", 0x80B8}, - {"GL_POST_COLOR_MATRIX_GREEN_BIAS", 0x80B9}, - {"GL_POST_COLOR_MATRIX_GREEN_BIAS_SGI", 0x80B9}, - {"GL_POST_COLOR_MATRIX_BLUE_BIAS", 0x80BA}, - {"GL_POST_COLOR_MATRIX_BLUE_BIAS_SGI", 0x80BA}, - {"GL_POST_COLOR_MATRIX_ALPHA_BIAS", 0x80BB}, - {"GL_POST_COLOR_MATRIX_ALPHA_BIAS_SGI", 0x80BB}, - {"GL_TEXTURE_COLOR_TABLE_SGI", 0x80BC}, - {"GL_PROXY_TEXTURE_COLOR_TABLE_SGI", 0x80BD}, - {"GL_TEXTURE_ENV_BIAS_SGIX", 0x80BE}, - {"GL_SHADOW_AMBIENT_SGIX", 0x80BF}, - {"GL_TEXTURE_COMPARE_FAIL_VALUE_ARB", 0x80BF}, - {"GL_BLEND_DST_RGB", 0x80C8}, - {"GL_BLEND_DST_RGB_EXT", 0x80C8}, - {"GL_BLEND_DST_RGB_OES", 0x80C8}, - {"GL_BLEND_SRC_RGB", 0x80C9}, - {"GL_BLEND_SRC_RGB_EXT", 0x80C9}, - {"GL_BLEND_SRC_RGB_OES", 0x80C9}, - {"GL_BLEND_DST_ALPHA", 0x80CA}, - {"GL_BLEND_DST_ALPHA_EXT", 0x80CA}, - {"GL_BLEND_DST_ALPHA_OES", 0x80CA}, - {"GL_BLEND_SRC_ALPHA", 0x80CB}, - {"GL_BLEND_SRC_ALPHA_EXT", 0x80CB}, - {"GL_BLEND_SRC_ALPHA_OES", 0x80CB}, - {"GL_422_EXT", 0x80CC}, - {"GL_422_REV_EXT", 0x80CD}, - {"GL_422_AVERAGE_EXT", 0x80CE}, - {"GL_422_REV_AVERAGE_EXT", 0x80CF}, - {"GL_COLOR_TABLE", 0x80D0}, - {"GL_COLOR_TABLE_SGI", 0x80D0}, - {"GL_POST_CONVOLUTION_COLOR_TABLE", 0x80D1}, - {"GL_POST_CONVOLUTION_COLOR_TABLE_SGI", 0x80D1}, - {"GL_POST_COLOR_MATRIX_COLOR_TABLE", 0x80D2}, - {"GL_POST_COLOR_MATRIX_COLOR_TABLE_SGI", 0x80D2}, - {"GL_PROXY_COLOR_TABLE", 0x80D3}, - {"GL_PROXY_COLOR_TABLE_SGI", 0x80D3}, - {"GL_PROXY_POST_CONVOLUTION_COLOR_TABLE", 0x80D4}, - {"GL_PROXY_POST_CONVOLUTION_COLOR_TABLE_SGI", 0x80D4}, - {"GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE", 0x80D5}, - {"GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE_SGI", 0x80D5}, - {"GL_COLOR_TABLE_SCALE", 0x80D6}, - {"GL_COLOR_TABLE_SCALE_SGI", 0x80D6}, - {"GL_COLOR_TABLE_BIAS", 0x80D7}, - {"GL_COLOR_TABLE_BIAS_SGI", 0x80D7}, - {"GL_COLOR_TABLE_FORMAT", 0x80D8}, - {"GL_COLOR_TABLE_FORMAT_SGI", 0x80D8}, - {"GL_COLOR_TABLE_WIDTH", 0x80D9}, - {"GL_COLOR_TABLE_WIDTH_SGI", 0x80D9}, - {"GL_COLOR_TABLE_RED_SIZE", 0x80DA}, - {"GL_COLOR_TABLE_RED_SIZE_SGI", 0x80DA}, - {"GL_COLOR_TABLE_GREEN_SIZE", 0x80DB}, - {"GL_COLOR_TABLE_GREEN_SIZE_SGI", 0x80DB}, - {"GL_COLOR_TABLE_BLUE_SIZE", 0x80DC}, - {"GL_COLOR_TABLE_BLUE_SIZE_SGI", 0x80DC}, - {"GL_COLOR_TABLE_ALPHA_SIZE", 0x80DD}, - {"GL_COLOR_TABLE_ALPHA_SIZE_SGI", 0x80DD}, - {"GL_COLOR_TABLE_LUMINANCE_SIZE", 0x80DE}, - {"GL_COLOR_TABLE_LUMINANCE_SIZE_SGI", 0x80DE}, - {"GL_COLOR_TABLE_INTENSITY_SIZE", 0x80DF}, - {"GL_COLOR_TABLE_INTENSITY_SIZE_SGI", 0x80DF}, - {"GL_BGR", 0x80E0}, - {"GL_BGR_EXT", 0x80E0}, - {"GL_BGRA", 0x80E1}, - {"GL_BGRA_EXT", 0x80E1}, - {"GL_COLOR_INDEX1_EXT", 0x80E2}, - {"GL_COLOR_INDEX2_EXT", 0x80E3}, - {"GL_COLOR_INDEX4_EXT", 0x80E4}, - {"GL_COLOR_INDEX8_EXT", 0x80E5}, - {"GL_COLOR_INDEX12_EXT", 0x80E6}, - {"GL_COLOR_INDEX16_EXT", 0x80E7}, - {"GL_MAX_ELEMENTS_VERTICES", 0x80E8}, - {"GL_MAX_ELEMENTS_VERTICES_EXT", 0x80E8}, - {"GL_MAX_ELEMENTS_INDICES", 0x80E9}, - {"GL_MAX_ELEMENTS_INDICES_EXT", 0x80E9}, - {"GL_PHONG_WIN", 0x80EA}, - {"GL_PHONG_HINT_WIN", 0x80EB}, - {"GL_FOG_SPECULAR_TEXTURE_WIN", 0x80EC}, - {"GL_TEXTURE_INDEX_SIZE_EXT", 0x80ED}, - {"GL_PARAMETER_BUFFER_ARB", 0x80EE}, - {"GL_PARAMETER_BUFFER_BINDING_ARB", 0x80EF}, - {"GL_CLIP_VOLUME_CLIPPING_HINT_EXT", 0x80F0}, - {"GL_DUAL_ALPHA4_SGIS", 0x8110}, - {"GL_DUAL_ALPHA8_SGIS", 0x8111}, - {"GL_DUAL_ALPHA12_SGIS", 0x8112}, - {"GL_DUAL_ALPHA16_SGIS", 0x8113}, - {"GL_DUAL_LUMINANCE4_SGIS", 0x8114}, - {"GL_DUAL_LUMINANCE8_SGIS", 0x8115}, - {"GL_DUAL_LUMINANCE12_SGIS", 0x8116}, - {"GL_DUAL_LUMINANCE16_SGIS", 0x8117}, - {"GL_DUAL_INTENSITY4_SGIS", 0x8118}, - {"GL_DUAL_INTENSITY8_SGIS", 0x8119}, - {"GL_DUAL_INTENSITY12_SGIS", 0x811A}, - {"GL_DUAL_INTENSITY16_SGIS", 0x811B}, - {"GL_DUAL_LUMINANCE_ALPHA4_SGIS", 0x811C}, - {"GL_DUAL_LUMINANCE_ALPHA8_SGIS", 0x811D}, - {"GL_QUAD_ALPHA4_SGIS", 0x811E}, - {"GL_QUAD_ALPHA8_SGIS", 0x811F}, - {"GL_QUAD_LUMINANCE4_SGIS", 0x8120}, - {"GL_QUAD_LUMINANCE8_SGIS", 0x8121}, - {"GL_QUAD_INTENSITY4_SGIS", 0x8122}, - {"GL_QUAD_INTENSITY8_SGIS", 0x8123}, - {"GL_DUAL_TEXTURE_SELECT_SGIS", 0x8124}, - {"GL_QUAD_TEXTURE_SELECT_SGIS", 0x8125}, - {"GL_POINT_SIZE_MIN", 0x8126}, - {"GL_POINT_SIZE_MIN_ARB", 0x8126}, - {"GL_POINT_SIZE_MIN_EXT", 0x8126}, - {"GL_POINT_SIZE_MIN_SGIS", 0x8126}, - {"GL_POINT_SIZE_MAX", 0x8127}, - {"GL_POINT_SIZE_MAX_ARB", 0x8127}, - {"GL_POINT_SIZE_MAX_EXT", 0x8127}, - {"GL_POINT_SIZE_MAX_SGIS", 0x8127}, - {"GL_POINT_FADE_THRESHOLD_SIZE", 0x8128}, - {"GL_POINT_FADE_THRESHOLD_SIZE_ARB", 0x8128}, - {"GL_POINT_FADE_THRESHOLD_SIZE_EXT", 0x8128}, - {"GL_POINT_FADE_THRESHOLD_SIZE_SGIS", 0x8128}, - {"GL_DISTANCE_ATTENUATION_EXT", 0x8129}, - {"GL_DISTANCE_ATTENUATION_SGIS", 0x8129}, - {"GL_POINT_DISTANCE_ATTENUATION", 0x8129}, - {"GL_POINT_DISTANCE_ATTENUATION_ARB", 0x8129}, - {"GL_FOG_FUNC_SGIS", 0x812A}, - {"GL_FOG_FUNC_POINTS_SGIS", 0x812B}, - {"GL_MAX_FOG_FUNC_POINTS_SGIS", 0x812C}, - {"GL_CLAMP_TO_BORDER", 0x812D}, - {"GL_CLAMP_TO_BORDER_ARB", 0x812D}, - {"GL_CLAMP_TO_BORDER_NV", 0x812D}, - {"GL_CLAMP_TO_BORDER_SGIS", 0x812D}, - {"GL_TEXTURE_MULTI_BUFFER_HINT_SGIX", 0x812E}, - {"GL_CLAMP_TO_EDGE", 0x812F}, - {"GL_CLAMP_TO_EDGE_SGIS", 0x812F}, - {"GL_PACK_SKIP_VOLUMES_SGIS", 0x8130}, - {"GL_PACK_IMAGE_DEPTH_SGIS", 0x8131}, - {"GL_UNPACK_SKIP_VOLUMES_SGIS", 0x8132}, - {"GL_UNPACK_IMAGE_DEPTH_SGIS", 0x8133}, - {"GL_TEXTURE_4D_SGIS", 0x8134}, - {"GL_PROXY_TEXTURE_4D_SGIS", 0x8135}, - {"GL_TEXTURE_4DSIZE_SGIS", 0x8136}, - {"GL_TEXTURE_WRAP_Q_SGIS", 0x8137}, - {"GL_MAX_4D_TEXTURE_SIZE_SGIS", 0x8138}, - {"GL_PIXEL_TEX_GEN_SGIX", 0x8139}, - {"GL_TEXTURE_MIN_LOD", 0x813A}, - {"GL_TEXTURE_MIN_LOD_SGIS", 0x813A}, - {"GL_TEXTURE_MAX_LOD", 0x813B}, - {"GL_TEXTURE_MAX_LOD_SGIS", 0x813B}, - {"GL_TEXTURE_BASE_LEVEL", 0x813C}, - {"GL_TEXTURE_BASE_LEVEL_SGIS", 0x813C}, - {"GL_TEXTURE_MAX_LEVEL", 0x813D}, - {"GL_TEXTURE_MAX_LEVEL_SGIS", 0x813D}, - {"GL_PIXEL_TILE_BEST_ALIGNMENT_SGIX", 0x813E}, - {"GL_PIXEL_TILE_CACHE_INCREMENT_SGIX", 0x813F}, - {"GL_PIXEL_TILE_WIDTH_SGIX", 0x8140}, - {"GL_PIXEL_TILE_HEIGHT_SGIX", 0x8141}, - {"GL_PIXEL_TILE_GRID_WIDTH_SGIX", 0x8142}, - {"GL_PIXEL_TILE_GRID_HEIGHT_SGIX", 0x8143}, - {"GL_PIXEL_TILE_GRID_DEPTH_SGIX", 0x8144}, - {"GL_PIXEL_TILE_CACHE_SIZE_SGIX", 0x8145}, - {"GL_FILTER4_SGIS", 0x8146}, - {"GL_TEXTURE_FILTER4_SIZE_SGIS", 0x8147}, - {"GL_SPRITE_SGIX", 0x8148}, - {"GL_SPRITE_MODE_SGIX", 0x8149}, - {"GL_SPRITE_AXIS_SGIX", 0x814A}, - {"GL_SPRITE_TRANSLATION_SGIX", 0x814B}, - {"GL_SPRITE_AXIAL_SGIX", 0x814C}, - {"GL_SPRITE_OBJECT_ALIGNED_SGIX", 0x814D}, - {"GL_SPRITE_EYE_ALIGNED_SGIX", 0x814E}, - {"GL_TEXTURE_4D_BINDING_SGIS", 0x814F}, - {"GL_IGNORE_BORDER_HP", 0x8150}, - {"GL_CONSTANT_BORDER", 0x8151}, - {"GL_CONSTANT_BORDER_HP", 0x8151}, - {"GL_REPLICATE_BORDER", 0x8153}, - {"GL_REPLICATE_BORDER_HP", 0x8153}, - {"GL_CONVOLUTION_BORDER_COLOR", 0x8154}, - {"GL_CONVOLUTION_BORDER_COLOR_HP", 0x8154}, - {"GL_IMAGE_SCALE_X_HP", 0x8155}, - {"GL_IMAGE_SCALE_Y_HP", 0x8156}, - {"GL_IMAGE_TRANSLATE_X_HP", 0x8157}, - {"GL_IMAGE_TRANSLATE_Y_HP", 0x8158}, - {"GL_IMAGE_ROTATE_ANGLE_HP", 0x8159}, - {"GL_IMAGE_ROTATE_ORIGIN_X_HP", 0x815A}, - {"GL_IMAGE_ROTATE_ORIGIN_Y_HP", 0x815B}, - {"GL_IMAGE_MAG_FILTER_HP", 0x815C}, - {"GL_IMAGE_MIN_FILTER_HP", 0x815D}, - {"GL_IMAGE_CUBIC_WEIGHT_HP", 0x815E}, - {"GL_CUBIC_HP", 0x815F}, - {"GL_AVERAGE_HP", 0x8160}, - {"GL_IMAGE_TRANSFORM_2D_HP", 0x8161}, - {"GL_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP", 0x8162}, - {"GL_PROXY_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP", 0x8163}, - {"GL_OCCLUSION_TEST_HP", 0x8165}, - {"GL_OCCLUSION_TEST_RESULT_HP", 0x8166}, - {"GL_TEXTURE_LIGHTING_MODE_HP", 0x8167}, - {"GL_TEXTURE_POST_SPECULAR_HP", 0x8168}, - {"GL_TEXTURE_PRE_SPECULAR_HP", 0x8169}, - {"GL_LINEAR_CLIPMAP_LINEAR_SGIX", 0x8170}, - {"GL_TEXTURE_CLIPMAP_CENTER_SGIX", 0x8171}, - {"GL_TEXTURE_CLIPMAP_FRAME_SGIX", 0x8172}, - {"GL_TEXTURE_CLIPMAP_OFFSET_SGIX", 0x8173}, - {"GL_TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX", 0x8174}, - {"GL_TEXTURE_CLIPMAP_LOD_OFFSET_SGIX", 0x8175}, - {"GL_TEXTURE_CLIPMAP_DEPTH_SGIX", 0x8176}, - {"GL_MAX_CLIPMAP_DEPTH_SGIX", 0x8177}, - {"GL_MAX_CLIPMAP_VIRTUAL_DEPTH_SGIX", 0x8178}, - {"GL_POST_TEXTURE_FILTER_BIAS_SGIX", 0x8179}, - {"GL_POST_TEXTURE_FILTER_SCALE_SGIX", 0x817A}, - {"GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX", 0x817B}, - {"GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX", 0x817C}, - {"GL_REFERENCE_PLANE_SGIX", 0x817D}, - {"GL_REFERENCE_PLANE_EQUATION_SGIX", 0x817E}, - {"GL_IR_INSTRUMENT1_SGIX", 0x817F}, - {"GL_INSTRUMENT_BUFFER_POINTER_SGIX", 0x8180}, - {"GL_INSTRUMENT_MEASUREMENTS_SGIX", 0x8181}, - {"GL_LIST_PRIORITY_SGIX", 0x8182}, - {"GL_CALLIGRAPHIC_FRAGMENT_SGIX", 0x8183}, - {"GL_PIXEL_TEX_GEN_Q_CEILING_SGIX", 0x8184}, - {"GL_PIXEL_TEX_GEN_Q_ROUND_SGIX", 0x8185}, - {"GL_PIXEL_TEX_GEN_Q_FLOOR_SGIX", 0x8186}, - {"GL_PIXEL_TEX_GEN_ALPHA_REPLACE_SGIX", 0x8187}, - {"GL_PIXEL_TEX_GEN_ALPHA_NO_REPLACE_SGIX", 0x8188}, - {"GL_PIXEL_TEX_GEN_ALPHA_LS_SGIX", 0x8189}, - {"GL_PIXEL_TEX_GEN_ALPHA_MS_SGIX", 0x818A}, - {"GL_FRAMEZOOM_SGIX", 0x818B}, - {"GL_FRAMEZOOM_FACTOR_SGIX", 0x818C}, - {"GL_MAX_FRAMEZOOM_FACTOR_SGIX", 0x818D}, - {"GL_TEXTURE_LOD_BIAS_S_SGIX", 0x818E}, - {"GL_TEXTURE_LOD_BIAS_T_SGIX", 0x818F}, - {"GL_TEXTURE_LOD_BIAS_R_SGIX", 0x8190}, - {"GL_GENERATE_MIPMAP", 0x8191}, - {"GL_GENERATE_MIPMAP_SGIS", 0x8191}, - {"GL_GENERATE_MIPMAP_HINT", 0x8192}, - {"GL_GENERATE_MIPMAP_HINT_SGIS", 0x8192}, - {"GL_GEOMETRY_DEFORMATION_SGIX", 0x8194}, - {"GL_TEXTURE_DEFORMATION_SGIX", 0x8195}, - {"GL_DEFORMATIONS_MASK_SGIX", 0x8196}, - {"GL_MAX_DEFORMATION_ORDER_SGIX", 0x8197}, - {"GL_FOG_OFFSET_SGIX", 0x8198}, - {"GL_FOG_OFFSET_VALUE_SGIX", 0x8199}, - {"GL_TEXTURE_COMPARE_SGIX", 0x819A}, - {"GL_TEXTURE_COMPARE_OPERATOR_SGIX", 0x819B}, - {"GL_TEXTURE_LEQUAL_R_SGIX", 0x819C}, - {"GL_TEXTURE_GEQUAL_R_SGIX", 0x819D}, - {"GL_DEPTH_COMPONENT16", 0x81A5}, - {"GL_DEPTH_COMPONENT16_ARB", 0x81A5}, - {"GL_DEPTH_COMPONENT16_OES", 0x81A5}, - {"GL_DEPTH_COMPONENT16_SGIX", 0x81A5}, - {"GL_DEPTH_COMPONENT24", 0x81A6}, - {"GL_DEPTH_COMPONENT24_ARB", 0x81A6}, - {"GL_DEPTH_COMPONENT24_OES", 0x81A6}, - {"GL_DEPTH_COMPONENT24_SGIX", 0x81A6}, - {"GL_DEPTH_COMPONENT32", 0x81A7}, - {"GL_DEPTH_COMPONENT32_ARB", 0x81A7}, - {"GL_DEPTH_COMPONENT32_OES", 0x81A7}, - {"GL_DEPTH_COMPONENT32_SGIX", 0x81A7}, - {"GL_ARRAY_ELEMENT_LOCK_FIRST_EXT", 0x81A8}, - {"GL_ARRAY_ELEMENT_LOCK_COUNT_EXT", 0x81A9}, - {"GL_CULL_VERTEX_EXT", 0x81AA}, - {"GL_CULL_VERTEX_EYE_POSITION_EXT", 0x81AB}, - {"GL_CULL_VERTEX_OBJECT_POSITION_EXT", 0x81AC}, - {"GL_IUI_V2F_EXT", 0x81AD}, - {"GL_IUI_V3F_EXT", 0x81AE}, - {"GL_IUI_N3F_V2F_EXT", 0x81AF}, - {"GL_IUI_N3F_V3F_EXT", 0x81B0}, - {"GL_T2F_IUI_V2F_EXT", 0x81B1}, - {"GL_T2F_IUI_V3F_EXT", 0x81B2}, - {"GL_T2F_IUI_N3F_V2F_EXT", 0x81B3}, - {"GL_T2F_IUI_N3F_V3F_EXT", 0x81B4}, - {"GL_INDEX_TEST_EXT", 0x81B5}, - {"GL_INDEX_TEST_FUNC_EXT", 0x81B6}, - {"GL_INDEX_TEST_REF_EXT", 0x81B7}, - {"GL_INDEX_MATERIAL_EXT", 0x81B8}, - {"GL_INDEX_MATERIAL_PARAMETER_EXT", 0x81B9}, - {"GL_INDEX_MATERIAL_FACE_EXT", 0x81BA}, - {"GL_YCRCB_422_SGIX", 0x81BB}, - {"GL_YCRCB_444_SGIX", 0x81BC}, - {"GL_WRAP_BORDER_SUN", 0x81D4}, - {"GL_UNPACK_CONSTANT_DATA_SUNX", 0x81D5}, - {"GL_TEXTURE_CONSTANT_DATA_SUNX", 0x81D6}, - {"GL_TRIANGLE_LIST_SUN", 0x81D7}, - {"GL_REPLACEMENT_CODE_SUN", 0x81D8}, - {"GL_GLOBAL_ALPHA_SUN", 0x81D9}, - {"GL_GLOBAL_ALPHA_FACTOR_SUN", 0x81DA}, - {"GL_TEXTURE_COLOR_WRITEMASK_SGIS", 0x81EF}, - {"GL_EYE_DISTANCE_TO_POINT_SGIS", 0x81F0}, - {"GL_OBJECT_DISTANCE_TO_POINT_SGIS", 0x81F1}, - {"GL_EYE_DISTANCE_TO_LINE_SGIS", 0x81F2}, - {"GL_OBJECT_DISTANCE_TO_LINE_SGIS", 0x81F3}, - {"GL_EYE_POINT_SGIS", 0x81F4}, - {"GL_OBJECT_POINT_SGIS", 0x81F5}, - {"GL_EYE_LINE_SGIS", 0x81F6}, - {"GL_OBJECT_LINE_SGIS", 0x81F7}, - {"GL_LIGHT_MODEL_COLOR_CONTROL", 0x81F8}, - {"GL_LIGHT_MODEL_COLOR_CONTROL_EXT", 0x81F8}, - {"GL_SINGLE_COLOR", 0x81F9}, - {"GL_SINGLE_COLOR_EXT", 0x81F9}, - {"GL_SEPARATE_SPECULAR_COLOR", 0x81FA}, - {"GL_SEPARATE_SPECULAR_COLOR_EXT", 0x81FA}, - {"GL_SHARED_TEXTURE_PALETTE_EXT", 0x81FB}, - {"GL_TEXT_FRAGMENT_SHADER_ATI", 0x8200}, - {"GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING", 0x8210}, - {"GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE", 0x8211}, - {"GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", 0x8211}, - {"GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE", 0x8212}, - {"GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE", 0x8213}, - {"GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE", 0x8214}, - {"GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE", 0x8215}, - {"GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE", 0x8216}, - {"GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE", 0x8217}, - {"GL_FRAMEBUFFER_DEFAULT", 0x8218}, - {"GL_FRAMEBUFFER_UNDEFINED", 0x8219}, - {"GL_FRAMEBUFFER_UNDEFINED_OES", 0x8219}, - {"GL_DEPTH_STENCIL_ATTACHMENT", 0x821A}, - {"GL_MAJOR_VERSION", 0x821B}, - {"GL_MINOR_VERSION", 0x821C}, - {"GL_NUM_EXTENSIONS", 0x821D}, - {"GL_CONTEXT_FLAGS", 0x821E}, - {"GL_BUFFER_IMMUTABLE_STORAGE", 0x821F}, - {"GL_BUFFER_STORAGE_FLAGS", 0x8220}, - {"GL_INDEX", 0x8222}, - {"GL_COMPRESSED_RED", 0x8225}, - {"GL_COMPRESSED_RG", 0x8226}, - {"GL_RG", 0x8227}, - {"GL_RG_EXT", 0x8227}, - {"GL_RG_INTEGER", 0x8228}, - {"GL_R8", 0x8229}, - {"GL_R8_EXT", 0x8229}, - {"GL_R16", 0x822A}, - {"GL_RG8", 0x822B}, - {"GL_RG8_EXT", 0x822B}, - {"GL_RG16", 0x822C}, - {"GL_R16F", 0x822D}, - {"GL_R16F_EXT", 0x822D}, - {"GL_R32F", 0x822E}, - {"GL_RG16F", 0x822F}, - {"GL_RG16F_EXT", 0x822F}, - {"GL_RG32F", 0x8230}, - {"GL_R8I", 0x8231}, - {"GL_R8UI", 0x8232}, - {"GL_R16I", 0x8233}, - {"GL_R16UI", 0x8234}, - {"GL_R32I", 0x8235}, - {"GL_R32UI", 0x8236}, - {"GL_RG8I", 0x8237}, - {"GL_RG8UI", 0x8238}, - {"GL_RG16I", 0x8239}, - {"GL_RG16UI", 0x823A}, - {"GL_RG32I", 0x823B}, - {"GL_RG32UI", 0x823C}, - {"GL_SYNC_CL_EVENT_ARB", 0x8240}, - {"GL_SYNC_CL_EVENT_COMPLETE_ARB", 0x8241}, - {"GL_DEBUG_OUTPUT_SYNCHRONOUS", 0x8242}, - {"GL_DEBUG_OUTPUT_SYNCHRONOUS_ARB", 0x8242}, - {"GL_DEBUG_OUTPUT_SYNCHRONOUS_KHR", 0x8242}, - {"GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH", 0x8243}, - {"GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH_ARB", 0x8243}, - {"GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH_KHR", 0x8243}, - {"GL_DEBUG_CALLBACK_FUNCTION", 0x8244}, - {"GL_DEBUG_CALLBACK_FUNCTION_ARB", 0x8244}, - {"GL_DEBUG_CALLBACK_FUNCTION_KHR", 0x8244}, - {"GL_DEBUG_CALLBACK_USER_PARAM", 0x8245}, - {"GL_DEBUG_CALLBACK_USER_PARAM_ARB", 0x8245}, - {"GL_DEBUG_CALLBACK_USER_PARAM_KHR", 0x8245}, - {"GL_DEBUG_SOURCE_API", 0x8246}, - {"GL_DEBUG_SOURCE_API_ARB", 0x8246}, - {"GL_DEBUG_SOURCE_API_KHR", 0x8246}, - {"GL_DEBUG_SOURCE_WINDOW_SYSTEM", 0x8247}, - {"GL_DEBUG_SOURCE_WINDOW_SYSTEM_ARB", 0x8247}, - {"GL_DEBUG_SOURCE_WINDOW_SYSTEM_KHR", 0x8247}, - {"GL_DEBUG_SOURCE_SHADER_COMPILER", 0x8248}, - {"GL_DEBUG_SOURCE_SHADER_COMPILER_ARB", 0x8248}, - {"GL_DEBUG_SOURCE_SHADER_COMPILER_KHR", 0x8248}, - {"GL_DEBUG_SOURCE_THIRD_PARTY", 0x8249}, - {"GL_DEBUG_SOURCE_THIRD_PARTY_ARB", 0x8249}, - {"GL_DEBUG_SOURCE_THIRD_PARTY_KHR", 0x8249}, - {"GL_DEBUG_SOURCE_APPLICATION", 0x824A}, - {"GL_DEBUG_SOURCE_APPLICATION_ARB", 0x824A}, - {"GL_DEBUG_SOURCE_APPLICATION_KHR", 0x824A}, - {"GL_DEBUG_SOURCE_OTHER", 0x824B}, - {"GL_DEBUG_SOURCE_OTHER_ARB", 0x824B}, - {"GL_DEBUG_SOURCE_OTHER_KHR", 0x824B}, - {"GL_DEBUG_TYPE_ERROR", 0x824C}, - {"GL_DEBUG_TYPE_ERROR_ARB", 0x824C}, - {"GL_DEBUG_TYPE_ERROR_KHR", 0x824C}, - {"GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR", 0x824D}, - {"GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_ARB", 0x824D}, - {"GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_KHR", 0x824D}, - {"GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR", 0x824E}, - {"GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_ARB", 0x824E}, - {"GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_KHR", 0x824E}, - {"GL_DEBUG_TYPE_PORTABILITY", 0x824F}, - {"GL_DEBUG_TYPE_PORTABILITY_ARB", 0x824F}, - {"GL_DEBUG_TYPE_PORTABILITY_KHR", 0x824F}, - {"GL_DEBUG_TYPE_PERFORMANCE", 0x8250}, - {"GL_DEBUG_TYPE_PERFORMANCE_ARB", 0x8250}, - {"GL_DEBUG_TYPE_PERFORMANCE_KHR", 0x8250}, - {"GL_DEBUG_TYPE_OTHER", 0x8251}, - {"GL_DEBUG_TYPE_OTHER_ARB", 0x8251}, - {"GL_DEBUG_TYPE_OTHER_KHR", 0x8251}, - {"GL_LOSE_CONTEXT_ON_RESET_ARB", 0x8252}, - {"GL_GUILTY_CONTEXT_RESET_ARB", 0x8253}, - {"GL_INNOCENT_CONTEXT_RESET_ARB", 0x8254}, - {"GL_UNKNOWN_CONTEXT_RESET_ARB", 0x8255}, - {"GL_RESET_NOTIFICATION_STRATEGY_ARB", 0x8256}, - {"GL_PROGRAM_BINARY_RETRIEVABLE_HINT", 0x8257}, - {"GL_PROGRAM_SEPARABLE", 0x8258}, - {"GL_PROGRAM_SEPARABLE_EXT", 0x8258}, - {"GL_ACTIVE_PROGRAM", 0x8259}, - {"GL_ACTIVE_PROGRAM_EXT", 0x8259}, - {"GL_PROGRAM_PIPELINE_BINDING", 0x825A}, - {"GL_PROGRAM_PIPELINE_BINDING_EXT", 0x825A}, - {"GL_MAX_VIEWPORTS", 0x825B}, - {"GL_VIEWPORT_SUBPIXEL_BITS", 0x825C}, - {"GL_VIEWPORT_BOUNDS_RANGE", 0x825D}, - {"GL_LAYER_PROVOKING_VERTEX", 0x825E}, - {"GL_VIEWPORT_INDEX_PROVOKING_VERTEX", 0x825F}, - {"GL_UNDEFINED_VERTEX", 0x8260}, - {"GL_NO_RESET_NOTIFICATION_ARB", 0x8261}, - {"GL_MAX_COMPUTE_SHARED_MEMORY_SIZE", 0x8262}, - {"GL_MAX_COMPUTE_UNIFORM_COMPONENTS", 0x8263}, - {"GL_MAX_COMPUTE_ATOMIC_COUNTER_BUFFERS", 0x8264}, - {"GL_MAX_COMPUTE_ATOMIC_COUNTERS", 0x8265}, - {"GL_MAX_COMBINED_COMPUTE_UNIFORM_COMPONENTS", 0x8266}, - {"GL_COMPUTE_LOCAL_WORK_SIZE", 0x8267}, - {"GL_DEBUG_TYPE_MARKER", 0x8268}, - {"GL_DEBUG_TYPE_MARKER_KHR", 0x8268}, - {"GL_DEBUG_TYPE_PUSH_GROUP", 0x8269}, - {"GL_DEBUG_TYPE_PUSH_GROUP_KHR", 0x8269}, - {"GL_DEBUG_TYPE_POP_GROUP", 0x826A}, - {"GL_DEBUG_TYPE_POP_GROUP_KHR", 0x826A}, - {"GL_DEBUG_SEVERITY_NOTIFICATION", 0x826B}, - {"GL_DEBUG_SEVERITY_NOTIFICATION_KHR", 0x826B}, - {"GL_MAX_DEBUG_GROUP_STACK_DEPTH", 0x826C}, - {"GL_MAX_DEBUG_GROUP_STACK_DEPTH_KHR", 0x826C}, - {"GL_DEBUG_GROUP_STACK_DEPTH", 0x826D}, - {"GL_DEBUG_GROUP_STACK_DEPTH_KHR", 0x826D}, - {"GL_MAX_UNIFORM_LOCATIONS", 0x826E}, - {"GL_INTERNALFORMAT_SUPPORTED", 0x826F}, - {"GL_INTERNALFORMAT_PREFERRED", 0x8270}, - {"GL_INTERNALFORMAT_RED_SIZE", 0x8271}, - {"GL_INTERNALFORMAT_GREEN_SIZE", 0x8272}, - {"GL_INTERNALFORMAT_BLUE_SIZE", 0x8273}, - {"GL_INTERNALFORMAT_ALPHA_SIZE", 0x8274}, - {"GL_INTERNALFORMAT_DEPTH_SIZE", 0x8275}, - {"GL_INTERNALFORMAT_STENCIL_SIZE", 0x8276}, - {"GL_INTERNALFORMAT_SHARED_SIZE", 0x8277}, - {"GL_INTERNALFORMAT_RED_TYPE", 0x8278}, - {"GL_INTERNALFORMAT_GREEN_TYPE", 0x8279}, - {"GL_INTERNALFORMAT_BLUE_TYPE", 0x827A}, - {"GL_INTERNALFORMAT_ALPHA_TYPE", 0x827B}, - {"GL_INTERNALFORMAT_DEPTH_TYPE", 0x827C}, - {"GL_INTERNALFORMAT_STENCIL_TYPE", 0x827D}, - {"GL_MAX_WIDTH", 0x827E}, - {"GL_MAX_HEIGHT", 0x827F}, - {"GL_MAX_DEPTH", 0x8280}, - {"GL_MAX_LAYERS", 0x8281}, - {"GL_MAX_COMBINED_DIMENSIONS", 0x8282}, - {"GL_COLOR_COMPONENTS", 0x8283}, - {"GL_DEPTH_COMPONENTS", 0x8284}, - {"GL_STENCIL_COMPONENTS", 0x8285}, - {"GL_COLOR_RENDERABLE", 0x8286}, - {"GL_DEPTH_RENDERABLE", 0x8287}, - {"GL_STENCIL_RENDERABLE", 0x8288}, - {"GL_FRAMEBUFFER_RENDERABLE", 0x8289}, - {"GL_FRAMEBUFFER_RENDERABLE_LAYERED", 0x828A}, - {"GL_FRAMEBUFFER_BLEND", 0x828B}, - {"GL_READ_PIXELS", 0x828C}, - {"GL_READ_PIXELS_FORMAT", 0x828D}, - {"GL_READ_PIXELS_TYPE", 0x828E}, - {"GL_TEXTURE_IMAGE_FORMAT", 0x828F}, - {"GL_TEXTURE_IMAGE_TYPE", 0x8290}, - {"GL_GET_TEXTURE_IMAGE_FORMAT", 0x8291}, - {"GL_GET_TEXTURE_IMAGE_TYPE", 0x8292}, - {"GL_MIPMAP", 0x8293}, - {"GL_MANUAL_GENERATE_MIPMAP", 0x8294}, - {"GL_AUTO_GENERATE_MIPMAP", 0x8295}, - {"GL_COLOR_ENCODING", 0x8296}, - {"GL_SRGB_READ", 0x8297}, - {"GL_SRGB_WRITE", 0x8298}, - {"GL_SRGB_DECODE_ARB", 0x8299}, - {"GL_FILTER", 0x829A}, - {"GL_VERTEX_TEXTURE", 0x829B}, - {"GL_TESS_CONTROL_TEXTURE", 0x829C}, - {"GL_TESS_EVALUATION_TEXTURE", 0x829D}, - {"GL_GEOMETRY_TEXTURE", 0x829E}, - {"GL_FRAGMENT_TEXTURE", 0x829F}, - {"GL_COMPUTE_TEXTURE", 0x82A0}, - {"GL_TEXTURE_SHADOW", 0x82A1}, - {"GL_TEXTURE_GATHER", 0x82A2}, - {"GL_TEXTURE_GATHER_SHADOW", 0x82A3}, - {"GL_SHADER_IMAGE_LOAD", 0x82A4}, - {"GL_SHADER_IMAGE_STORE", 0x82A5}, - {"GL_SHADER_IMAGE_ATOMIC", 0x82A6}, - {"GL_IMAGE_TEXEL_SIZE", 0x82A7}, - {"GL_IMAGE_COMPATIBILITY_CLASS", 0x82A8}, - {"GL_IMAGE_PIXEL_FORMAT", 0x82A9}, - {"GL_IMAGE_PIXEL_TYPE", 0x82AA}, - {"GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_TEST", 0x82AC}, - {"GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_TEST", 0x82AD}, - {"GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_WRITE", 0x82AE}, - {"GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_WRITE", 0x82AF}, - {"GL_TEXTURE_COMPRESSED_BLOCK_WIDTH", 0x82B1}, - {"GL_TEXTURE_COMPRESSED_BLOCK_HEIGHT", 0x82B2}, - {"GL_TEXTURE_COMPRESSED_BLOCK_SIZE", 0x82B3}, - {"GL_CLEAR_BUFFER", 0x82B4}, - {"GL_TEXTURE_VIEW", 0x82B5}, - {"GL_VIEW_COMPATIBILITY_CLASS", 0x82B6}, - {"GL_FULL_SUPPORT", 0x82B7}, - {"GL_CAVEAT_SUPPORT", 0x82B8}, - {"GL_IMAGE_CLASS_4_X_32", 0x82B9}, - {"GL_IMAGE_CLASS_2_X_32", 0x82BA}, - {"GL_IMAGE_CLASS_1_X_32", 0x82BB}, - {"GL_IMAGE_CLASS_4_X_16", 0x82BC}, - {"GL_IMAGE_CLASS_2_X_16", 0x82BD}, - {"GL_IMAGE_CLASS_1_X_16", 0x82BE}, - {"GL_IMAGE_CLASS_4_X_8", 0x82BF}, - {"GL_IMAGE_CLASS_2_X_8", 0x82C0}, - {"GL_IMAGE_CLASS_1_X_8", 0x82C1}, - {"GL_IMAGE_CLASS_11_11_10", 0x82C2}, - {"GL_IMAGE_CLASS_10_10_10_2", 0x82C3}, - {"GL_VIEW_CLASS_128_BITS", 0x82C4}, - {"GL_VIEW_CLASS_96_BITS", 0x82C5}, - {"GL_VIEW_CLASS_64_BITS", 0x82C6}, - {"GL_VIEW_CLASS_48_BITS", 0x82C7}, - {"GL_VIEW_CLASS_32_BITS", 0x82C8}, - {"GL_VIEW_CLASS_24_BITS", 0x82C9}, - {"GL_VIEW_CLASS_16_BITS", 0x82CA}, - {"GL_VIEW_CLASS_8_BITS", 0x82CB}, - {"GL_VIEW_CLASS_S3TC_DXT1_RGB", 0x82CC}, - {"GL_VIEW_CLASS_S3TC_DXT1_RGBA", 0x82CD}, - {"GL_VIEW_CLASS_S3TC_DXT3_RGBA", 0x82CE}, - {"GL_VIEW_CLASS_S3TC_DXT5_RGBA", 0x82CF}, - {"GL_VIEW_CLASS_RGTC1_RED", 0x82D0}, - {"GL_VIEW_CLASS_RGTC2_RG", 0x82D1}, - {"GL_VIEW_CLASS_BPTC_UNORM", 0x82D2}, - {"GL_VIEW_CLASS_BPTC_FLOAT", 0x82D3}, - {"GL_VERTEX_ATTRIB_BINDING", 0x82D4}, - {"GL_VERTEX_ATTRIB_RELATIVE_OFFSET", 0x82D5}, - {"GL_VERTEX_BINDING_DIVISOR", 0x82D6}, - {"GL_VERTEX_BINDING_OFFSET", 0x82D7}, - {"GL_VERTEX_BINDING_STRIDE", 0x82D8}, - {"GL_MAX_VERTEX_ATTRIB_RELATIVE_OFFSET", 0x82D9}, - {"GL_MAX_VERTEX_ATTRIB_BINDINGS", 0x82DA}, - {"GL_TEXTURE_VIEW_MIN_LEVEL", 0x82DB}, - {"GL_TEXTURE_VIEW_NUM_LEVELS", 0x82DC}, - {"GL_TEXTURE_VIEW_MIN_LAYER", 0x82DD}, - {"GL_TEXTURE_VIEW_NUM_LAYERS", 0x82DE}, - {"GL_TEXTURE_IMMUTABLE_LEVELS", 0x82DF}, - {"GL_BUFFER", 0x82E0}, - {"GL_BUFFER_KHR", 0x82E0}, - {"GL_SHADER", 0x82E1}, - {"GL_SHADER_KHR", 0x82E1}, - {"GL_PROGRAM", 0x82E2}, - {"GL_PROGRAM_KHR", 0x82E2}, - {"GL_QUERY", 0x82E3}, - {"GL_QUERY_KHR", 0x82E3}, - {"GL_PROGRAM_PIPELINE", 0x82E4}, - {"GL_MAX_VERTEX_ATTRIB_STRIDE", 0x82E5}, - {"GL_SAMPLER", 0x82E6}, - {"GL_SAMPLER_KHR", 0x82E6}, - {"GL_DISPLAY_LIST", 0x82E7}, - {"GL_MAX_LABEL_LENGTH", 0x82E8}, - {"GL_MAX_LABEL_LENGTH_KHR", 0x82E8}, - {"GL_NUM_SHADING_LANGUAGE_VERSIONS", 0x82E9}, - {"GL_DEPTH_PASS_INSTRUMENT_SGIX", 0x8310}, - {"GL_DEPTH_PASS_INSTRUMENT_COUNTERS_SGIX", 0x8311}, - {"GL_DEPTH_PASS_INSTRUMENT_MAX_SGIX", 0x8312}, - {"GL_FRAGMENTS_INSTRUMENT_SGIX", 0x8313}, - {"GL_FRAGMENTS_INSTRUMENT_COUNTERS_SGIX", 0x8314}, - {"GL_FRAGMENTS_INSTRUMENT_MAX_SGIX", 0x8315}, - {"GL_CONVOLUTION_HINT_SGIX", 0x8316}, - {"GL_YCRCB_SGIX", 0x8318}, - {"GL_YCRCBA_SGIX", 0x8319}, - {"GL_UNPACK_COMPRESSED_SIZE_SGIX", 0x831A}, - {"GL_PACK_MAX_COMPRESSED_SIZE_SGIX", 0x831B}, - {"GL_PACK_COMPRESSED_SIZE_SGIX", 0x831C}, - {"GL_SLIM8U_SGIX", 0x831D}, - {"GL_SLIM10U_SGIX", 0x831E}, - {"GL_SLIM12S_SGIX", 0x831F}, - {"GL_ALPHA_MIN_SGIX", 0x8320}, - {"GL_ALPHA_MAX_SGIX", 0x8321}, - {"GL_SCALEBIAS_HINT_SGIX", 0x8322}, - {"GL_ASYNC_MARKER_SGIX", 0x8329}, - {"GL_PIXEL_TEX_GEN_MODE_SGIX", 0x832B}, - {"GL_ASYNC_HISTOGRAM_SGIX", 0x832C}, - {"GL_MAX_ASYNC_HISTOGRAM_SGIX", 0x832D}, - {"GL_PIXEL_TRANSFORM_2D_EXT", 0x8330}, - {"GL_PIXEL_MAG_FILTER_EXT", 0x8331}, - {"GL_PIXEL_MIN_FILTER_EXT", 0x8332}, - {"GL_PIXEL_CUBIC_WEIGHT_EXT", 0x8333}, - {"GL_CUBIC_EXT", 0x8334}, - {"GL_AVERAGE_EXT", 0x8335}, - {"GL_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT", 0x8336}, - {"GL_MAX_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT", 0x8337}, - {"GL_PIXEL_TRANSFORM_2D_MATRIX_EXT", 0x8338}, - {"GL_FRAGMENT_MATERIAL_EXT", 0x8349}, - {"GL_FRAGMENT_NORMAL_EXT", 0x834A}, - {"GL_FRAGMENT_COLOR_EXT", 0x834C}, - {"GL_ATTENUATION_EXT", 0x834D}, - {"GL_SHADOW_ATTENUATION_EXT", 0x834E}, - {"GL_TEXTURE_APPLICATION_MODE_EXT", 0x834F}, - {"GL_TEXTURE_LIGHT_EXT", 0x8350}, - {"GL_TEXTURE_MATERIAL_FACE_EXT", 0x8351}, - {"GL_TEXTURE_MATERIAL_PARAMETER_EXT", 0x8352}, - {"GL_PIXEL_TEXTURE_SGIS", 0x8353}, - {"GL_PIXEL_FRAGMENT_RGB_SOURCE_SGIS", 0x8354}, - {"GL_PIXEL_FRAGMENT_ALPHA_SOURCE_SGIS", 0x8355}, - {"GL_PIXEL_GROUP_COLOR_SGIS", 0x8356}, - {"GL_LINE_QUALITY_HINT_SGIX", 0x835B}, - {"GL_ASYNC_TEX_IMAGE_SGIX", 0x835C}, - {"GL_ASYNC_DRAW_PIXELS_SGIX", 0x835D}, - {"GL_ASYNC_READ_PIXELS_SGIX", 0x835E}, - {"GL_MAX_ASYNC_TEX_IMAGE_SGIX", 0x835F}, - {"GL_MAX_ASYNC_DRAW_PIXELS_SGIX", 0x8360}, - {"GL_MAX_ASYNC_READ_PIXELS_SGIX", 0x8361}, - {"GL_UNSIGNED_BYTE_2_3_3_REV", 0x8362}, - {"GL_UNSIGNED_BYTE_2_3_3_REV_EXT", 0x8362}, - {"GL_UNSIGNED_SHORT_5_6_5", 0x8363}, - {"GL_UNSIGNED_SHORT_5_6_5_EXT", 0x8363}, - {"GL_UNSIGNED_SHORT_5_6_5_REV", 0x8364}, - {"GL_UNSIGNED_SHORT_5_6_5_REV_EXT", 0x8364}, - {"GL_UNSIGNED_SHORT_4_4_4_4_REV", 0x8365}, - {"GL_UNSIGNED_SHORT_4_4_4_4_REV_EXT", 0x8365}, - {"GL_UNSIGNED_SHORT_1_5_5_5_REV", 0x8366}, - {"GL_UNSIGNED_SHORT_1_5_5_5_REV_EXT", 0x8366}, - {"GL_UNSIGNED_INT_8_8_8_8_REV", 0x8367}, - {"GL_UNSIGNED_INT_8_8_8_8_REV_EXT", 0x8367}, - {"GL_UNSIGNED_INT_2_10_10_10_REV", 0x8368}, - {"GL_UNSIGNED_INT_2_10_10_10_REV_EXT", 0x8368}, - {"GL_TEXTURE_MAX_CLAMP_S_SGIX", 0x8369}, - {"GL_TEXTURE_MAX_CLAMP_T_SGIX", 0x836A}, - {"GL_TEXTURE_MAX_CLAMP_R_SGIX", 0x836B}, - {"GL_MIRRORED_REPEAT", 0x8370}, - {"GL_MIRRORED_REPEAT_ARB", 0x8370}, - {"GL_MIRRORED_REPEAT_IBM", 0x8370}, - {"GL_MIRRORED_REPEAT_OES", 0x8370}, - {"GL_RGB_S3TC", 0x83A0}, - {"GL_RGB4_S3TC", 0x83A1}, - {"GL_RGBA_S3TC", 0x83A2}, - {"GL_RGBA4_S3TC", 0x83A3}, - {"GL_RGBA_DXT5_S3TC", 0x83A4}, - {"GL_RGBA4_DXT5_S3TC", 0x83A5}, - {"GL_VERTEX_PRECLIP_SGIX", 0x83EE}, - {"GL_VERTEX_PRECLIP_HINT_SGIX", 0x83EF}, - {"GL_COMPRESSED_RGB_S3TC_DXT1_EXT", 0x83F0}, - {"GL_COMPRESSED_RGBA_S3TC_DXT1_EXT", 0x83F1}, - {"GL_COMPRESSED_RGBA_S3TC_DXT3_ANGLE", 0x83F2}, - {"GL_COMPRESSED_RGBA_S3TC_DXT3_EXT", 0x83F2}, - {"GL_COMPRESSED_RGBA_S3TC_DXT5_ANGLE", 0x83F3}, - {"GL_COMPRESSED_RGBA_S3TC_DXT5_EXT", 0x83F3}, - {"GL_PARALLEL_ARRAYS_INTEL", 0x83F4}, - {"GL_VERTEX_ARRAY_PARALLEL_POINTERS_INTEL", 0x83F5}, - {"GL_NORMAL_ARRAY_PARALLEL_POINTERS_INTEL", 0x83F6}, - {"GL_COLOR_ARRAY_PARALLEL_POINTERS_INTEL", 0x83F7}, - {"GL_TEXTURE_COORD_ARRAY_PARALLEL_POINTERS_INTEL", 0x83F8}, - {"GL_TEXTURE_MEMORY_LAYOUT_INTEL", 0x83FF}, - {"GL_FRAGMENT_LIGHTING_SGIX", 0x8400}, - {"GL_FRAGMENT_COLOR_MATERIAL_SGIX", 0x8401}, - {"GL_FRAGMENT_COLOR_MATERIAL_FACE_SGIX", 0x8402}, - {"GL_FRAGMENT_COLOR_MATERIAL_PARAMETER_SGIX", 0x8403}, - {"GL_MAX_FRAGMENT_LIGHTS_SGIX", 0x8404}, - {"GL_MAX_ACTIVE_LIGHTS_SGIX", 0x8405}, - {"GL_CURRENT_RASTER_NORMAL_SGIX", 0x8406}, - {"GL_LIGHT_ENV_MODE_SGIX", 0x8407}, - {"GL_FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX", 0x8408}, - {"GL_FRAGMENT_LIGHT_MODEL_TWO_SIDE_SGIX", 0x8409}, - {"GL_FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX", 0x840A}, - {"GL_FRAGMENT_LIGHT_MODEL_NORMAL_INTERPOLATION_SGIX", 0x840B}, - {"GL_FRAGMENT_LIGHT0_SGIX", 0x840C}, - {"GL_FRAGMENT_LIGHT1_SGIX", 0x840D}, - {"GL_FRAGMENT_LIGHT2_SGIX", 0x840E}, - {"GL_FRAGMENT_LIGHT3_SGIX", 0x840F}, - {"GL_FRAGMENT_LIGHT4_SGIX", 0x8410}, - {"GL_FRAGMENT_LIGHT5_SGIX", 0x8411}, - {"GL_FRAGMENT_LIGHT6_SGIX", 0x8412}, - {"GL_FRAGMENT_LIGHT7_SGIX", 0x8413}, - {"GL_PACK_RESAMPLE_SGIX", 0x842C}, - {"GL_UNPACK_RESAMPLE_SGIX", 0x842D}, - {"GL_RESAMPLE_REPLICATE_SGIX", 0x842E}, - {"GL_RESAMPLE_ZERO_FILL_SGIX", 0x842F}, - {"GL_RESAMPLE_DECIMATE_SGIX", 0x8430}, - {"GL_TANGENT_ARRAY_EXT", 0x8439}, - {"GL_BINORMAL_ARRAY_EXT", 0x843A}, - {"GL_CURRENT_TANGENT_EXT", 0x843B}, - {"GL_CURRENT_BINORMAL_EXT", 0x843C}, - {"GL_TANGENT_ARRAY_TYPE_EXT", 0x843E}, - {"GL_TANGENT_ARRAY_STRIDE_EXT", 0x843F}, - {"GL_BINORMAL_ARRAY_TYPE_EXT", 0x8440}, - {"GL_BINORMAL_ARRAY_STRIDE_EXT", 0x8441}, - {"GL_TANGENT_ARRAY_POINTER_EXT", 0x8442}, - {"GL_BINORMAL_ARRAY_POINTER_EXT", 0x8443}, - {"GL_MAP1_TANGENT_EXT", 0x8444}, - {"GL_MAP2_TANGENT_EXT", 0x8445}, - {"GL_MAP1_BINORMAL_EXT", 0x8446}, - {"GL_MAP2_BINORMAL_EXT", 0x8447}, - {"GL_NEAREST_CLIPMAP_NEAREST_SGIX", 0x844D}, - {"GL_NEAREST_CLIPMAP_LINEAR_SGIX", 0x844E}, - {"GL_LINEAR_CLIPMAP_NEAREST_SGIX", 0x844F}, - {"GL_FOG_COORDINATE_SOURCE", 0x8450}, - {"GL_FOG_COORDINATE_SOURCE_EXT", 0x8450}, - {"GL_FOG_COORD_SRC", 0x8450}, - {"GL_FOG_COORDINATE", 0x8451}, - {"GL_FOG_COORD", 0x8451}, - {"GL_FOG_COORDINATE_EXT", 0x8451}, - {"GL_FRAGMENT_DEPTH", 0x8452}, - {"GL_FRAGMENT_DEPTH_EXT", 0x8452}, - {"GL_CURRENT_FOG_COORDINATE", 0x8453}, - {"GL_CURRENT_FOG_COORD", 0x8453}, - {"GL_CURRENT_FOG_COORDINATE_EXT", 0x8453}, - {"GL_FOG_COORDINATE_ARRAY_TYPE", 0x8454}, - {"GL_FOG_COORDINATE_ARRAY_TYPE_EXT", 0x8454}, - {"GL_FOG_COORD_ARRAY_TYPE", 0x8454}, - {"GL_FOG_COORDINATE_ARRAY_STRIDE", 0x8455}, - {"GL_FOG_COORDINATE_ARRAY_STRIDE_EXT", 0x8455}, - {"GL_FOG_COORD_ARRAY_STRIDE", 0x8455}, - {"GL_FOG_COORDINATE_ARRAY_POINTER", 0x8456}, - {"GL_FOG_COORDINATE_ARRAY_POINTER_EXT", 0x8456}, - {"GL_FOG_COORD_ARRAY_POINTER", 0x8456}, - {"GL_FOG_COORDINATE_ARRAY", 0x8457}, - {"GL_FOG_COORDINATE_ARRAY_EXT", 0x8457}, - {"GL_FOG_COORD_ARRAY", 0x8457}, - {"GL_COLOR_SUM", 0x8458}, - {"GL_COLOR_SUM_ARB", 0x8458}, - {"GL_COLOR_SUM_EXT", 0x8458}, - {"GL_CURRENT_SECONDARY_COLOR", 0x8459}, - {"GL_CURRENT_SECONDARY_COLOR_EXT", 0x8459}, - {"GL_SECONDARY_COLOR_ARRAY_SIZE", 0x845A}, - {"GL_SECONDARY_COLOR_ARRAY_SIZE_EXT", 0x845A}, - {"GL_SECONDARY_COLOR_ARRAY_TYPE", 0x845B}, - {"GL_SECONDARY_COLOR_ARRAY_TYPE_EXT", 0x845B}, - {"GL_SECONDARY_COLOR_ARRAY_STRIDE", 0x845C}, - {"GL_SECONDARY_COLOR_ARRAY_STRIDE_EXT", 0x845C}, - {"GL_SECONDARY_COLOR_ARRAY_POINTER", 0x845D}, - {"GL_SECONDARY_COLOR_ARRAY_POINTER_EXT", 0x845D}, - {"GL_SECONDARY_COLOR_ARRAY", 0x845E}, - {"GL_SECONDARY_COLOR_ARRAY_EXT", 0x845E}, - {"GL_CURRENT_RASTER_SECONDARY_COLOR", 0x845F}, - {"GL_ALIASED_POINT_SIZE_RANGE", 0x846D}, - {"GL_ALIASED_LINE_WIDTH_RANGE", 0x846E}, - {"GL_SCREEN_COORDINATES_REND", 0x8490}, - {"GL_INVERTED_SCREEN_W_REND", 0x8491}, - {"GL_TEXTURE0", 0x84C0}, - {"GL_TEXTURE0_ARB", 0x84C0}, - {"GL_TEXTURE1", 0x84C1}, - {"GL_TEXTURE1_ARB", 0x84C1}, - {"GL_TEXTURE2", 0x84C2}, - {"GL_TEXTURE2_ARB", 0x84C2}, - {"GL_TEXTURE3", 0x84C3}, - {"GL_TEXTURE3_ARB", 0x84C3}, - {"GL_TEXTURE4", 0x84C4}, - {"GL_TEXTURE4_ARB", 0x84C4}, - {"GL_TEXTURE5", 0x84C5}, - {"GL_TEXTURE5_ARB", 0x84C5}, - {"GL_TEXTURE6", 0x84C6}, - {"GL_TEXTURE6_ARB", 0x84C6}, - {"GL_TEXTURE7", 0x84C7}, - {"GL_TEXTURE7_ARB", 0x84C7}, - {"GL_TEXTURE8", 0x84C8}, - {"GL_TEXTURE8_ARB", 0x84C8}, - {"GL_TEXTURE9", 0x84C9}, - {"GL_TEXTURE9_ARB", 0x84C9}, - {"GL_TEXTURE10", 0x84CA}, - {"GL_TEXTURE10_ARB", 0x84CA}, - {"GL_TEXTURE11", 0x84CB}, - {"GL_TEXTURE11_ARB", 0x84CB}, - {"GL_TEXTURE12", 0x84CC}, - {"GL_TEXTURE12_ARB", 0x84CC}, - {"GL_TEXTURE13", 0x84CD}, - {"GL_TEXTURE13_ARB", 0x84CD}, - {"GL_TEXTURE14", 0x84CE}, - {"GL_TEXTURE14_ARB", 0x84CE}, - {"GL_TEXTURE15", 0x84CF}, - {"GL_TEXTURE15_ARB", 0x84CF}, - {"GL_TEXTURE16", 0x84D0}, - {"GL_TEXTURE16_ARB", 0x84D0}, - {"GL_TEXTURE17", 0x84D1}, - {"GL_TEXTURE17_ARB", 0x84D1}, - {"GL_TEXTURE18", 0x84D2}, - {"GL_TEXTURE18_ARB", 0x84D2}, - {"GL_TEXTURE19", 0x84D3}, - {"GL_TEXTURE19_ARB", 0x84D3}, - {"GL_TEXTURE20", 0x84D4}, - {"GL_TEXTURE20_ARB", 0x84D4}, - {"GL_TEXTURE21", 0x84D5}, - {"GL_TEXTURE21_ARB", 0x84D5}, - {"GL_TEXTURE22", 0x84D6}, - {"GL_TEXTURE22_ARB", 0x84D6}, - {"GL_TEXTURE23", 0x84D7}, - {"GL_TEXTURE23_ARB", 0x84D7}, - {"GL_TEXTURE24", 0x84D8}, - {"GL_TEXTURE24_ARB", 0x84D8}, - {"GL_TEXTURE25", 0x84D9}, - {"GL_TEXTURE25_ARB", 0x84D9}, - {"GL_TEXTURE26", 0x84DA}, - {"GL_TEXTURE26_ARB", 0x84DA}, - {"GL_TEXTURE27", 0x84DB}, - {"GL_TEXTURE27_ARB", 0x84DB}, - {"GL_TEXTURE28", 0x84DC}, - {"GL_TEXTURE28_ARB", 0x84DC}, - {"GL_TEXTURE29", 0x84DD}, - {"GL_TEXTURE29_ARB", 0x84DD}, - {"GL_TEXTURE30", 0x84DE}, - {"GL_TEXTURE30_ARB", 0x84DE}, - {"GL_TEXTURE31", 0x84DF}, - {"GL_TEXTURE31_ARB", 0x84DF}, - {"GL_ACTIVE_TEXTURE", 0x84E0}, - {"GL_ACTIVE_TEXTURE_ARB", 0x84E0}, - {"GL_CLIENT_ACTIVE_TEXTURE", 0x84E1}, - {"GL_CLIENT_ACTIVE_TEXTURE_ARB", 0x84E1}, - {"GL_MAX_TEXTURE_UNITS", 0x84E2}, - {"GL_MAX_TEXTURE_UNITS_ARB", 0x84E2}, - {"GL_TRANSPOSE_MODELVIEW_MATRIX", 0x84E3}, - {"GL_TRANSPOSE_MODELVIEW_MATRIX_ARB", 0x84E3}, - {"GL_TRANSPOSE_PROJECTION_MATRIX", 0x84E4}, - {"GL_TRANSPOSE_PROJECTION_MATRIX_ARB", 0x84E4}, - {"GL_TRANSPOSE_TEXTURE_MATRIX", 0x84E5}, - {"GL_TRANSPOSE_TEXTURE_MATRIX_ARB", 0x84E5}, - {"GL_TRANSPOSE_COLOR_MATRIX", 0x84E6}, - {"GL_TRANSPOSE_COLOR_MATRIX_ARB", 0x84E6}, - {"GL_SUBTRACT", 0x84E7}, - {"GL_SUBTRACT_ARB", 0x84E7}, - {"GL_MAX_RENDERBUFFER_SIZE", 0x84E8}, - {"GL_MAX_RENDERBUFFER_SIZE_EXT", 0x84E8}, - {"GL_MAX_RENDERBUFFER_SIZE_OES", 0x84E8}, - {"GL_COMPRESSED_ALPHA", 0x84E9}, - {"GL_COMPRESSED_ALPHA_ARB", 0x84E9}, - {"GL_COMPRESSED_LUMINANCE", 0x84EA}, - {"GL_COMPRESSED_LUMINANCE_ARB", 0x84EA}, - {"GL_COMPRESSED_LUMINANCE_ALPHA", 0x84EB}, - {"GL_COMPRESSED_LUMINANCE_ALPHA_ARB", 0x84EB}, - {"GL_COMPRESSED_INTENSITY", 0x84EC}, - {"GL_COMPRESSED_INTENSITY_ARB", 0x84EC}, - {"GL_COMPRESSED_RGB", 0x84ED}, - {"GL_COMPRESSED_RGB_ARB", 0x84ED}, - {"GL_COMPRESSED_RGBA", 0x84EE}, - {"GL_COMPRESSED_RGBA_ARB", 0x84EE}, - {"GL_TEXTURE_COMPRESSION_HINT", 0x84EF}, - {"GL_TEXTURE_COMPRESSION_HINT_ARB", 0x84EF}, - {"GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_CONTROL_SHADER", 0x84F0}, - {"GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_EVALUATION_SHADER", 0x84F1}, - {"GL_ALL_COMPLETED_NV", 0x84F2}, - {"GL_FENCE_STATUS_NV", 0x84F3}, - {"GL_FENCE_CONDITION_NV", 0x84F4}, - {"GL_TEXTURE_RECTANGLE", 0x84F5}, - {"GL_TEXTURE_RECTANGLE_ARB", 0x84F5}, - {"GL_TEXTURE_RECTANGLE_NV", 0x84F5}, - {"GL_TEXTURE_BINDING_RECTANGLE", 0x84F6}, - {"GL_TEXTURE_BINDING_RECTANGLE_ARB", 0x84F6}, - {"GL_TEXTURE_BINDING_RECTANGLE_NV", 0x84F6}, - {"GL_PROXY_TEXTURE_RECTANGLE", 0x84F7}, - {"GL_PROXY_TEXTURE_RECTANGLE_ARB", 0x84F7}, - {"GL_PROXY_TEXTURE_RECTANGLE_NV", 0x84F7}, - {"GL_MAX_RECTANGLE_TEXTURE_SIZE", 0x84F8}, - {"GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB", 0x84F8}, - {"GL_MAX_RECTANGLE_TEXTURE_SIZE_NV", 0x84F8}, - {"GL_DEPTH_STENCIL", 0x84F9}, - {"GL_DEPTH_STENCIL_EXT", 0x84F9}, - {"GL_DEPTH_STENCIL_NV", 0x84F9}, - {"GL_DEPTH_STENCIL_OES", 0x84F9}, - {"GL_UNSIGNED_INT_24_8", 0x84FA}, - {"GL_UNSIGNED_INT_24_8_EXT", 0x84FA}, - {"GL_UNSIGNED_INT_24_8_NV", 0x84FA}, - {"GL_UNSIGNED_INT_24_8_OES", 0x84FA}, - {"GL_MAX_TEXTURE_LOD_BIAS", 0x84FD}, - {"GL_MAX_TEXTURE_LOD_BIAS_EXT", 0x84FD}, - {"GL_TEXTURE_MAX_ANISOTROPY_EXT", 0x84FE}, - {"GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT", 0x84FF}, - {"GL_TEXTURE_FILTER_CONTROL", 0x8500}, - {"GL_TEXTURE_FILTER_CONTROL_EXT", 0x8500}, - {"GL_TEXTURE_LOD_BIAS", 0x8501}, - {"GL_TEXTURE_LOD_BIAS_EXT", 0x8501}, - {"GL_MODELVIEW1_STACK_DEPTH_EXT", 0x8502}, - {"GL_COMBINE4_NV", 0x8503}, - {"GL_MAX_SHININESS_NV", 0x8504}, - {"GL_MAX_SPOT_EXPONENT_NV", 0x8505}, - {"GL_MODELVIEW1_MATRIX_EXT", 0x8506}, - {"GL_INCR_WRAP", 0x8507}, - {"GL_INCR_WRAP_EXT", 0x8507}, - {"GL_INCR_WRAP_OES", 0x8507}, - {"GL_DECR_WRAP", 0x8508}, - {"GL_DECR_WRAP_EXT", 0x8508}, - {"GL_DECR_WRAP_OES", 0x8508}, - {"GL_VERTEX_WEIGHTING_EXT", 0x8509}, - {"GL_MODELVIEW1_ARB", 0x850A}, - {"GL_MODELVIEW1_EXT", 0x850A}, - {"GL_CURRENT_VERTEX_WEIGHT_EXT", 0x850B}, - {"GL_VERTEX_WEIGHT_ARRAY_EXT", 0x850C}, - {"GL_VERTEX_WEIGHT_ARRAY_SIZE_EXT", 0x850D}, - {"GL_VERTEX_WEIGHT_ARRAY_TYPE_EXT", 0x850E}, - {"GL_VERTEX_WEIGHT_ARRAY_STRIDE_EXT", 0x850F}, - {"GL_VERTEX_WEIGHT_ARRAY_POINTER_EXT", 0x8510}, - {"GL_NORMAL_MAP", 0x8511}, - {"GL_NORMAL_MAP_ARB", 0x8511}, - {"GL_NORMAL_MAP_EXT", 0x8511}, - {"GL_NORMAL_MAP_NV", 0x8511}, - {"GL_NORMAL_MAP_OES", 0x8511}, - {"GL_REFLECTION_MAP", 0x8512}, - {"GL_REFLECTION_MAP_ARB", 0x8512}, - {"GL_REFLECTION_MAP_EXT", 0x8512}, - {"GL_REFLECTION_MAP_NV", 0x8512}, - {"GL_REFLECTION_MAP_OES", 0x8512}, - {"GL_TEXTURE_CUBE_MAP", 0x8513}, - {"GL_TEXTURE_CUBE_MAP_ARB", 0x8513}, - {"GL_TEXTURE_CUBE_MAP_EXT", 0x8513}, - {"GL_TEXTURE_CUBE_MAP_OES", 0x8513}, - {"GL_TEXTURE_BINDING_CUBE_MAP", 0x8514}, - {"GL_TEXTURE_BINDING_CUBE_MAP_ARB", 0x8514}, - {"GL_TEXTURE_BINDING_CUBE_MAP_EXT", 0x8514}, - {"GL_TEXTURE_BINDING_CUBE_MAP_OES", 0x8514}, - {"GL_TEXTURE_CUBE_MAP_POSITIVE_X", 0x8515}, - {"GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB", 0x8515}, - {"GL_TEXTURE_CUBE_MAP_POSITIVE_X_EXT", 0x8515}, - {"GL_TEXTURE_CUBE_MAP_POSITIVE_X_OES", 0x8515}, - {"GL_TEXTURE_CUBE_MAP_NEGATIVE_X", 0x8516}, - {"GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB", 0x8516}, - {"GL_TEXTURE_CUBE_MAP_NEGATIVE_X_EXT", 0x8516}, - {"GL_TEXTURE_CUBE_MAP_NEGATIVE_X_OES", 0x8516}, - {"GL_TEXTURE_CUBE_MAP_POSITIVE_Y", 0x8517}, - {"GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB", 0x8517}, - {"GL_TEXTURE_CUBE_MAP_POSITIVE_Y_EXT", 0x8517}, - {"GL_TEXTURE_CUBE_MAP_POSITIVE_Y_OES", 0x8517}, - {"GL_TEXTURE_CUBE_MAP_NEGATIVE_Y", 0x8518}, - {"GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB", 0x8518}, - {"GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_EXT", 0x8518}, - {"GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_OES", 0x8518}, - {"GL_TEXTURE_CUBE_MAP_POSITIVE_Z", 0x8519}, - {"GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB", 0x8519}, - {"GL_TEXTURE_CUBE_MAP_POSITIVE_Z_EXT", 0x8519}, - {"GL_TEXTURE_CUBE_MAP_POSITIVE_Z_OES", 0x8519}, - {"GL_TEXTURE_CUBE_MAP_NEGATIVE_Z", 0x851A}, - {"GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB", 0x851A}, - {"GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_EXT", 0x851A}, - {"GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_OES", 0x851A}, - {"GL_PROXY_TEXTURE_CUBE_MAP", 0x851B}, - {"GL_PROXY_TEXTURE_CUBE_MAP_ARB", 0x851B}, - {"GL_PROXY_TEXTURE_CUBE_MAP_EXT", 0x851B}, - {"GL_MAX_CUBE_MAP_TEXTURE_SIZE", 0x851C}, - {"GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB", 0x851C}, - {"GL_MAX_CUBE_MAP_TEXTURE_SIZE_EXT", 0x851C}, - {"GL_MAX_CUBE_MAP_TEXTURE_SIZE_OES", 0x851C}, - {"GL_VERTEX_ARRAY_RANGE_APPLE", 0x851D}, - {"GL_VERTEX_ARRAY_RANGE_NV", 0x851D}, - {"GL_VERTEX_ARRAY_RANGE_LENGTH_APPLE", 0x851E}, - {"GL_VERTEX_ARRAY_RANGE_LENGTH_NV", 0x851E}, - {"GL_VERTEX_ARRAY_RANGE_VALID_NV", 0x851F}, - {"GL_VERTEX_ARRAY_STORAGE_HINT_APPLE", 0x851F}, - {"GL_MAX_VERTEX_ARRAY_RANGE_ELEMENT_NV", 0x8520}, - {"GL_VERTEX_ARRAY_RANGE_POINTER_APPLE", 0x8521}, - {"GL_VERTEX_ARRAY_RANGE_POINTER_NV", 0x8521}, - {"GL_REGISTER_COMBINERS_NV", 0x8522}, - {"GL_VARIABLE_A_NV", 0x8523}, - {"GL_VARIABLE_B_NV", 0x8524}, - {"GL_VARIABLE_C_NV", 0x8525}, - {"GL_VARIABLE_D_NV", 0x8526}, - {"GL_VARIABLE_E_NV", 0x8527}, - {"GL_VARIABLE_F_NV", 0x8528}, - {"GL_VARIABLE_G_NV", 0x8529}, - {"GL_CONSTANT_COLOR0_NV", 0x852A}, - {"GL_CONSTANT_COLOR1_NV", 0x852B}, - {"GL_PRIMARY_COLOR_NV", 0x852C}, - {"GL_SECONDARY_COLOR_NV", 0x852D}, - {"GL_SPARE0_NV", 0x852E}, - {"GL_SPARE1_NV", 0x852F}, - {"GL_DISCARD_NV", 0x8530}, - {"GL_E_TIMES_F_NV", 0x8531}, - {"GL_SPARE0_PLUS_SECONDARY_COLOR_NV", 0x8532}, - {"GL_VERTEX_ARRAY_RANGE_WITHOUT_FLUSH_NV", 0x8533}, - {"GL_MULTISAMPLE_FILTER_HINT_NV", 0x8534}, - {"GL_PER_STAGE_CONSTANTS_NV", 0x8535}, - {"GL_UNSIGNED_IDENTITY_NV", 0x8536}, - {"GL_UNSIGNED_INVERT_NV", 0x8537}, - {"GL_EXPAND_NORMAL_NV", 0x8538}, - {"GL_EXPAND_NEGATE_NV", 0x8539}, - {"GL_HALF_BIAS_NORMAL_NV", 0x853A}, - {"GL_HALF_BIAS_NEGATE_NV", 0x853B}, - {"GL_SIGNED_IDENTITY_NV", 0x853C}, - {"GL_SIGNED_NEGATE_NV", 0x853D}, - {"GL_SCALE_BY_TWO_NV", 0x853E}, - {"GL_SCALE_BY_FOUR_NV", 0x853F}, - {"GL_SCALE_BY_ONE_HALF_NV", 0x8540}, - {"GL_BIAS_BY_NEGATIVE_ONE_HALF_NV", 0x8541}, - {"GL_COMBINER_INPUT_NV", 0x8542}, - {"GL_COMBINER_MAPPING_NV", 0x8543}, - {"GL_COMBINER_COMPONENT_USAGE_NV", 0x8544}, - {"GL_COMBINER_AB_DOT_PRODUCT_NV", 0x8545}, - {"GL_COMBINER_CD_DOT_PRODUCT_NV", 0x8546}, - {"GL_COMBINER_MUX_SUM_NV", 0x8547}, - {"GL_COMBINER_SCALE_NV", 0x8548}, - {"GL_COMBINER_BIAS_NV", 0x8549}, - {"GL_COMBINER_AB_OUTPUT_NV", 0x854A}, - {"GL_COMBINER_CD_OUTPUT_NV", 0x854B}, - {"GL_COMBINER_SUM_OUTPUT_NV", 0x854C}, - {"GL_MAX_GENERAL_COMBINERS_NV", 0x854D}, - {"GL_NUM_GENERAL_COMBINERS_NV", 0x854E}, - {"GL_COLOR_SUM_CLAMP_NV", 0x854F}, - {"GL_COMBINER0_NV", 0x8550}, - {"GL_COMBINER1_NV", 0x8551}, - {"GL_COMBINER2_NV", 0x8552}, - {"GL_COMBINER3_NV", 0x8553}, - {"GL_COMBINER4_NV", 0x8554}, - {"GL_COMBINER5_NV", 0x8555}, - {"GL_COMBINER6_NV", 0x8556}, - {"GL_COMBINER7_NV", 0x8557}, - {"GL_PRIMITIVE_RESTART_NV", 0x8558}, - {"GL_PRIMITIVE_RESTART_INDEX_NV", 0x8559}, - {"GL_FOG_DISTANCE_MODE_NV", 0x855A}, - {"GL_EYE_RADIAL_NV", 0x855B}, - {"GL_EYE_PLANE_ABSOLUTE_NV", 0x855C}, - {"GL_EMBOSS_LIGHT_NV", 0x855D}, - {"GL_EMBOSS_CONSTANT_NV", 0x855E}, - {"GL_EMBOSS_MAP_NV", 0x855F}, - {"GL_RED_MIN_CLAMP_INGR", 0x8560}, - {"GL_GREEN_MIN_CLAMP_INGR", 0x8561}, - {"GL_BLUE_MIN_CLAMP_INGR", 0x8562}, - {"GL_ALPHA_MIN_CLAMP_INGR", 0x8563}, - {"GL_RED_MAX_CLAMP_INGR", 0x8564}, - {"GL_GREEN_MAX_CLAMP_INGR", 0x8565}, - {"GL_BLUE_MAX_CLAMP_INGR", 0x8566}, - {"GL_ALPHA_MAX_CLAMP_INGR", 0x8567}, - {"GL_INTERLACE_READ_INGR", 0x8568}, - {"GL_COMBINE", 0x8570}, - {"GL_COMBINE_ARB", 0x8570}, - {"GL_COMBINE_EXT", 0x8570}, - {"GL_COMBINE_RGB", 0x8571}, - {"GL_COMBINE_RGB_ARB", 0x8571}, - {"GL_COMBINE_RGB_EXT", 0x8571}, - {"GL_COMBINE_ALPHA", 0x8572}, - {"GL_COMBINE_ALPHA_ARB", 0x8572}, - {"GL_COMBINE_ALPHA_EXT", 0x8572}, - {"GL_RGB_SCALE", 0x8573}, - {"GL_RGB_SCALE_ARB", 0x8573}, - {"GL_RGB_SCALE_EXT", 0x8573}, - {"GL_ADD_SIGNED", 0x8574}, - {"GL_ADD_SIGNED_ARB", 0x8574}, - {"GL_ADD_SIGNED_EXT", 0x8574}, - {"GL_INTERPOLATE", 0x8575}, - {"GL_INTERPOLATE_ARB", 0x8575}, - {"GL_INTERPOLATE_EXT", 0x8575}, - {"GL_CONSTANT", 0x8576}, - {"GL_CONSTANT_ARB", 0x8576}, - {"GL_CONSTANT_EXT", 0x8576}, - {"GL_PRIMARY_COLOR", 0x8577}, - {"GL_PRIMARY_COLOR_ARB", 0x8577}, - {"GL_PRIMARY_COLOR_EXT", 0x8577}, - {"GL_PREVIOUS", 0x8578}, - {"GL_PREVIOUS_ARB", 0x8578}, - {"GL_PREVIOUS_EXT", 0x8578}, - {"GL_SOURCE0_RGB", 0x8580}, - {"GL_SOURCE0_RGB_ARB", 0x8580}, - {"GL_SOURCE0_RGB_EXT", 0x8580}, - {"GL_SRC0_RGB", 0x8580}, - {"GL_SOURCE1_RGB", 0x8581}, - {"GL_SOURCE1_RGB_ARB", 0x8581}, - {"GL_SOURCE1_RGB_EXT", 0x8581}, - {"GL_SRC1_RGB", 0x8581}, - {"GL_SOURCE2_RGB", 0x8582}, - {"GL_SOURCE2_RGB_ARB", 0x8582}, - {"GL_SOURCE2_RGB_EXT", 0x8582}, - {"GL_SRC2_RGB", 0x8582}, - {"GL_SOURCE3_RGB_NV", 0x8583}, - {"GL_SOURCE0_ALPHA", 0x8588}, - {"GL_SOURCE0_ALPHA_ARB", 0x8588}, - {"GL_SOURCE0_ALPHA_EXT", 0x8588}, - {"GL_SRC0_ALPHA", 0x8588}, - {"GL_SOURCE1_ALPHA", 0x8589}, - {"GL_SOURCE1_ALPHA_ARB", 0x8589}, - {"GL_SOURCE1_ALPHA_EXT", 0x8589}, - {"GL_SRC1_ALPHA", 0x8589}, - {"GL_SOURCE2_ALPHA", 0x858A}, - {"GL_SOURCE2_ALPHA_ARB", 0x858A}, - {"GL_SOURCE2_ALPHA_EXT", 0x858A}, - {"GL_SRC2_ALPHA", 0x858A}, - {"GL_SOURCE3_ALPHA_NV", 0x858B}, - {"GL_OPERAND0_RGB", 0x8590}, - {"GL_OPERAND0_RGB_ARB", 0x8590}, - {"GL_OPERAND0_RGB_EXT", 0x8590}, - {"GL_OPERAND1_RGB", 0x8591}, - {"GL_OPERAND1_RGB_ARB", 0x8591}, - {"GL_OPERAND1_RGB_EXT", 0x8591}, - {"GL_OPERAND2_RGB", 0x8592}, - {"GL_OPERAND2_RGB_ARB", 0x8592}, - {"GL_OPERAND2_RGB_EXT", 0x8592}, - {"GL_OPERAND3_RGB_NV", 0x8593}, - {"GL_OPERAND0_ALPHA", 0x8598}, - {"GL_OPERAND0_ALPHA_ARB", 0x8598}, - {"GL_OPERAND0_ALPHA_EXT", 0x8598}, - {"GL_OPERAND1_ALPHA", 0x8599}, - {"GL_OPERAND1_ALPHA_ARB", 0x8599}, - {"GL_OPERAND1_ALPHA_EXT", 0x8599}, - {"GL_OPERAND2_ALPHA", 0x859A}, - {"GL_OPERAND2_ALPHA_ARB", 0x859A}, - {"GL_OPERAND2_ALPHA_EXT", 0x859A}, - {"GL_OPERAND3_ALPHA_NV", 0x859B}, - {"GL_PACK_SUBSAMPLE_RATE_SGIX", 0x85A0}, - {"GL_UNPACK_SUBSAMPLE_RATE_SGIX", 0x85A1}, - {"GL_PIXEL_SUBSAMPLE_4444_SGIX", 0x85A2}, - {"GL_PIXEL_SUBSAMPLE_2424_SGIX", 0x85A3}, - {"GL_PIXEL_SUBSAMPLE_4242_SGIX", 0x85A4}, - {"GL_PERTURB_EXT", 0x85AE}, - {"GL_TEXTURE_NORMAL_EXT", 0x85AF}, - {"GL_LIGHT_MODEL_SPECULAR_VECTOR_APPLE", 0x85B0}, - {"GL_TRANSFORM_HINT_APPLE", 0x85B1}, - {"GL_UNPACK_CLIENT_STORAGE_APPLE", 0x85B2}, - {"GL_BUFFER_OBJECT_APPLE", 0x85B3}, - {"GL_STORAGE_CLIENT_APPLE", 0x85B4}, - {"GL_VERTEX_ARRAY_BINDING", 0x85B5}, - {"GL_VERTEX_ARRAY_BINDING_APPLE", 0x85B5}, - {"GL_TEXTURE_RANGE_LENGTH_APPLE", 0x85B7}, - {"GL_TEXTURE_RANGE_POINTER_APPLE", 0x85B8}, - {"GL_YCBCR_422_APPLE", 0x85B9}, - {"GL_UNSIGNED_SHORT_8_8_APPLE", 0x85BA}, - {"GL_UNSIGNED_SHORT_8_8_MESA", 0x85BA}, - {"GL_UNSIGNED_SHORT_8_8_REV_APPLE", 0x85BB}, - {"GL_UNSIGNED_SHORT_8_8_REV_MESA", 0x85BB}, - {"GL_TEXTURE_STORAGE_HINT_APPLE", 0x85BC}, - {"GL_STORAGE_PRIVATE_APPLE", 0x85BD}, - {"GL_STORAGE_CACHED_APPLE", 0x85BE}, - {"GL_STORAGE_SHARED_APPLE", 0x85BF}, - {"GL_REPLACEMENT_CODE_ARRAY_SUN", 0x85C0}, - {"GL_REPLACEMENT_CODE_ARRAY_TYPE_SUN", 0x85C1}, - {"GL_REPLACEMENT_CODE_ARRAY_STRIDE_SUN", 0x85C2}, - {"GL_REPLACEMENT_CODE_ARRAY_POINTER_SUN", 0x85C3}, - {"GL_R1UI_V3F_SUN", 0x85C4}, - {"GL_R1UI_C4UB_V3F_SUN", 0x85C5}, - {"GL_R1UI_C3F_V3F_SUN", 0x85C6}, - {"GL_R1UI_N3F_V3F_SUN", 0x85C7}, - {"GL_R1UI_C4F_N3F_V3F_SUN", 0x85C8}, - {"GL_R1UI_T2F_V3F_SUN", 0x85C9}, - {"GL_R1UI_T2F_N3F_V3F_SUN", 0x85CA}, - {"GL_R1UI_T2F_C4F_N3F_V3F_SUN", 0x85CB}, - {"GL_SLICE_ACCUM_SUN", 0x85CC}, - {"GL_QUAD_MESH_SUN", 0x8614}, - {"GL_TRIANGLE_MESH_SUN", 0x8615}, - {"GL_VERTEX_PROGRAM_ARB", 0x8620}, - {"GL_VERTEX_PROGRAM_NV", 0x8620}, - {"GL_VERTEX_STATE_PROGRAM_NV", 0x8621}, - {"GL_VERTEX_ATTRIB_ARRAY_ENABLED", 0x8622}, - {"GL_VERTEX_ATTRIB_ARRAY_ENABLED_ARB", 0x8622}, - {"GL_ATTRIB_ARRAY_SIZE_NV", 0x8623}, - {"GL_VERTEX_ATTRIB_ARRAY_SIZE", 0x8623}, - {"GL_VERTEX_ATTRIB_ARRAY_SIZE_ARB", 0x8623}, - {"GL_ATTRIB_ARRAY_STRIDE_NV", 0x8624}, - {"GL_VERTEX_ATTRIB_ARRAY_STRIDE", 0x8624}, - {"GL_VERTEX_ATTRIB_ARRAY_STRIDE_ARB", 0x8624}, - {"GL_ATTRIB_ARRAY_TYPE_NV", 0x8625}, - {"GL_VERTEX_ATTRIB_ARRAY_TYPE", 0x8625}, - {"GL_VERTEX_ATTRIB_ARRAY_TYPE_ARB", 0x8625}, - {"GL_CURRENT_ATTRIB_NV", 0x8626}, - {"GL_CURRENT_VERTEX_ATTRIB", 0x8626}, - {"GL_CURRENT_VERTEX_ATTRIB_ARB", 0x8626}, - {"GL_PROGRAM_LENGTH_ARB", 0x8627}, - {"GL_PROGRAM_LENGTH_NV", 0x8627}, - {"GL_PROGRAM_STRING_ARB", 0x8628}, - {"GL_PROGRAM_STRING_NV", 0x8628}, - {"GL_MODELVIEW_PROJECTION_NV", 0x8629}, - {"GL_IDENTITY_NV", 0x862A}, - {"GL_INVERSE_NV", 0x862B}, - {"GL_TRANSPOSE_NV", 0x862C}, - {"GL_INVERSE_TRANSPOSE_NV", 0x862D}, - {"GL_MAX_PROGRAM_MATRIX_STACK_DEPTH_ARB", 0x862E}, - {"GL_MAX_TRACK_MATRIX_STACK_DEPTH_NV", 0x862E}, - {"GL_MAX_PROGRAM_MATRICES_ARB", 0x862F}, - {"GL_MAX_TRACK_MATRICES_NV", 0x862F}, - {"GL_MATRIX0_NV", 0x8630}, - {"GL_MATRIX1_NV", 0x8631}, - {"GL_MATRIX2_NV", 0x8632}, - {"GL_MATRIX3_NV", 0x8633}, - {"GL_MATRIX4_NV", 0x8634}, - {"GL_MATRIX5_NV", 0x8635}, - {"GL_MATRIX6_NV", 0x8636}, - {"GL_MATRIX7_NV", 0x8637}, - {"GL_CURRENT_MATRIX_STACK_DEPTH_ARB", 0x8640}, - {"GL_CURRENT_MATRIX_STACK_DEPTH_NV", 0x8640}, - {"GL_CURRENT_MATRIX_ARB", 0x8641}, - {"GL_CURRENT_MATRIX_NV", 0x8641}, - {"GL_VERTEX_PROGRAM_POINT_SIZE", 0x8642}, - {"GL_VERTEX_PROGRAM_POINT_SIZE_ARB", 0x8642}, - {"GL_VERTEX_PROGRAM_POINT_SIZE_NV", 0x8642}, - {"GL_PROGRAM_POINT_SIZE", 0x8642}, - {"GL_PROGRAM_POINT_SIZE_ARB", 0x8642}, - {"GL_PROGRAM_POINT_SIZE_EXT", 0x8642}, - {"GL_VERTEX_PROGRAM_TWO_SIDE", 0x8643}, - {"GL_VERTEX_PROGRAM_TWO_SIDE_ARB", 0x8643}, - {"GL_VERTEX_PROGRAM_TWO_SIDE_NV", 0x8643}, - {"GL_PROGRAM_PARAMETER_NV", 0x8644}, - {"GL_ATTRIB_ARRAY_POINTER_NV", 0x8645}, - {"GL_VERTEX_ATTRIB_ARRAY_POINTER", 0x8645}, - {"GL_VERTEX_ATTRIB_ARRAY_POINTER_ARB", 0x8645}, - {"GL_PROGRAM_TARGET_NV", 0x8646}, - {"GL_PROGRAM_RESIDENT_NV", 0x8647}, - {"GL_TRACK_MATRIX_NV", 0x8648}, - {"GL_TRACK_MATRIX_TRANSFORM_NV", 0x8649}, - {"GL_VERTEX_PROGRAM_BINDING_NV", 0x864A}, - {"GL_PROGRAM_ERROR_POSITION_ARB", 0x864B}, - {"GL_PROGRAM_ERROR_POSITION_NV", 0x864B}, - {"GL_OFFSET_TEXTURE_RECTANGLE_NV", 0x864C}, - {"GL_OFFSET_TEXTURE_RECTANGLE_SCALE_NV", 0x864D}, - {"GL_DOT_PRODUCT_TEXTURE_RECTANGLE_NV", 0x864E}, - {"GL_DEPTH_CLAMP", 0x864F}, - {"GL_DEPTH_CLAMP_NV", 0x864F}, - {"GL_VERTEX_ATTRIB_ARRAY0_NV", 0x8650}, - {"GL_VERTEX_ATTRIB_ARRAY1_NV", 0x8651}, - {"GL_VERTEX_ATTRIB_ARRAY2_NV", 0x8652}, - {"GL_VERTEX_ATTRIB_ARRAY3_NV", 0x8653}, - {"GL_VERTEX_ATTRIB_ARRAY4_NV", 0x8654}, - {"GL_VERTEX_ATTRIB_ARRAY5_NV", 0x8655}, - {"GL_VERTEX_ATTRIB_ARRAY6_NV", 0x8656}, - {"GL_VERTEX_ATTRIB_ARRAY7_NV", 0x8657}, - {"GL_VERTEX_ATTRIB_ARRAY8_NV", 0x8658}, - {"GL_VERTEX_ATTRIB_ARRAY9_NV", 0x8659}, - {"GL_VERTEX_ATTRIB_ARRAY10_NV", 0x865A}, - {"GL_VERTEX_ATTRIB_ARRAY11_NV", 0x865B}, - {"GL_VERTEX_ATTRIB_ARRAY12_NV", 0x865C}, - {"GL_VERTEX_ATTRIB_ARRAY13_NV", 0x865D}, - {"GL_VERTEX_ATTRIB_ARRAY14_NV", 0x865E}, - {"GL_VERTEX_ATTRIB_ARRAY15_NV", 0x865F}, - {"GL_MAP1_VERTEX_ATTRIB0_4_NV", 0x8660}, - {"GL_MAP1_VERTEX_ATTRIB1_4_NV", 0x8661}, - {"GL_MAP1_VERTEX_ATTRIB2_4_NV", 0x8662}, - {"GL_MAP1_VERTEX_ATTRIB3_4_NV", 0x8663}, - {"GL_MAP1_VERTEX_ATTRIB4_4_NV", 0x8664}, - {"GL_MAP1_VERTEX_ATTRIB5_4_NV", 0x8665}, - {"GL_MAP1_VERTEX_ATTRIB6_4_NV", 0x8666}, - {"GL_MAP1_VERTEX_ATTRIB7_4_NV", 0x8667}, - {"GL_MAP1_VERTEX_ATTRIB8_4_NV", 0x8668}, - {"GL_MAP1_VERTEX_ATTRIB9_4_NV", 0x8669}, - {"GL_MAP1_VERTEX_ATTRIB10_4_NV", 0x866A}, - {"GL_MAP1_VERTEX_ATTRIB11_4_NV", 0x866B}, - {"GL_MAP1_VERTEX_ATTRIB12_4_NV", 0x866C}, - {"GL_MAP1_VERTEX_ATTRIB13_4_NV", 0x866D}, - {"GL_MAP1_VERTEX_ATTRIB14_4_NV", 0x866E}, - {"GL_MAP1_VERTEX_ATTRIB15_4_NV", 0x866F}, - {"GL_MAP2_VERTEX_ATTRIB0_4_NV", 0x8670}, - {"GL_MAP2_VERTEX_ATTRIB1_4_NV", 0x8671}, - {"GL_MAP2_VERTEX_ATTRIB2_4_NV", 0x8672}, - {"GL_MAP2_VERTEX_ATTRIB3_4_NV", 0x8673}, - {"GL_MAP2_VERTEX_ATTRIB4_4_NV", 0x8674}, - {"GL_MAP2_VERTEX_ATTRIB5_4_NV", 0x8675}, - {"GL_MAP2_VERTEX_ATTRIB6_4_NV", 0x8676}, - {"GL_MAP2_VERTEX_ATTRIB7_4_NV", 0x8677}, - {"GL_PROGRAM_BINDING_ARB", 0x8677}, - {"GL_MAP2_VERTEX_ATTRIB8_4_NV", 0x8678}, - {"GL_MAP2_VERTEX_ATTRIB9_4_NV", 0x8679}, - {"GL_MAP2_VERTEX_ATTRIB10_4_NV", 0x867A}, - {"GL_MAP2_VERTEX_ATTRIB11_4_NV", 0x867B}, - {"GL_MAP2_VERTEX_ATTRIB12_4_NV", 0x867C}, - {"GL_MAP2_VERTEX_ATTRIB13_4_NV", 0x867D}, - {"GL_MAP2_VERTEX_ATTRIB14_4_NV", 0x867E}, - {"GL_MAP2_VERTEX_ATTRIB15_4_NV", 0x867F}, - {"GL_TEXTURE_COMPRESSED_IMAGE_SIZE", 0x86A0}, - {"GL_TEXTURE_COMPRESSED_IMAGE_SIZE_ARB", 0x86A0}, - {"GL_TEXTURE_COMPRESSED", 0x86A1}, - {"GL_TEXTURE_COMPRESSED_ARB", 0x86A1}, - {"GL_NUM_COMPRESSED_TEXTURE_FORMATS", 0x86A2}, - {"GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB", 0x86A2}, - {"GL_COMPRESSED_TEXTURE_FORMATS", 0x86A3}, - {"GL_COMPRESSED_TEXTURE_FORMATS_ARB", 0x86A3}, - {"GL_MAX_VERTEX_UNITS_ARB", 0x86A4}, - {"GL_MAX_VERTEX_UNITS_OES", 0x86A4}, - {"GL_ACTIVE_VERTEX_UNITS_ARB", 0x86A5}, - {"GL_WEIGHT_SUM_UNITY_ARB", 0x86A6}, - {"GL_VERTEX_BLEND_ARB", 0x86A7}, - {"GL_CURRENT_WEIGHT_ARB", 0x86A8}, - {"GL_WEIGHT_ARRAY_TYPE_ARB", 0x86A9}, - {"GL_WEIGHT_ARRAY_TYPE_OES", 0x86A9}, - {"GL_WEIGHT_ARRAY_STRIDE_ARB", 0x86AA}, - {"GL_WEIGHT_ARRAY_STRIDE_OES", 0x86AA}, - {"GL_WEIGHT_ARRAY_SIZE_ARB", 0x86AB}, - {"GL_WEIGHT_ARRAY_SIZE_OES", 0x86AB}, - {"GL_WEIGHT_ARRAY_POINTER_ARB", 0x86AC}, - {"GL_WEIGHT_ARRAY_POINTER_OES", 0x86AC}, - {"GL_WEIGHT_ARRAY_ARB", 0x86AD}, - {"GL_WEIGHT_ARRAY_OES", 0x86AD}, - {"GL_DOT3_RGB", 0x86AE}, - {"GL_DOT3_RGB_ARB", 0x86AE}, - {"GL_DOT3_RGBA", 0x86AF}, - {"GL_DOT3_RGBA_ARB", 0x86AF}, - {"GL_DOT3_RGBA_IMG", 0x86AF}, - {"GL_COMPRESSED_RGB_FXT1_3DFX", 0x86B0}, - {"GL_COMPRESSED_RGBA_FXT1_3DFX", 0x86B1}, - {"GL_MULTISAMPLE_3DFX", 0x86B2}, - {"GL_SAMPLE_BUFFERS_3DFX", 0x86B3}, - {"GL_SAMPLES_3DFX", 0x86B4}, - {"GL_EVAL_2D_NV", 0x86C0}, - {"GL_EVAL_TRIANGULAR_2D_NV", 0x86C1}, - {"GL_MAP_TESSELLATION_NV", 0x86C2}, - {"GL_MAP_ATTRIB_U_ORDER_NV", 0x86C3}, - {"GL_MAP_ATTRIB_V_ORDER_NV", 0x86C4}, - {"GL_EVAL_FRACTIONAL_TESSELLATION_NV", 0x86C5}, - {"GL_EVAL_VERTEX_ATTRIB0_NV", 0x86C6}, - {"GL_EVAL_VERTEX_ATTRIB1_NV", 0x86C7}, - {"GL_EVAL_VERTEX_ATTRIB2_NV", 0x86C8}, - {"GL_EVAL_VERTEX_ATTRIB3_NV", 0x86C9}, - {"GL_EVAL_VERTEX_ATTRIB4_NV", 0x86CA}, - {"GL_EVAL_VERTEX_ATTRIB5_NV", 0x86CB}, - {"GL_EVAL_VERTEX_ATTRIB6_NV", 0x86CC}, - {"GL_EVAL_VERTEX_ATTRIB7_NV", 0x86CD}, - {"GL_EVAL_VERTEX_ATTRIB8_NV", 0x86CE}, - {"GL_EVAL_VERTEX_ATTRIB9_NV", 0x86CF}, - {"GL_EVAL_VERTEX_ATTRIB10_NV", 0x86D0}, - {"GL_EVAL_VERTEX_ATTRIB11_NV", 0x86D1}, - {"GL_EVAL_VERTEX_ATTRIB12_NV", 0x86D2}, - {"GL_EVAL_VERTEX_ATTRIB13_NV", 0x86D3}, - {"GL_EVAL_VERTEX_ATTRIB14_NV", 0x86D4}, - {"GL_EVAL_VERTEX_ATTRIB15_NV", 0x86D5}, - {"GL_MAX_MAP_TESSELLATION_NV", 0x86D6}, - {"GL_MAX_RATIONAL_EVAL_ORDER_NV", 0x86D7}, - {"GL_MAX_PROGRAM_PATCH_ATTRIBS_NV", 0x86D8}, - {"GL_RGBA_UNSIGNED_DOT_PRODUCT_MAPPING_NV", 0x86D9}, - {"GL_UNSIGNED_INT_S8_S8_8_8_NV", 0x86DA}, - {"GL_UNSIGNED_INT_8_8_S8_S8_REV_NV", 0x86DB}, - {"GL_DSDT_MAG_INTENSITY_NV", 0x86DC}, - {"GL_SHADER_CONSISTENT_NV", 0x86DD}, - {"GL_TEXTURE_SHADER_NV", 0x86DE}, - {"GL_SHADER_OPERATION_NV", 0x86DF}, - {"GL_CULL_MODES_NV", 0x86E0}, - {"GL_OFFSET_TEXTURE_MATRIX_NV", 0x86E1}, - {"GL_OFFSET_TEXTURE_2D_MATRIX_NV", 0x86E1}, - {"GL_OFFSET_TEXTURE_SCALE_NV", 0x86E2}, - {"GL_OFFSET_TEXTURE_2D_SCALE_NV", 0x86E2}, - {"GL_OFFSET_TEXTURE_BIAS_NV", 0x86E3}, - {"GL_OFFSET_TEXTURE_2D_BIAS_NV", 0x86E3}, - {"GL_PREVIOUS_TEXTURE_INPUT_NV", 0x86E4}, - {"GL_CONST_EYE_NV", 0x86E5}, - {"GL_PASS_THROUGH_NV", 0x86E6}, - {"GL_CULL_FRAGMENT_NV", 0x86E7}, - {"GL_OFFSET_TEXTURE_2D_NV", 0x86E8}, - {"GL_DEPENDENT_AR_TEXTURE_2D_NV", 0x86E9}, - {"GL_DEPENDENT_GB_TEXTURE_2D_NV", 0x86EA}, - {"GL_SURFACE_STATE_NV", 0x86EB}, - {"GL_DOT_PRODUCT_NV", 0x86EC}, - {"GL_DOT_PRODUCT_DEPTH_REPLACE_NV", 0x86ED}, - {"GL_DOT_PRODUCT_TEXTURE_2D_NV", 0x86EE}, - {"GL_DOT_PRODUCT_TEXTURE_3D_NV", 0x86EF}, - {"GL_DOT_PRODUCT_TEXTURE_CUBE_MAP_NV", 0x86F0}, - {"GL_DOT_PRODUCT_DIFFUSE_CUBE_MAP_NV", 0x86F1}, - {"GL_DOT_PRODUCT_REFLECT_CUBE_MAP_NV", 0x86F2}, - {"GL_DOT_PRODUCT_CONST_EYE_REFLECT_CUBE_MAP_NV", 0x86F3}, - {"GL_HILO_NV", 0x86F4}, - {"GL_DSDT_NV", 0x86F5}, - {"GL_DSDT_MAG_NV", 0x86F6}, - {"GL_DSDT_MAG_VIB_NV", 0x86F7}, - {"GL_HILO16_NV", 0x86F8}, - {"GL_SIGNED_HILO_NV", 0x86F9}, - {"GL_SIGNED_HILO16_NV", 0x86FA}, - {"GL_SIGNED_RGBA_NV", 0x86FB}, - {"GL_SIGNED_RGBA8_NV", 0x86FC}, - {"GL_SURFACE_REGISTERED_NV", 0x86FD}, - {"GL_SIGNED_RGB_NV", 0x86FE}, - {"GL_SIGNED_RGB8_NV", 0x86FF}, - {"GL_SURFACE_MAPPED_NV", 0x8700}, - {"GL_SIGNED_LUMINANCE_NV", 0x8701}, - {"GL_SIGNED_LUMINANCE8_NV", 0x8702}, - {"GL_SIGNED_LUMINANCE_ALPHA_NV", 0x8703}, - {"GL_SIGNED_LUMINANCE8_ALPHA8_NV", 0x8704}, - {"GL_SIGNED_ALPHA_NV", 0x8705}, - {"GL_SIGNED_ALPHA8_NV", 0x8706}, - {"GL_SIGNED_INTENSITY_NV", 0x8707}, - {"GL_SIGNED_INTENSITY8_NV", 0x8708}, - {"GL_DSDT8_NV", 0x8709}, - {"GL_DSDT8_MAG8_NV", 0x870A}, - {"GL_DSDT8_MAG8_INTENSITY8_NV", 0x870B}, - {"GL_SIGNED_RGB_UNSIGNED_ALPHA_NV", 0x870C}, - {"GL_SIGNED_RGB8_UNSIGNED_ALPHA8_NV", 0x870D}, - {"GL_HI_SCALE_NV", 0x870E}, - {"GL_LO_SCALE_NV", 0x870F}, - {"GL_DS_SCALE_NV", 0x8710}, - {"GL_DT_SCALE_NV", 0x8711}, - {"GL_MAGNITUDE_SCALE_NV", 0x8712}, - {"GL_VIBRANCE_SCALE_NV", 0x8713}, - {"GL_HI_BIAS_NV", 0x8714}, - {"GL_LO_BIAS_NV", 0x8715}, - {"GL_DS_BIAS_NV", 0x8716}, - {"GL_DT_BIAS_NV", 0x8717}, - {"GL_MAGNITUDE_BIAS_NV", 0x8718}, - {"GL_VIBRANCE_BIAS_NV", 0x8719}, - {"GL_TEXTURE_BORDER_VALUES_NV", 0x871A}, - {"GL_TEXTURE_HI_SIZE_NV", 0x871B}, - {"GL_TEXTURE_LO_SIZE_NV", 0x871C}, - {"GL_TEXTURE_DS_SIZE_NV", 0x871D}, - {"GL_TEXTURE_DT_SIZE_NV", 0x871E}, - {"GL_TEXTURE_MAG_SIZE_NV", 0x871F}, - {"GL_MODELVIEW2_ARB", 0x8722}, - {"GL_MODELVIEW3_ARB", 0x8723}, - {"GL_MODELVIEW4_ARB", 0x8724}, - {"GL_MODELVIEW5_ARB", 0x8725}, - {"GL_MODELVIEW6_ARB", 0x8726}, - {"GL_MODELVIEW7_ARB", 0x8727}, - {"GL_MODELVIEW8_ARB", 0x8728}, - {"GL_MODELVIEW9_ARB", 0x8729}, - {"GL_MODELVIEW10_ARB", 0x872A}, - {"GL_MODELVIEW11_ARB", 0x872B}, - {"GL_MODELVIEW12_ARB", 0x872C}, - {"GL_MODELVIEW13_ARB", 0x872D}, - {"GL_MODELVIEW14_ARB", 0x872E}, - {"GL_MODELVIEW15_ARB", 0x872F}, - {"GL_MODELVIEW16_ARB", 0x8730}, - {"GL_MODELVIEW17_ARB", 0x8731}, - {"GL_MODELVIEW18_ARB", 0x8732}, - {"GL_MODELVIEW19_ARB", 0x8733}, - {"GL_MODELVIEW20_ARB", 0x8734}, - {"GL_MODELVIEW21_ARB", 0x8735}, - {"GL_MODELVIEW22_ARB", 0x8736}, - {"GL_MODELVIEW23_ARB", 0x8737}, - {"GL_MODELVIEW24_ARB", 0x8738}, - {"GL_MODELVIEW25_ARB", 0x8739}, - {"GL_MODELVIEW26_ARB", 0x873A}, - {"GL_MODELVIEW27_ARB", 0x873B}, - {"GL_MODELVIEW28_ARB", 0x873C}, - {"GL_MODELVIEW29_ARB", 0x873D}, - {"GL_MODELVIEW30_ARB", 0x873E}, - {"GL_MODELVIEW31_ARB", 0x873F}, - {"GL_DOT3_RGB_EXT", 0x8740}, - {"GL_Z400_BINARY_AMD", 0x8740}, - {"GL_DOT3_RGBA_EXT", 0x8741}, - {"GL_PROGRAM_BINARY_LENGTH_OES", 0x8741}, - {"GL_PROGRAM_BINARY_LENGTH", 0x8741}, - {"GL_MIRROR_CLAMP_ATI", 0x8742}, - {"GL_MIRROR_CLAMP_EXT", 0x8742}, - {"GL_MIRROR_CLAMP_TO_EDGE", 0x8743}, - {"GL_MIRROR_CLAMP_TO_EDGE_ATI", 0x8743}, - {"GL_MIRROR_CLAMP_TO_EDGE_EXT", 0x8743}, - {"GL_MODULATE_ADD_ATI", 0x8744}, - {"GL_MODULATE_SIGNED_ADD_ATI", 0x8745}, - {"GL_MODULATE_SUBTRACT_ATI", 0x8746}, - {"GL_SET_AMD", 0x874A}, - {"GL_REPLACE_VALUE_AMD", 0x874B}, - {"GL_STENCIL_OP_VALUE_AMD", 0x874C}, - {"GL_STENCIL_BACK_OP_VALUE_AMD", 0x874D}, - {"GL_VERTEX_ATTRIB_ARRAY_LONG", 0x874E}, - {"GL_DEPTH_STENCIL_MESA", 0x8750}, - {"GL_UNSIGNED_INT_24_8_MESA", 0x8751}, - {"GL_UNSIGNED_INT_8_24_REV_MESA", 0x8752}, - {"GL_UNSIGNED_SHORT_15_1_MESA", 0x8753}, - {"GL_UNSIGNED_SHORT_1_15_REV_MESA", 0x8754}, - {"GL_TRACE_MASK_MESA", 0x8755}, - {"GL_TRACE_NAME_MESA", 0x8756}, - {"GL_YCBCR_MESA", 0x8757}, - {"GL_PACK_INVERT_MESA", 0x8758}, - {"GL_DEBUG_OBJECT_MESA", 0x8759}, - {"GL_TEXTURE_1D_STACK_MESAX", 0x8759}, - {"GL_DEBUG_PRINT_MESA", 0x875A}, - {"GL_TEXTURE_2D_STACK_MESAX", 0x875A}, - {"GL_DEBUG_ASSERT_MESA", 0x875B}, - {"GL_PROXY_TEXTURE_1D_STACK_MESAX", 0x875B}, - {"GL_PROXY_TEXTURE_2D_STACK_MESAX", 0x875C}, - {"GL_TEXTURE_1D_STACK_BINDING_MESAX", 0x875D}, - {"GL_TEXTURE_2D_STACK_BINDING_MESAX", 0x875E}, - {"GL_STATIC_ATI", 0x8760}, - {"GL_DYNAMIC_ATI", 0x8761}, - {"GL_PRESERVE_ATI", 0x8762}, - {"GL_DISCARD_ATI", 0x8763}, - {"GL_BUFFER_SIZE", 0x8764}, - {"GL_BUFFER_SIZE_ARB", 0x8764}, - {"GL_OBJECT_BUFFER_SIZE_ATI", 0x8764}, - {"GL_BUFFER_USAGE", 0x8765}, - {"GL_BUFFER_USAGE_ARB", 0x8765}, - {"GL_OBJECT_BUFFER_USAGE_ATI", 0x8765}, - {"GL_ARRAY_OBJECT_BUFFER_ATI", 0x8766}, - {"GL_ARRAY_OBJECT_OFFSET_ATI", 0x8767}, - {"GL_ELEMENT_ARRAY_ATI", 0x8768}, - {"GL_ELEMENT_ARRAY_TYPE_ATI", 0x8769}, - {"GL_ELEMENT_ARRAY_POINTER_ATI", 0x876A}, - {"GL_MAX_VERTEX_STREAMS_ATI", 0x876B}, - {"GL_VERTEX_STREAM0_ATI", 0x876C}, - {"GL_VERTEX_STREAM1_ATI", 0x876D}, - {"GL_VERTEX_STREAM2_ATI", 0x876E}, - {"GL_VERTEX_STREAM3_ATI", 0x876F}, - {"GL_VERTEX_STREAM4_ATI", 0x8770}, - {"GL_VERTEX_STREAM5_ATI", 0x8771}, - {"GL_VERTEX_STREAM6_ATI", 0x8772}, - {"GL_VERTEX_STREAM7_ATI", 0x8773}, - {"GL_VERTEX_SOURCE_ATI", 0x8774}, - {"GL_BUMP_ROT_MATRIX_ATI", 0x8775}, - {"GL_BUMP_ROT_MATRIX_SIZE_ATI", 0x8776}, - {"GL_BUMP_NUM_TEX_UNITS_ATI", 0x8777}, - {"GL_BUMP_TEX_UNITS_ATI", 0x8778}, - {"GL_DUDV_ATI", 0x8779}, - {"GL_DU8DV8_ATI", 0x877A}, - {"GL_BUMP_ENVMAP_ATI", 0x877B}, - {"GL_BUMP_TARGET_ATI", 0x877C}, - {"GL_VERTEX_SHADER_EXT", 0x8780}, - {"GL_VERTEX_SHADER_BINDING_EXT", 0x8781}, - {"GL_OP_INDEX_EXT", 0x8782}, - {"GL_OP_NEGATE_EXT", 0x8783}, - {"GL_OP_DOT3_EXT", 0x8784}, - {"GL_OP_DOT4_EXT", 0x8785}, - {"GL_OP_MUL_EXT", 0x8786}, - {"GL_OP_ADD_EXT", 0x8787}, - {"GL_OP_MADD_EXT", 0x8788}, - {"GL_OP_FRAC_EXT", 0x8789}, - {"GL_OP_MAX_EXT", 0x878A}, - {"GL_OP_MIN_EXT", 0x878B}, - {"GL_OP_SET_GE_EXT", 0x878C}, - {"GL_OP_SET_LT_EXT", 0x878D}, - {"GL_OP_CLAMP_EXT", 0x878E}, - {"GL_OP_FLOOR_EXT", 0x878F}, - {"GL_OP_ROUND_EXT", 0x8790}, - {"GL_OP_EXP_BASE_2_EXT", 0x8791}, - {"GL_OP_LOG_BASE_2_EXT", 0x8792}, - {"GL_OP_POWER_EXT", 0x8793}, - {"GL_OP_RECIP_EXT", 0x8794}, - {"GL_OP_RECIP_SQRT_EXT", 0x8795}, - {"GL_OP_SUB_EXT", 0x8796}, - {"GL_OP_CROSS_PRODUCT_EXT", 0x8797}, - {"GL_OP_MULTIPLY_MATRIX_EXT", 0x8798}, - {"GL_OP_MOV_EXT", 0x8799}, - {"GL_OUTPUT_VERTEX_EXT", 0x879A}, - {"GL_OUTPUT_COLOR0_EXT", 0x879B}, - {"GL_OUTPUT_COLOR1_EXT", 0x879C}, - {"GL_OUTPUT_TEXTURE_COORD0_EXT", 0x879D}, - {"GL_OUTPUT_TEXTURE_COORD1_EXT", 0x879E}, - {"GL_OUTPUT_TEXTURE_COORD2_EXT", 0x879F}, - {"GL_OUTPUT_TEXTURE_COORD3_EXT", 0x87A0}, - {"GL_OUTPUT_TEXTURE_COORD4_EXT", 0x87A1}, - {"GL_OUTPUT_TEXTURE_COORD5_EXT", 0x87A2}, - {"GL_OUTPUT_TEXTURE_COORD6_EXT", 0x87A3}, - {"GL_OUTPUT_TEXTURE_COORD7_EXT", 0x87A4}, - {"GL_OUTPUT_TEXTURE_COORD8_EXT", 0x87A5}, - {"GL_OUTPUT_TEXTURE_COORD9_EXT", 0x87A6}, - {"GL_OUTPUT_TEXTURE_COORD10_EXT", 0x87A7}, - {"GL_OUTPUT_TEXTURE_COORD11_EXT", 0x87A8}, - {"GL_OUTPUT_TEXTURE_COORD12_EXT", 0x87A9}, - {"GL_OUTPUT_TEXTURE_COORD13_EXT", 0x87AA}, - {"GL_OUTPUT_TEXTURE_COORD14_EXT", 0x87AB}, - {"GL_OUTPUT_TEXTURE_COORD15_EXT", 0x87AC}, - {"GL_OUTPUT_TEXTURE_COORD16_EXT", 0x87AD}, - {"GL_OUTPUT_TEXTURE_COORD17_EXT", 0x87AE}, - {"GL_OUTPUT_TEXTURE_COORD18_EXT", 0x87AF}, - {"GL_OUTPUT_TEXTURE_COORD19_EXT", 0x87B0}, - {"GL_OUTPUT_TEXTURE_COORD20_EXT", 0x87B1}, - {"GL_OUTPUT_TEXTURE_COORD21_EXT", 0x87B2}, - {"GL_OUTPUT_TEXTURE_COORD22_EXT", 0x87B3}, - {"GL_OUTPUT_TEXTURE_COORD23_EXT", 0x87B4}, - {"GL_OUTPUT_TEXTURE_COORD24_EXT", 0x87B5}, - {"GL_OUTPUT_TEXTURE_COORD25_EXT", 0x87B6}, - {"GL_OUTPUT_TEXTURE_COORD26_EXT", 0x87B7}, - {"GL_OUTPUT_TEXTURE_COORD27_EXT", 0x87B8}, - {"GL_OUTPUT_TEXTURE_COORD28_EXT", 0x87B9}, - {"GL_OUTPUT_TEXTURE_COORD29_EXT", 0x87BA}, - {"GL_OUTPUT_TEXTURE_COORD30_EXT", 0x87BB}, - {"GL_OUTPUT_TEXTURE_COORD31_EXT", 0x87BC}, - {"GL_OUTPUT_FOG_EXT", 0x87BD}, - {"GL_SCALAR_EXT", 0x87BE}, - {"GL_VECTOR_EXT", 0x87BF}, - {"GL_MATRIX_EXT", 0x87C0}, - {"GL_VARIANT_EXT", 0x87C1}, - {"GL_INVARIANT_EXT", 0x87C2}, - {"GL_LOCAL_CONSTANT_EXT", 0x87C3}, - {"GL_LOCAL_EXT", 0x87C4}, - {"GL_MAX_VERTEX_SHADER_INSTRUCTIONS_EXT", 0x87C5}, - {"GL_MAX_VERTEX_SHADER_VARIANTS_EXT", 0x87C6}, - {"GL_MAX_VERTEX_SHADER_INVARIANTS_EXT", 0x87C7}, - {"GL_MAX_VERTEX_SHADER_LOCAL_CONSTANTS_EXT", 0x87C8}, - {"GL_MAX_VERTEX_SHADER_LOCALS_EXT", 0x87C9}, - {"GL_MAX_OPTIMIZED_VERTEX_SHADER_INSTRUCTIONS_EXT", 0x87CA}, - {"GL_MAX_OPTIMIZED_VERTEX_SHADER_VARIANTS_EXT", 0x87CB}, - {"GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCAL_CONSTANTS_EXT", 0x87CC}, - {"GL_MAX_OPTIMIZED_VERTEX_SHADER_INVARIANTS_EXT", 0x87CD}, - {"GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCALS_EXT", 0x87CE}, - {"GL_VERTEX_SHADER_INSTRUCTIONS_EXT", 0x87CF}, - {"GL_VERTEX_SHADER_VARIANTS_EXT", 0x87D0}, - {"GL_VERTEX_SHADER_INVARIANTS_EXT", 0x87D1}, - {"GL_VERTEX_SHADER_LOCAL_CONSTANTS_EXT", 0x87D2}, - {"GL_VERTEX_SHADER_LOCALS_EXT", 0x87D3}, - {"GL_VERTEX_SHADER_OPTIMIZED_EXT", 0x87D4}, - {"GL_X_EXT", 0x87D5}, - {"GL_Y_EXT", 0x87D6}, - {"GL_Z_EXT", 0x87D7}, - {"GL_W_EXT", 0x87D8}, - {"GL_NEGATIVE_X_EXT", 0x87D9}, - {"GL_NEGATIVE_Y_EXT", 0x87DA}, - {"GL_NEGATIVE_Z_EXT", 0x87DB}, - {"GL_NEGATIVE_W_EXT", 0x87DC}, - {"GL_ZERO_EXT", 0x87DD}, - {"GL_ONE_EXT", 0x87DE}, - {"GL_NEGATIVE_ONE_EXT", 0x87DF}, - {"GL_NORMALIZED_RANGE_EXT", 0x87E0}, - {"GL_FULL_RANGE_EXT", 0x87E1}, - {"GL_CURRENT_VERTEX_EXT", 0x87E2}, - {"GL_MVP_MATRIX_EXT", 0x87E3}, - {"GL_VARIANT_VALUE_EXT", 0x87E4}, - {"GL_VARIANT_DATATYPE_EXT", 0x87E5}, - {"GL_VARIANT_ARRAY_STRIDE_EXT", 0x87E6}, - {"GL_VARIANT_ARRAY_TYPE_EXT", 0x87E7}, - {"GL_VARIANT_ARRAY_EXT", 0x87E8}, - {"GL_VARIANT_ARRAY_POINTER_EXT", 0x87E9}, - {"GL_INVARIANT_VALUE_EXT", 0x87EA}, - {"GL_INVARIANT_DATATYPE_EXT", 0x87EB}, - {"GL_LOCAL_CONSTANT_VALUE_EXT", 0x87EC}, - {"GL_LOCAL_CONSTANT_DATATYPE_EXT", 0x87ED}, - {"GL_ATC_RGBA_INTERPOLATED_ALPHA_AMD", 0x87EE}, - {"GL_PN_TRIANGLES_ATI", 0x87F0}, - {"GL_MAX_PN_TRIANGLES_TESSELATION_LEVEL_ATI", 0x87F1}, - {"GL_PN_TRIANGLES_POINT_MODE_ATI", 0x87F2}, - {"GL_PN_TRIANGLES_NORMAL_MODE_ATI", 0x87F3}, - {"GL_PN_TRIANGLES_TESSELATION_LEVEL_ATI", 0x87F4}, - {"GL_PN_TRIANGLES_POINT_MODE_LINEAR_ATI", 0x87F5}, - {"GL_PN_TRIANGLES_POINT_MODE_CUBIC_ATI", 0x87F6}, - {"GL_PN_TRIANGLES_NORMAL_MODE_LINEAR_ATI", 0x87F7}, - {"GL_PN_TRIANGLES_NORMAL_MODE_QUADRATIC_ATI", 0x87F8}, - {"GL_3DC_X_AMD", 0x87F9}, - {"GL_3DC_XY_AMD", 0x87FA}, - {"GL_VBO_FREE_MEMORY_ATI", 0x87FB}, - {"GL_TEXTURE_FREE_MEMORY_ATI", 0x87FC}, - {"GL_RENDERBUFFER_FREE_MEMORY_ATI", 0x87FD}, - {"GL_NUM_PROGRAM_BINARY_FORMATS", 0x87FE}, - {"GL_NUM_PROGRAM_BINARY_FORMATS_OES", 0x87FE}, - {"GL_PROGRAM_BINARY_FORMATS", 0x87FF}, - {"GL_PROGRAM_BINARY_FORMATS_OES", 0x87FF}, - {"GL_STENCIL_BACK_FUNC", 0x8800}, - {"GL_STENCIL_BACK_FUNC_ATI", 0x8800}, - {"GL_STENCIL_BACK_FAIL", 0x8801}, - {"GL_STENCIL_BACK_FAIL_ATI", 0x8801}, - {"GL_STENCIL_BACK_PASS_DEPTH_FAIL", 0x8802}, - {"GL_STENCIL_BACK_PASS_DEPTH_FAIL_ATI", 0x8802}, - {"GL_STENCIL_BACK_PASS_DEPTH_PASS", 0x8803}, - {"GL_STENCIL_BACK_PASS_DEPTH_PASS_ATI", 0x8803}, - {"GL_FRAGMENT_PROGRAM_ARB", 0x8804}, - {"GL_PROGRAM_ALU_INSTRUCTIONS_ARB", 0x8805}, - {"GL_PROGRAM_TEX_INSTRUCTIONS_ARB", 0x8806}, - {"GL_PROGRAM_TEX_INDIRECTIONS_ARB", 0x8807}, - {"GL_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB", 0x8808}, - {"GL_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB", 0x8809}, - {"GL_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB", 0x880A}, - {"GL_MAX_PROGRAM_ALU_INSTRUCTIONS_ARB", 0x880B}, - {"GL_MAX_PROGRAM_TEX_INSTRUCTIONS_ARB", 0x880C}, - {"GL_MAX_PROGRAM_TEX_INDIRECTIONS_ARB", 0x880D}, - {"GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB", 0x880E}, - {"GL_MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB", 0x880F}, - {"GL_MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB", 0x8810}, - {"GL_RGBA32F", 0x8814}, - {"GL_RGBA32F_ARB", 0x8814}, - {"GL_RGBA_FLOAT32_APPLE", 0x8814}, - {"GL_RGBA_FLOAT32_ATI", 0x8814}, - {"GL_RGB32F", 0x8815}, - {"GL_RGB32F_ARB", 0x8815}, - {"GL_RGB_FLOAT32_APPLE", 0x8815}, - {"GL_RGB_FLOAT32_ATI", 0x8815}, - {"GL_ALPHA32F_ARB", 0x8816}, - {"GL_ALPHA_FLOAT32_APPLE", 0x8816}, - {"GL_ALPHA_FLOAT32_ATI", 0x8816}, - {"GL_INTENSITY32F_ARB", 0x8817}, - {"GL_INTENSITY_FLOAT32_APPLE", 0x8817}, - {"GL_INTENSITY_FLOAT32_ATI", 0x8817}, - {"GL_LUMINANCE32F_ARB", 0x8818}, - {"GL_LUMINANCE_FLOAT32_APPLE", 0x8818}, - {"GL_LUMINANCE_FLOAT32_ATI", 0x8818}, - {"GL_LUMINANCE_ALPHA32F_ARB", 0x8819}, - {"GL_LUMINANCE_ALPHA_FLOAT32_APPLE", 0x8819}, - {"GL_LUMINANCE_ALPHA_FLOAT32_ATI", 0x8819}, - {"GL_RGBA16F", 0x881A}, - {"GL_RGBA16F_ARB", 0x881A}, - {"GL_RGBA16F_EXT", 0x881A}, - {"GL_RGBA_FLOAT16_APPLE", 0x881A}, - {"GL_RGBA_FLOAT16_ATI", 0x881A}, - {"GL_RGB16F", 0x881B}, - {"GL_RGB16F_ARB", 0x881B}, - {"GL_RGB16F_EXT", 0x881B}, - {"GL_RGB_FLOAT16_APPLE", 0x881B}, - {"GL_RGB_FLOAT16_ATI", 0x881B}, - {"GL_ALPHA16F_ARB", 0x881C}, - {"GL_ALPHA_FLOAT16_APPLE", 0x881C}, - {"GL_ALPHA_FLOAT16_ATI", 0x881C}, - {"GL_INTENSITY16F_ARB", 0x881D}, - {"GL_INTENSITY_FLOAT16_APPLE", 0x881D}, - {"GL_INTENSITY_FLOAT16_ATI", 0x881D}, - {"GL_LUMINANCE16F_ARB", 0x881E}, - {"GL_LUMINANCE_FLOAT16_APPLE", 0x881E}, - {"GL_LUMINANCE_FLOAT16_ATI", 0x881E}, - {"GL_LUMINANCE_ALPHA16F_ARB", 0x881F}, - {"GL_LUMINANCE_ALPHA_FLOAT16_APPLE", 0x881F}, - {"GL_LUMINANCE_ALPHA_FLOAT16_ATI", 0x881F}, - {"GL_RGBA_FLOAT_MODE_ARB", 0x8820}, - {"GL_RGBA_FLOAT_MODE_ATI", 0x8820}, - {"GL_WRITEONLY_RENDERING_QCOM", 0x8823}, - {"GL_MAX_DRAW_BUFFERS", 0x8824}, - {"GL_MAX_DRAW_BUFFERS_ARB", 0x8824}, - {"GL_MAX_DRAW_BUFFERS_ATI", 0x8824}, - {"GL_MAX_DRAW_BUFFERS_EXT", 0x8824}, - {"GL_MAX_DRAW_BUFFERS_NV", 0x8824}, - {"GL_DRAW_BUFFER0", 0x8825}, - {"GL_DRAW_BUFFER0_ARB", 0x8825}, - {"GL_DRAW_BUFFER0_ATI", 0x8825}, - {"GL_DRAW_BUFFER0_EXT", 0x8825}, - {"GL_DRAW_BUFFER0_NV", 0x8825}, - {"GL_DRAW_BUFFER1", 0x8826}, - {"GL_DRAW_BUFFER1_ARB", 0x8826}, - {"GL_DRAW_BUFFER1_ATI", 0x8826}, - {"GL_DRAW_BUFFER1_EXT", 0x8826}, - {"GL_DRAW_BUFFER1_NV", 0x8826}, - {"GL_DRAW_BUFFER2", 0x8827}, - {"GL_DRAW_BUFFER2_ARB", 0x8827}, - {"GL_DRAW_BUFFER2_ATI", 0x8827}, - {"GL_DRAW_BUFFER2_EXT", 0x8827}, - {"GL_DRAW_BUFFER2_NV", 0x8827}, - {"GL_DRAW_BUFFER3", 0x8828}, - {"GL_DRAW_BUFFER3_ARB", 0x8828}, - {"GL_DRAW_BUFFER3_ATI", 0x8828}, - {"GL_DRAW_BUFFER3_EXT", 0x8828}, - {"GL_DRAW_BUFFER3_NV", 0x8828}, - {"GL_DRAW_BUFFER4", 0x8829}, - {"GL_DRAW_BUFFER4_ARB", 0x8829}, - {"GL_DRAW_BUFFER4_ATI", 0x8829}, - {"GL_DRAW_BUFFER4_EXT", 0x8829}, - {"GL_DRAW_BUFFER4_NV", 0x8829}, - {"GL_DRAW_BUFFER5", 0x882A}, - {"GL_DRAW_BUFFER5_ARB", 0x882A}, - {"GL_DRAW_BUFFER5_ATI", 0x882A}, - {"GL_DRAW_BUFFER5_EXT", 0x882A}, - {"GL_DRAW_BUFFER5_NV", 0x882A}, - {"GL_DRAW_BUFFER6", 0x882B}, - {"GL_DRAW_BUFFER6_ARB", 0x882B}, - {"GL_DRAW_BUFFER6_ATI", 0x882B}, - {"GL_DRAW_BUFFER6_EXT", 0x882B}, - {"GL_DRAW_BUFFER6_NV", 0x882B}, - {"GL_DRAW_BUFFER7", 0x882C}, - {"GL_DRAW_BUFFER7_ARB", 0x882C}, - {"GL_DRAW_BUFFER7_ATI", 0x882C}, - {"GL_DRAW_BUFFER7_EXT", 0x882C}, - {"GL_DRAW_BUFFER7_NV", 0x882C}, - {"GL_DRAW_BUFFER8", 0x882D}, - {"GL_DRAW_BUFFER8_ARB", 0x882D}, - {"GL_DRAW_BUFFER8_ATI", 0x882D}, - {"GL_DRAW_BUFFER8_EXT", 0x882D}, - {"GL_DRAW_BUFFER8_NV", 0x882D}, - {"GL_DRAW_BUFFER9", 0x882E}, - {"GL_DRAW_BUFFER9_ARB", 0x882E}, - {"GL_DRAW_BUFFER9_ATI", 0x882E}, - {"GL_DRAW_BUFFER9_EXT", 0x882E}, - {"GL_DRAW_BUFFER9_NV", 0x882E}, - {"GL_DRAW_BUFFER10", 0x882F}, - {"GL_DRAW_BUFFER10_ARB", 0x882F}, - {"GL_DRAW_BUFFER10_ATI", 0x882F}, - {"GL_DRAW_BUFFER10_EXT", 0x882F}, - {"GL_DRAW_BUFFER10_NV", 0x882F}, - {"GL_DRAW_BUFFER11", 0x8830}, - {"GL_DRAW_BUFFER11_ARB", 0x8830}, - {"GL_DRAW_BUFFER11_ATI", 0x8830}, - {"GL_DRAW_BUFFER11_EXT", 0x8830}, - {"GL_DRAW_BUFFER11_NV", 0x8830}, - {"GL_DRAW_BUFFER12", 0x8831}, - {"GL_DRAW_BUFFER12_ARB", 0x8831}, - {"GL_DRAW_BUFFER12_ATI", 0x8831}, - {"GL_DRAW_BUFFER12_EXT", 0x8831}, - {"GL_DRAW_BUFFER12_NV", 0x8831}, - {"GL_DRAW_BUFFER13", 0x8832}, - {"GL_DRAW_BUFFER13_ARB", 0x8832}, - {"GL_DRAW_BUFFER13_ATI", 0x8832}, - {"GL_DRAW_BUFFER13_EXT", 0x8832}, - {"GL_DRAW_BUFFER13_NV", 0x8832}, - {"GL_DRAW_BUFFER14", 0x8833}, - {"GL_DRAW_BUFFER14_ARB", 0x8833}, - {"GL_DRAW_BUFFER14_ATI", 0x8833}, - {"GL_DRAW_BUFFER14_EXT", 0x8833}, - {"GL_DRAW_BUFFER14_NV", 0x8833}, - {"GL_DRAW_BUFFER15", 0x8834}, - {"GL_DRAW_BUFFER15_ARB", 0x8834}, - {"GL_DRAW_BUFFER15_ATI", 0x8834}, - {"GL_DRAW_BUFFER15_EXT", 0x8834}, - {"GL_DRAW_BUFFER15_NV", 0x8834}, - {"GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI", 0x8835}, - {"GL_BLEND_EQUATION_ALPHA", 0x883D}, - {"GL_BLEND_EQUATION_ALPHA_EXT", 0x883D}, - {"GL_BLEND_EQUATION_ALPHA_OES", 0x883D}, - {"GL_SUBSAMPLE_DISTANCE_AMD", 0x883F}, - {"GL_MATRIX_PALETTE_ARB", 0x8840}, - {"GL_MATRIX_PALETTE_OES", 0x8840}, - {"GL_MAX_MATRIX_PALETTE_STACK_DEPTH_ARB", 0x8841}, - {"GL_MAX_PALETTE_MATRICES_ARB", 0x8842}, - {"GL_MAX_PALETTE_MATRICES_OES", 0x8842}, - {"GL_CURRENT_PALETTE_MATRIX_ARB", 0x8843}, - {"GL_CURRENT_PALETTE_MATRIX_OES", 0x8843}, - {"GL_MATRIX_INDEX_ARRAY_ARB", 0x8844}, - {"GL_MATRIX_INDEX_ARRAY_OES", 0x8844}, - {"GL_CURRENT_MATRIX_INDEX_ARB", 0x8845}, - {"GL_MATRIX_INDEX_ARRAY_SIZE_ARB", 0x8846}, - {"GL_MATRIX_INDEX_ARRAY_SIZE_OES", 0x8846}, - {"GL_MATRIX_INDEX_ARRAY_TYPE_ARB", 0x8847}, - {"GL_MATRIX_INDEX_ARRAY_TYPE_OES", 0x8847}, - {"GL_MATRIX_INDEX_ARRAY_STRIDE_ARB", 0x8848}, - {"GL_MATRIX_INDEX_ARRAY_STRIDE_OES", 0x8848}, - {"GL_MATRIX_INDEX_ARRAY_POINTER_ARB", 0x8849}, - {"GL_MATRIX_INDEX_ARRAY_POINTER_OES", 0x8849}, - {"GL_TEXTURE_DEPTH_SIZE", 0x884A}, - {"GL_TEXTURE_DEPTH_SIZE_ARB", 0x884A}, - {"GL_DEPTH_TEXTURE_MODE", 0x884B}, - {"GL_DEPTH_TEXTURE_MODE_ARB", 0x884B}, - {"GL_TEXTURE_COMPARE_MODE", 0x884C}, - {"GL_TEXTURE_COMPARE_MODE_ARB", 0x884C}, - {"GL_TEXTURE_COMPARE_MODE_EXT", 0x884C}, - {"GL_TEXTURE_COMPARE_FUNC", 0x884D}, - {"GL_TEXTURE_COMPARE_FUNC_ARB", 0x884D}, - {"GL_TEXTURE_COMPARE_FUNC_EXT", 0x884D}, - {"GL_COMPARE_R_TO_TEXTURE", 0x884E}, - {"GL_COMPARE_R_TO_TEXTURE_ARB", 0x884E}, - {"GL_COMPARE_REF_DEPTH_TO_TEXTURE_EXT", 0x884E}, - {"GL_COMPARE_REF_TO_TEXTURE", 0x884E}, - {"GL_COMPARE_REF_TO_TEXTURE_EXT", 0x884E}, - {"GL_TEXTURE_CUBE_MAP_SEAMLESS", 0x884F}, - {"GL_OFFSET_PROJECTIVE_TEXTURE_2D_NV", 0x8850}, - {"GL_OFFSET_PROJECTIVE_TEXTURE_2D_SCALE_NV", 0x8851}, - {"GL_OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_NV", 0x8852}, - {"GL_OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_SCALE_NV", 0x8853}, - {"GL_OFFSET_HILO_TEXTURE_2D_NV", 0x8854}, - {"GL_OFFSET_HILO_TEXTURE_RECTANGLE_NV", 0x8855}, - {"GL_OFFSET_HILO_PROJECTIVE_TEXTURE_2D_NV", 0x8856}, - {"GL_OFFSET_HILO_PROJECTIVE_TEXTURE_RECTANGLE_NV", 0x8857}, - {"GL_DEPENDENT_HILO_TEXTURE_2D_NV", 0x8858}, - {"GL_DEPENDENT_RGB_TEXTURE_3D_NV", 0x8859}, - {"GL_DEPENDENT_RGB_TEXTURE_CUBE_MAP_NV", 0x885A}, - {"GL_DOT_PRODUCT_PASS_THROUGH_NV", 0x885B}, - {"GL_DOT_PRODUCT_TEXTURE_1D_NV", 0x885C}, - {"GL_DOT_PRODUCT_AFFINE_DEPTH_REPLACE_NV", 0x885D}, - {"GL_HILO8_NV", 0x885E}, - {"GL_SIGNED_HILO8_NV", 0x885F}, - {"GL_FORCE_BLUE_TO_ONE_NV", 0x8860}, - {"GL_POINT_SPRITE", 0x8861}, - {"GL_POINT_SPRITE_ARB", 0x8861}, - {"GL_POINT_SPRITE_NV", 0x8861}, - {"GL_POINT_SPRITE_OES", 0x8861}, - {"GL_COORD_REPLACE", 0x8862}, - {"GL_COORD_REPLACE_ARB", 0x8862}, - {"GL_COORD_REPLACE_NV", 0x8862}, - {"GL_COORD_REPLACE_OES", 0x8862}, - {"GL_POINT_SPRITE_R_MODE_NV", 0x8863}, - {"GL_PIXEL_COUNTER_BITS_NV", 0x8864}, - {"GL_QUERY_COUNTER_BITS", 0x8864}, - {"GL_QUERY_COUNTER_BITS_ARB", 0x8864}, - {"GL_QUERY_COUNTER_BITS_EXT", 0x8864}, - {"GL_CURRENT_OCCLUSION_QUERY_ID_NV", 0x8865}, - {"GL_CURRENT_QUERY", 0x8865}, - {"GL_CURRENT_QUERY_ARB", 0x8865}, - {"GL_CURRENT_QUERY_EXT", 0x8865}, - {"GL_PIXEL_COUNT_NV", 0x8866}, - {"GL_QUERY_RESULT", 0x8866}, - {"GL_QUERY_RESULT_ARB", 0x8866}, - {"GL_QUERY_RESULT_EXT", 0x8866}, - {"GL_PIXEL_COUNT_AVAILABLE_NV", 0x8867}, - {"GL_QUERY_RESULT_AVAILABLE", 0x8867}, - {"GL_QUERY_RESULT_AVAILABLE_ARB", 0x8867}, - {"GL_QUERY_RESULT_AVAILABLE_EXT", 0x8867}, - {"GL_MAX_FRAGMENT_PROGRAM_LOCAL_PARAMETERS_NV", 0x8868}, - {"GL_MAX_VERTEX_ATTRIBS", 0x8869}, - {"GL_MAX_VERTEX_ATTRIBS_ARB", 0x8869}, - {"GL_VERTEX_ATTRIB_ARRAY_NORMALIZED", 0x886A}, - {"GL_VERTEX_ATTRIB_ARRAY_NORMALIZED_ARB", 0x886A}, - {"GL_MAX_TESS_CONTROL_INPUT_COMPONENTS", 0x886C}, - {"GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS", 0x886D}, - {"GL_DEPTH_STENCIL_TO_RGBA_NV", 0x886E}, - {"GL_DEPTH_STENCIL_TO_BGRA_NV", 0x886F}, - {"GL_FRAGMENT_PROGRAM_NV", 0x8870}, - {"GL_MAX_TEXTURE_COORDS", 0x8871}, - {"GL_MAX_TEXTURE_COORDS_ARB", 0x8871}, - {"GL_MAX_TEXTURE_COORDS_NV", 0x8871}, - {"GL_MAX_TEXTURE_IMAGE_UNITS", 0x8872}, - {"GL_MAX_TEXTURE_IMAGE_UNITS_ARB", 0x8872}, - {"GL_MAX_TEXTURE_IMAGE_UNITS_NV", 0x8872}, - {"GL_FRAGMENT_PROGRAM_BINDING_NV", 0x8873}, - {"GL_PROGRAM_ERROR_STRING_ARB", 0x8874}, - {"GL_PROGRAM_ERROR_STRING_NV", 0x8874}, - {"GL_PROGRAM_FORMAT_ASCII_ARB", 0x8875}, - {"GL_PROGRAM_FORMAT_ARB", 0x8876}, - {"GL_WRITE_PIXEL_DATA_RANGE_NV", 0x8878}, - {"GL_READ_PIXEL_DATA_RANGE_NV", 0x8879}, - {"GL_WRITE_PIXEL_DATA_RANGE_LENGTH_NV", 0x887A}, - {"GL_READ_PIXEL_DATA_RANGE_LENGTH_NV", 0x887B}, - {"GL_WRITE_PIXEL_DATA_RANGE_POINTER_NV", 0x887C}, - {"GL_READ_PIXEL_DATA_RANGE_POINTER_NV", 0x887D}, - {"GL_GEOMETRY_SHADER_INVOCATIONS", 0x887F}, - {"GL_FLOAT_R_NV", 0x8880}, - {"GL_FLOAT_RG_NV", 0x8881}, - {"GL_FLOAT_RGB_NV", 0x8882}, - {"GL_FLOAT_RGBA_NV", 0x8883}, - {"GL_FLOAT_R16_NV", 0x8884}, - {"GL_FLOAT_R32_NV", 0x8885}, - {"GL_FLOAT_RG16_NV", 0x8886}, - {"GL_FLOAT_RG32_NV", 0x8887}, - {"GL_FLOAT_RGB16_NV", 0x8888}, - {"GL_FLOAT_RGB32_NV", 0x8889}, - {"GL_FLOAT_RGBA16_NV", 0x888A}, - {"GL_FLOAT_RGBA32_NV", 0x888B}, - {"GL_TEXTURE_FLOAT_COMPONENTS_NV", 0x888C}, - {"GL_FLOAT_CLEAR_COLOR_VALUE_NV", 0x888D}, - {"GL_FLOAT_RGBA_MODE_NV", 0x888E}, - {"GL_TEXTURE_UNSIGNED_REMAP_MODE_NV", 0x888F}, - {"GL_DEPTH_BOUNDS_TEST_EXT", 0x8890}, - {"GL_DEPTH_BOUNDS_EXT", 0x8891}, - {"GL_ARRAY_BUFFER", 0x8892}, - {"GL_ARRAY_BUFFER_ARB", 0x8892}, - {"GL_ELEMENT_ARRAY_BUFFER", 0x8893}, - {"GL_ELEMENT_ARRAY_BUFFER_ARB", 0x8893}, - {"GL_ARRAY_BUFFER_BINDING", 0x8894}, - {"GL_ARRAY_BUFFER_BINDING_ARB", 0x8894}, - {"GL_ELEMENT_ARRAY_BUFFER_BINDING", 0x8895}, - {"GL_ELEMENT_ARRAY_BUFFER_BINDING_ARB", 0x8895}, - {"GL_VERTEX_ARRAY_BUFFER_BINDING", 0x8896}, - {"GL_VERTEX_ARRAY_BUFFER_BINDING_ARB", 0x8896}, - {"GL_NORMAL_ARRAY_BUFFER_BINDING", 0x8897}, - {"GL_NORMAL_ARRAY_BUFFER_BINDING_ARB", 0x8897}, - {"GL_COLOR_ARRAY_BUFFER_BINDING", 0x8898}, - {"GL_COLOR_ARRAY_BUFFER_BINDING_ARB", 0x8898}, - {"GL_INDEX_ARRAY_BUFFER_BINDING", 0x8899}, - {"GL_INDEX_ARRAY_BUFFER_BINDING_ARB", 0x8899}, - {"GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING", 0x889A}, - {"GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING_ARB", 0x889A}, - {"GL_EDGE_FLAG_ARRAY_BUFFER_BINDING", 0x889B}, - {"GL_EDGE_FLAG_ARRAY_BUFFER_BINDING_ARB", 0x889B}, - {"GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING", 0x889C}, - {"GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING_ARB", 0x889C}, - {"GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING_ARB", 0x889D}, - {"GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING", 0x889D}, - {"GL_FOG_COORD_ARRAY_BUFFER_BINDING", 0x889D}, - {"GL_WEIGHT_ARRAY_BUFFER_BINDING", 0x889E}, - {"GL_WEIGHT_ARRAY_BUFFER_BINDING_ARB", 0x889E}, - {"GL_WEIGHT_ARRAY_BUFFER_BINDING_OES", 0x889E}, - {"GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING", 0x889F}, - {"GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING_ARB", 0x889F}, - {"GL_PROGRAM_INSTRUCTIONS_ARB", 0x88A0}, - {"GL_MAX_PROGRAM_INSTRUCTIONS_ARB", 0x88A1}, - {"GL_PROGRAM_NATIVE_INSTRUCTIONS_ARB", 0x88A2}, - {"GL_MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB", 0x88A3}, - {"GL_PROGRAM_TEMPORARIES_ARB", 0x88A4}, - {"GL_MAX_PROGRAM_TEMPORARIES_ARB", 0x88A5}, - {"GL_PROGRAM_NATIVE_TEMPORARIES_ARB", 0x88A6}, - {"GL_MAX_PROGRAM_NATIVE_TEMPORARIES_ARB", 0x88A7}, - {"GL_PROGRAM_PARAMETERS_ARB", 0x88A8}, - {"GL_MAX_PROGRAM_PARAMETERS_ARB", 0x88A9}, - {"GL_PROGRAM_NATIVE_PARAMETERS_ARB", 0x88AA}, - {"GL_MAX_PROGRAM_NATIVE_PARAMETERS_ARB", 0x88AB}, - {"GL_PROGRAM_ATTRIBS_ARB", 0x88AC}, - {"GL_MAX_PROGRAM_ATTRIBS_ARB", 0x88AD}, - {"GL_PROGRAM_NATIVE_ATTRIBS_ARB", 0x88AE}, - {"GL_MAX_PROGRAM_NATIVE_ATTRIBS_ARB", 0x88AF}, - {"GL_PROGRAM_ADDRESS_REGISTERS_ARB", 0x88B0}, - {"GL_MAX_PROGRAM_ADDRESS_REGISTERS_ARB", 0x88B1}, - {"GL_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB", 0x88B2}, - {"GL_MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB", 0x88B3}, - {"GL_MAX_PROGRAM_LOCAL_PARAMETERS_ARB", 0x88B4}, - {"GL_MAX_PROGRAM_ENV_PARAMETERS_ARB", 0x88B5}, - {"GL_PROGRAM_UNDER_NATIVE_LIMITS_ARB", 0x88B6}, - {"GL_TRANSPOSE_CURRENT_MATRIX_ARB", 0x88B7}, - {"GL_READ_ONLY", 0x88B8}, - {"GL_READ_ONLY_ARB", 0x88B8}, - {"GL_WRITE_ONLY", 0x88B9}, - {"GL_WRITE_ONLY_ARB", 0x88B9}, - {"GL_WRITE_ONLY_OES", 0x88B9}, - {"GL_READ_WRITE", 0x88BA}, - {"GL_READ_WRITE_ARB", 0x88BA}, - {"GL_BUFFER_ACCESS", 0x88BB}, - {"GL_BUFFER_ACCESS_ARB", 0x88BB}, - {"GL_BUFFER_ACCESS_OES", 0x88BB}, - {"GL_BUFFER_MAPPED", 0x88BC}, - {"GL_BUFFER_MAPPED_ARB", 0x88BC}, - {"GL_BUFFER_MAPPED_OES", 0x88BC}, - {"GL_BUFFER_MAP_POINTER", 0x88BD}, - {"GL_BUFFER_MAP_POINTER_ARB", 0x88BD}, - {"GL_BUFFER_MAP_POINTER_OES", 0x88BD}, - {"GL_WRITE_DISCARD_NV", 0x88BE}, - {"GL_TIME_ELAPSED", 0x88BF}, - {"GL_TIME_ELAPSED_EXT", 0x88BF}, - {"GL_MATRIX0_ARB", 0x88C0}, - {"GL_MATRIX1_ARB", 0x88C1}, - {"GL_MATRIX2_ARB", 0x88C2}, - {"GL_MATRIX3_ARB", 0x88C3}, - {"GL_MATRIX4_ARB", 0x88C4}, - {"GL_MATRIX5_ARB", 0x88C5}, - {"GL_MATRIX6_ARB", 0x88C6}, - {"GL_MATRIX7_ARB", 0x88C7}, - {"GL_MATRIX8_ARB", 0x88C8}, - {"GL_MATRIX9_ARB", 0x88C9}, - {"GL_MATRIX10_ARB", 0x88CA}, - {"GL_MATRIX11_ARB", 0x88CB}, - {"GL_MATRIX12_ARB", 0x88CC}, - {"GL_MATRIX13_ARB", 0x88CD}, - {"GL_MATRIX14_ARB", 0x88CE}, - {"GL_MATRIX15_ARB", 0x88CF}, - {"GL_MATRIX16_ARB", 0x88D0}, - {"GL_MATRIX17_ARB", 0x88D1}, - {"GL_MATRIX18_ARB", 0x88D2}, - {"GL_MATRIX19_ARB", 0x88D3}, - {"GL_MATRIX20_ARB", 0x88D4}, - {"GL_MATRIX21_ARB", 0x88D5}, - {"GL_MATRIX22_ARB", 0x88D6}, - {"GL_MATRIX23_ARB", 0x88D7}, - {"GL_MATRIX24_ARB", 0x88D8}, - {"GL_MATRIX25_ARB", 0x88D9}, - {"GL_MATRIX26_ARB", 0x88DA}, - {"GL_MATRIX27_ARB", 0x88DB}, - {"GL_MATRIX28_ARB", 0x88DC}, - {"GL_MATRIX29_ARB", 0x88DD}, - {"GL_MATRIX30_ARB", 0x88DE}, - {"GL_MATRIX31_ARB", 0x88DF}, - {"GL_STREAM_DRAW", 0x88E0}, - {"GL_STREAM_DRAW_ARB", 0x88E0}, - {"GL_STREAM_READ", 0x88E1}, - {"GL_STREAM_READ_ARB", 0x88E1}, - {"GL_STREAM_COPY", 0x88E2}, - {"GL_STREAM_COPY_ARB", 0x88E2}, - {"GL_STATIC_DRAW", 0x88E4}, - {"GL_STATIC_DRAW_ARB", 0x88E4}, - {"GL_STATIC_READ", 0x88E5}, - {"GL_STATIC_READ_ARB", 0x88E5}, - {"GL_STATIC_COPY", 0x88E6}, - {"GL_STATIC_COPY_ARB", 0x88E6}, - {"GL_DYNAMIC_DRAW", 0x88E8}, - {"GL_DYNAMIC_DRAW_ARB", 0x88E8}, - {"GL_DYNAMIC_READ", 0x88E9}, - {"GL_DYNAMIC_READ_ARB", 0x88E9}, - {"GL_DYNAMIC_COPY", 0x88EA}, - {"GL_DYNAMIC_COPY_ARB", 0x88EA}, - {"GL_PIXEL_PACK_BUFFER", 0x88EB}, - {"GL_PIXEL_PACK_BUFFER_ARB", 0x88EB}, - {"GL_PIXEL_PACK_BUFFER_EXT", 0x88EB}, - {"GL_PIXEL_UNPACK_BUFFER", 0x88EC}, - {"GL_PIXEL_UNPACK_BUFFER_ARB", 0x88EC}, - {"GL_PIXEL_UNPACK_BUFFER_EXT", 0x88EC}, - {"GL_PIXEL_PACK_BUFFER_BINDING", 0x88ED}, - {"GL_PIXEL_PACK_BUFFER_BINDING_ARB", 0x88ED}, - {"GL_PIXEL_PACK_BUFFER_BINDING_EXT", 0x88ED}, - {"GL_ETC1_SRGB8_NV", 0x88EE}, - {"GL_PIXEL_UNPACK_BUFFER_BINDING", 0x88EF}, - {"GL_PIXEL_UNPACK_BUFFER_BINDING_ARB", 0x88EF}, - {"GL_PIXEL_UNPACK_BUFFER_BINDING_EXT", 0x88EF}, - {"GL_DEPTH24_STENCIL8", 0x88F0}, - {"GL_DEPTH24_STENCIL8_EXT", 0x88F0}, - {"GL_DEPTH24_STENCIL8_OES", 0x88F0}, - {"GL_TEXTURE_STENCIL_SIZE", 0x88F1}, - {"GL_TEXTURE_STENCIL_SIZE_EXT", 0x88F1}, - {"GL_STENCIL_TAG_BITS_EXT", 0x88F2}, - {"GL_STENCIL_CLEAR_TAG_VALUE_EXT", 0x88F3}, - {"GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV", 0x88F4}, - {"GL_MAX_PROGRAM_CALL_DEPTH_NV", 0x88F5}, - {"GL_MAX_PROGRAM_IF_DEPTH_NV", 0x88F6}, - {"GL_MAX_PROGRAM_LOOP_DEPTH_NV", 0x88F7}, - {"GL_MAX_PROGRAM_LOOP_COUNT_NV", 0x88F8}, - {"GL_SRC1_COLOR", 0x88F9}, - {"GL_ONE_MINUS_SRC1_COLOR", 0x88FA}, - {"GL_ONE_MINUS_SRC1_ALPHA", 0x88FB}, - {"GL_MAX_DUAL_SOURCE_DRAW_BUFFERS", 0x88FC}, - {"GL_VERTEX_ATTRIB_ARRAY_INTEGER", 0x88FD}, - {"GL_VERTEX_ATTRIB_ARRAY_INTEGER_EXT", 0x88FD}, - {"GL_VERTEX_ATTRIB_ARRAY_INTEGER_NV", 0x88FD}, - {"GL_VERTEX_ATTRIB_ARRAY_DIVISOR", 0x88FE}, - {"GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE", 0x88FE}, - {"GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ARB", 0x88FE}, - {"GL_VERTEX_ATTRIB_ARRAY_DIVISOR_NV", 0x88FE}, - {"GL_MAX_ARRAY_TEXTURE_LAYERS", 0x88FF}, - {"GL_MAX_ARRAY_TEXTURE_LAYERS_EXT", 0x88FF}, - {"GL_MIN_PROGRAM_TEXEL_OFFSET", 0x8904}, - {"GL_MIN_PROGRAM_TEXEL_OFFSET_EXT", 0x8904}, - {"GL_MIN_PROGRAM_TEXEL_OFFSET_NV", 0x8904}, - {"GL_MAX_PROGRAM_TEXEL_OFFSET", 0x8905}, - {"GL_MAX_PROGRAM_TEXEL_OFFSET_EXT", 0x8905}, - {"GL_MAX_PROGRAM_TEXEL_OFFSET_NV", 0x8905}, - {"GL_PROGRAM_ATTRIB_COMPONENTS_NV", 0x8906}, - {"GL_PROGRAM_RESULT_COMPONENTS_NV", 0x8907}, - {"GL_MAX_PROGRAM_ATTRIB_COMPONENTS_NV", 0x8908}, - {"GL_MAX_PROGRAM_RESULT_COMPONENTS_NV", 0x8909}, - {"GL_STENCIL_TEST_TWO_SIDE_EXT", 0x8910}, - {"GL_ACTIVE_STENCIL_FACE_EXT", 0x8911}, - {"GL_MIRROR_CLAMP_TO_BORDER_EXT", 0x8912}, - {"GL_SAMPLES_PASSED", 0x8914}, - {"GL_SAMPLES_PASSED_ARB", 0x8914}, - {"GL_GEOMETRY_VERTICES_OUT", 0x8916}, - {"GL_GEOMETRY_INPUT_TYPE", 0x8917}, - {"GL_GEOMETRY_OUTPUT_TYPE", 0x8918}, - {"GL_SAMPLER_BINDING", 0x8919}, - {"GL_CLAMP_VERTEX_COLOR", 0x891A}, - {"GL_CLAMP_VERTEX_COLOR_ARB", 0x891A}, - {"GL_CLAMP_FRAGMENT_COLOR", 0x891B}, - {"GL_CLAMP_FRAGMENT_COLOR_ARB", 0x891B}, - {"GL_CLAMP_READ_COLOR", 0x891C}, - {"GL_CLAMP_READ_COLOR_ARB", 0x891C}, - {"GL_FIXED_ONLY", 0x891D}, - {"GL_FIXED_ONLY_ARB", 0x891D}, - {"GL_TESS_CONTROL_PROGRAM_NV", 0x891E}, - {"GL_TESS_EVALUATION_PROGRAM_NV", 0x891F}, - {"GL_FRAGMENT_SHADER_ATI", 0x8920}, - {"GL_REG_0_ATI", 0x8921}, - {"GL_REG_1_ATI", 0x8922}, - {"GL_REG_2_ATI", 0x8923}, - {"GL_REG_3_ATI", 0x8924}, - {"GL_REG_4_ATI", 0x8925}, - {"GL_REG_5_ATI", 0x8926}, - {"GL_REG_6_ATI", 0x8927}, - {"GL_REG_7_ATI", 0x8928}, - {"GL_REG_8_ATI", 0x8929}, - {"GL_REG_9_ATI", 0x892A}, - {"GL_REG_10_ATI", 0x892B}, - {"GL_REG_11_ATI", 0x892C}, - {"GL_REG_12_ATI", 0x892D}, - {"GL_REG_13_ATI", 0x892E}, - {"GL_REG_14_ATI", 0x892F}, - {"GL_REG_15_ATI", 0x8930}, - {"GL_REG_16_ATI", 0x8931}, - {"GL_REG_17_ATI", 0x8932}, - {"GL_REG_18_ATI", 0x8933}, - {"GL_REG_19_ATI", 0x8934}, - {"GL_REG_20_ATI", 0x8935}, - {"GL_REG_21_ATI", 0x8936}, - {"GL_REG_22_ATI", 0x8937}, - {"GL_REG_23_ATI", 0x8938}, - {"GL_REG_24_ATI", 0x8939}, - {"GL_REG_25_ATI", 0x893A}, - {"GL_REG_26_ATI", 0x893B}, - {"GL_REG_27_ATI", 0x893C}, - {"GL_REG_28_ATI", 0x893D}, - {"GL_REG_29_ATI", 0x893E}, - {"GL_REG_30_ATI", 0x893F}, - {"GL_REG_31_ATI", 0x8940}, - {"GL_CON_0_ATI", 0x8941}, - {"GL_CON_1_ATI", 0x8942}, - {"GL_CON_2_ATI", 0x8943}, - {"GL_CON_3_ATI", 0x8944}, - {"GL_CON_4_ATI", 0x8945}, - {"GL_CON_5_ATI", 0x8946}, - {"GL_CON_6_ATI", 0x8947}, - {"GL_CON_7_ATI", 0x8948}, - {"GL_CON_8_ATI", 0x8949}, - {"GL_CON_9_ATI", 0x894A}, - {"GL_CON_10_ATI", 0x894B}, - {"GL_CON_11_ATI", 0x894C}, - {"GL_CON_12_ATI", 0x894D}, - {"GL_CON_13_ATI", 0x894E}, - {"GL_CON_14_ATI", 0x894F}, - {"GL_CON_15_ATI", 0x8950}, - {"GL_CON_16_ATI", 0x8951}, - {"GL_CON_17_ATI", 0x8952}, - {"GL_CON_18_ATI", 0x8953}, - {"GL_CON_19_ATI", 0x8954}, - {"GL_CON_20_ATI", 0x8955}, - {"GL_CON_21_ATI", 0x8956}, - {"GL_CON_22_ATI", 0x8957}, - {"GL_CON_23_ATI", 0x8958}, - {"GL_CON_24_ATI", 0x8959}, - {"GL_CON_25_ATI", 0x895A}, - {"GL_CON_26_ATI", 0x895B}, - {"GL_CON_27_ATI", 0x895C}, - {"GL_CON_28_ATI", 0x895D}, - {"GL_CON_29_ATI", 0x895E}, - {"GL_CON_30_ATI", 0x895F}, - {"GL_CON_31_ATI", 0x8960}, - {"GL_MOV_ATI", 0x8961}, - {"GL_ADD_ATI", 0x8963}, - {"GL_MUL_ATI", 0x8964}, - {"GL_SUB_ATI", 0x8965}, - {"GL_DOT3_ATI", 0x8966}, - {"GL_DOT4_ATI", 0x8967}, - {"GL_MAD_ATI", 0x8968}, - {"GL_LERP_ATI", 0x8969}, - {"GL_CND_ATI", 0x896A}, - {"GL_CND0_ATI", 0x896B}, - {"GL_DOT2_ADD_ATI", 0x896C}, - {"GL_SECONDARY_INTERPOLATOR_ATI", 0x896D}, - {"GL_NUM_FRAGMENT_REGISTERS_ATI", 0x896E}, - {"GL_NUM_FRAGMENT_CONSTANTS_ATI", 0x896F}, - {"GL_NUM_PASSES_ATI", 0x8970}, - {"GL_NUM_INSTRUCTIONS_PER_PASS_ATI", 0x8971}, - {"GL_NUM_INSTRUCTIONS_TOTAL_ATI", 0x8972}, - {"GL_NUM_INPUT_INTERPOLATOR_COMPONENTS_ATI", 0x8973}, - {"GL_NUM_LOOPBACK_COMPONENTS_ATI", 0x8974}, - {"GL_COLOR_ALPHA_PAIRING_ATI", 0x8975}, - {"GL_SWIZZLE_STR_ATI", 0x8976}, - {"GL_SWIZZLE_STQ_ATI", 0x8977}, - {"GL_SWIZZLE_STR_DR_ATI", 0x8978}, - {"GL_SWIZZLE_STQ_DQ_ATI", 0x8979}, - {"GL_SWIZZLE_STRQ_ATI", 0x897A}, - {"GL_SWIZZLE_STRQ_DQ_ATI", 0x897B}, - {"GL_INTERLACE_OML", 0x8980}, - {"GL_INTERLACE_READ_OML", 0x8981}, - {"GL_FORMAT_SUBSAMPLE_24_24_OML", 0x8982}, - {"GL_FORMAT_SUBSAMPLE_244_244_OML", 0x8983}, - {"GL_PACK_RESAMPLE_OML", 0x8984}, - {"GL_UNPACK_RESAMPLE_OML", 0x8985}, - {"GL_RESAMPLE_REPLICATE_OML", 0x8986}, - {"GL_RESAMPLE_ZERO_FILL_OML", 0x8987}, - {"GL_RESAMPLE_AVERAGE_OML", 0x8988}, - {"GL_RESAMPLE_DECIMATE_OML", 0x8989}, - {"GL_POINT_SIZE_ARRAY_TYPE_OES", 0x898A}, - {"GL_POINT_SIZE_ARRAY_STRIDE_OES", 0x898B}, - {"GL_POINT_SIZE_ARRAY_POINTER_OES", 0x898C}, - {"GL_MODELVIEW_MATRIX_FLOAT_AS_INT_BITS_OES", 0x898D}, - {"GL_PROJECTION_MATRIX_FLOAT_AS_INT_BITS_OES", 0x898E}, - {"GL_TEXTURE_MATRIX_FLOAT_AS_INT_BITS_OES", 0x898F}, - {"GL_VERTEX_ATTRIB_MAP1_APPLE", 0x8A00}, - {"GL_VERTEX_ATTRIB_MAP2_APPLE", 0x8A01}, - {"GL_VERTEX_ATTRIB_MAP1_SIZE_APPLE", 0x8A02}, - {"GL_VERTEX_ATTRIB_MAP1_COEFF_APPLE", 0x8A03}, - {"GL_VERTEX_ATTRIB_MAP1_ORDER_APPLE", 0x8A04}, - {"GL_VERTEX_ATTRIB_MAP1_DOMAIN_APPLE", 0x8A05}, - {"GL_VERTEX_ATTRIB_MAP2_SIZE_APPLE", 0x8A06}, - {"GL_VERTEX_ATTRIB_MAP2_COEFF_APPLE", 0x8A07}, - {"GL_VERTEX_ATTRIB_MAP2_ORDER_APPLE", 0x8A08}, - {"GL_VERTEX_ATTRIB_MAP2_DOMAIN_APPLE", 0x8A09}, - {"GL_DRAW_PIXELS_APPLE", 0x8A0A}, - {"GL_FENCE_APPLE", 0x8A0B}, - {"GL_ELEMENT_ARRAY_APPLE", 0x8A0C}, - {"GL_ELEMENT_ARRAY_TYPE_APPLE", 0x8A0D}, - {"GL_ELEMENT_ARRAY_POINTER_APPLE", 0x8A0E}, - {"GL_COLOR_FLOAT_APPLE", 0x8A0F}, - {"GL_UNIFORM_BUFFER", 0x8A11}, - {"GL_BUFFER_SERIALIZED_MODIFY_APPLE", 0x8A12}, - {"GL_BUFFER_FLUSHING_UNMAP_APPLE", 0x8A13}, - {"GL_AUX_DEPTH_STENCIL_APPLE", 0x8A14}, - {"GL_PACK_ROW_BYTES_APPLE", 0x8A15}, - {"GL_UNPACK_ROW_BYTES_APPLE", 0x8A16}, - {"GL_RELEASED_APPLE", 0x8A19}, - {"GL_VOLATILE_APPLE", 0x8A1A}, - {"GL_RETAINED_APPLE", 0x8A1B}, - {"GL_UNDEFINED_APPLE", 0x8A1C}, - {"GL_PURGEABLE_APPLE", 0x8A1D}, - {"GL_RGB_422_APPLE", 0x8A1F}, - {"GL_UNIFORM_BUFFER_BINDING", 0x8A28}, - {"GL_UNIFORM_BUFFER_START", 0x8A29}, - {"GL_UNIFORM_BUFFER_SIZE", 0x8A2A}, - {"GL_MAX_VERTEX_UNIFORM_BLOCKS", 0x8A2B}, - {"GL_MAX_GEOMETRY_UNIFORM_BLOCKS", 0x8A2C}, - {"GL_MAX_FRAGMENT_UNIFORM_BLOCKS", 0x8A2D}, - {"GL_MAX_COMBINED_UNIFORM_BLOCKS", 0x8A2E}, - {"GL_MAX_UNIFORM_BUFFER_BINDINGS", 0x8A2F}, - {"GL_MAX_UNIFORM_BLOCK_SIZE", 0x8A30}, - {"GL_MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS", 0x8A31}, - {"GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS", 0x8A32}, - {"GL_MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS", 0x8A33}, - {"GL_UNIFORM_BUFFER_OFFSET_ALIGNMENT", 0x8A34}, - {"GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH", 0x8A35}, - {"GL_ACTIVE_UNIFORM_BLOCKS", 0x8A36}, - {"GL_UNIFORM_TYPE", 0x8A37}, - {"GL_UNIFORM_SIZE", 0x8A38}, - {"GL_UNIFORM_NAME_LENGTH", 0x8A39}, - {"GL_UNIFORM_BLOCK_INDEX", 0x8A3A}, - {"GL_UNIFORM_OFFSET", 0x8A3B}, - {"GL_UNIFORM_ARRAY_STRIDE", 0x8A3C}, - {"GL_UNIFORM_MATRIX_STRIDE", 0x8A3D}, - {"GL_UNIFORM_IS_ROW_MAJOR", 0x8A3E}, - {"GL_UNIFORM_BLOCK_BINDING", 0x8A3F}, - {"GL_UNIFORM_BLOCK_DATA_SIZE", 0x8A40}, - {"GL_UNIFORM_BLOCK_NAME_LENGTH", 0x8A41}, - {"GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS", 0x8A42}, - {"GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES", 0x8A43}, - {"GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER", 0x8A44}, - {"GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER", 0x8A45}, - {"GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER", 0x8A46}, - {"GL_TEXTURE_SRGB_DECODE_EXT", 0x8A48}, - {"GL_DECODE_EXT", 0x8A49}, - {"GL_SKIP_DECODE_EXT", 0x8A4A}, - {"GL_PROGRAM_PIPELINE_OBJECT_EXT", 0x8A4F}, - {"GL_FRAGMENT_SHADER_DISCARDS_SAMPLES_EXT", 0x8A52}, - {"GL_SYNC_OBJECT_APPLE", 0x8A53}, - {"GL_FRAGMENT_SHADER", 0x8B30}, - {"GL_FRAGMENT_SHADER_ARB", 0x8B30}, - {"GL_VERTEX_SHADER", 0x8B31}, - {"GL_VERTEX_SHADER_ARB", 0x8B31}, - {"GL_PROGRAM_OBJECT_ARB", 0x8B40}, - {"GL_PROGRAM_OBJECT_EXT", 0x8B40}, - {"GL_SHADER_OBJECT_ARB", 0x8B48}, - {"GL_SHADER_OBJECT_EXT", 0x8B48}, - {"GL_MAX_FRAGMENT_UNIFORM_COMPONENTS", 0x8B49}, - {"GL_MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB", 0x8B49}, - {"GL_MAX_VERTEX_UNIFORM_COMPONENTS", 0x8B4A}, - {"GL_MAX_VERTEX_UNIFORM_COMPONENTS_ARB", 0x8B4A}, - {"GL_MAX_VARYING_FLOATS", 0x8B4B}, - {"GL_MAX_VARYING_COMPONENTS", 0x8B4B}, - {"GL_MAX_VARYING_COMPONENTS_EXT", 0x8B4B}, - {"GL_MAX_VARYING_FLOATS_ARB", 0x8B4B}, - {"GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS", 0x8B4C}, - {"GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB", 0x8B4C}, - {"GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS", 0x8B4D}, - {"GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS_ARB", 0x8B4D}, - {"GL_OBJECT_TYPE_ARB", 0x8B4E}, - {"GL_SHADER_TYPE", 0x8B4F}, - {"GL_OBJECT_SUBTYPE_ARB", 0x8B4F}, - {"GL_FLOAT_VEC2", 0x8B50}, - {"GL_FLOAT_VEC2_ARB", 0x8B50}, - {"GL_FLOAT_VEC3", 0x8B51}, - {"GL_FLOAT_VEC3_ARB", 0x8B51}, - {"GL_FLOAT_VEC4", 0x8B52}, - {"GL_FLOAT_VEC4_ARB", 0x8B52}, - {"GL_INT_VEC2", 0x8B53}, - {"GL_INT_VEC2_ARB", 0x8B53}, - {"GL_INT_VEC3", 0x8B54}, - {"GL_INT_VEC3_ARB", 0x8B54}, - {"GL_INT_VEC4", 0x8B55}, - {"GL_INT_VEC4_ARB", 0x8B55}, - {"GL_BOOL", 0x8B56}, - {"GL_BOOL_ARB", 0x8B56}, - {"GL_BOOL_VEC2", 0x8B57}, - {"GL_BOOL_VEC2_ARB", 0x8B57}, - {"GL_BOOL_VEC3", 0x8B58}, - {"GL_BOOL_VEC3_ARB", 0x8B58}, - {"GL_BOOL_VEC4", 0x8B59}, - {"GL_BOOL_VEC4_ARB", 0x8B59}, - {"GL_FLOAT_MAT2", 0x8B5A}, - {"GL_FLOAT_MAT2_ARB", 0x8B5A}, - {"GL_FLOAT_MAT3", 0x8B5B}, - {"GL_FLOAT_MAT3_ARB", 0x8B5B}, - {"GL_FLOAT_MAT4", 0x8B5C}, - {"GL_FLOAT_MAT4_ARB", 0x8B5C}, - {"GL_SAMPLER_1D", 0x8B5D}, - {"GL_SAMPLER_1D_ARB", 0x8B5D}, - {"GL_SAMPLER_2D", 0x8B5E}, - {"GL_SAMPLER_2D_ARB", 0x8B5E}, - {"GL_SAMPLER_3D", 0x8B5F}, - {"GL_SAMPLER_3D_ARB", 0x8B5F}, - {"GL_SAMPLER_3D_OES", 0x8B5F}, - {"GL_SAMPLER_CUBE", 0x8B60}, - {"GL_SAMPLER_CUBE_ARB", 0x8B60}, - {"GL_SAMPLER_1D_SHADOW", 0x8B61}, - {"GL_SAMPLER_1D_SHADOW_ARB", 0x8B61}, - {"GL_SAMPLER_2D_SHADOW", 0x8B62}, - {"GL_SAMPLER_2D_SHADOW_ARB", 0x8B62}, - {"GL_SAMPLER_2D_SHADOW_EXT", 0x8B62}, - {"GL_SAMPLER_2D_RECT", 0x8B63}, - {"GL_SAMPLER_2D_RECT_ARB", 0x8B63}, - {"GL_SAMPLER_2D_RECT_SHADOW", 0x8B64}, - {"GL_SAMPLER_2D_RECT_SHADOW_ARB", 0x8B64}, - {"GL_FLOAT_MAT2x3", 0x8B65}, - {"GL_FLOAT_MAT2x4", 0x8B66}, - {"GL_FLOAT_MAT3x2", 0x8B67}, - {"GL_FLOAT_MAT3x4", 0x8B68}, - {"GL_FLOAT_MAT4x2", 0x8B69}, - {"GL_FLOAT_MAT4x3", 0x8B6A}, - {"GL_DELETE_STATUS", 0x8B80}, - {"GL_OBJECT_DELETE_STATUS_ARB", 0x8B80}, - {"GL_COMPILE_STATUS", 0x8B81}, - {"GL_OBJECT_COMPILE_STATUS_ARB", 0x8B81}, - {"GL_LINK_STATUS", 0x8B82}, - {"GL_OBJECT_LINK_STATUS_ARB", 0x8B82}, - {"GL_VALIDATE_STATUS", 0x8B83}, - {"GL_OBJECT_VALIDATE_STATUS_ARB", 0x8B83}, - {"GL_INFO_LOG_LENGTH", 0x8B84}, - {"GL_OBJECT_INFO_LOG_LENGTH_ARB", 0x8B84}, - {"GL_ATTACHED_SHADERS", 0x8B85}, - {"GL_OBJECT_ATTACHED_OBJECTS_ARB", 0x8B85}, - {"GL_ACTIVE_UNIFORMS", 0x8B86}, - {"GL_OBJECT_ACTIVE_UNIFORMS_ARB", 0x8B86}, - {"GL_ACTIVE_UNIFORM_MAX_LENGTH", 0x8B87}, - {"GL_OBJECT_ACTIVE_UNIFORM_MAX_LENGTH_ARB", 0x8B87}, - {"GL_SHADER_SOURCE_LENGTH", 0x8B88}, - {"GL_OBJECT_SHADER_SOURCE_LENGTH_ARB", 0x8B88}, - {"GL_ACTIVE_ATTRIBUTES", 0x8B89}, - {"GL_OBJECT_ACTIVE_ATTRIBUTES_ARB", 0x8B89}, - {"GL_ACTIVE_ATTRIBUTE_MAX_LENGTH", 0x8B8A}, - {"GL_OBJECT_ACTIVE_ATTRIBUTE_MAX_LENGTH_ARB", 0x8B8A}, - {"GL_FRAGMENT_SHADER_DERIVATIVE_HINT", 0x8B8B}, - {"GL_FRAGMENT_SHADER_DERIVATIVE_HINT_ARB", 0x8B8B}, - {"GL_FRAGMENT_SHADER_DERIVATIVE_HINT_OES", 0x8B8B}, - {"GL_SHADING_LANGUAGE_VERSION", 0x8B8C}, - {"GL_SHADING_LANGUAGE_VERSION_ARB", 0x8B8C}, - {"GL_CURRENT_PROGRAM", 0x8B8D}, - {"GL_ACTIVE_PROGRAM_EXT", 0x8B8D}, - {"GL_PALETTE4_RGB8_OES", 0x8B90}, - {"GL_PALETTE4_RGBA8_OES", 0x8B91}, - {"GL_PALETTE4_R5_G6_B5_OES", 0x8B92}, - {"GL_PALETTE4_RGBA4_OES", 0x8B93}, - {"GL_PALETTE4_RGB5_A1_OES", 0x8B94}, - {"GL_PALETTE8_RGB8_OES", 0x8B95}, - {"GL_PALETTE8_RGBA8_OES", 0x8B96}, - {"GL_PALETTE8_R5_G6_B5_OES", 0x8B97}, - {"GL_PALETTE8_RGBA4_OES", 0x8B98}, - {"GL_PALETTE8_RGB5_A1_OES", 0x8B99}, - {"GL_IMPLEMENTATION_COLOR_READ_TYPE", 0x8B9A}, - {"GL_IMPLEMENTATION_COLOR_READ_TYPE_OES", 0x8B9A}, - {"GL_IMPLEMENTATION_COLOR_READ_FORMAT", 0x8B9B}, - {"GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES", 0x8B9B}, - {"GL_POINT_SIZE_ARRAY_OES", 0x8B9C}, - {"GL_TEXTURE_CROP_RECT_OES", 0x8B9D}, - {"GL_MATRIX_INDEX_ARRAY_BUFFER_BINDING_OES", 0x8B9E}, - {"GL_POINT_SIZE_ARRAY_BUFFER_BINDING_OES", 0x8B9F}, - {"GL_FRAGMENT_PROGRAM_POSITION_MESA", 0x8BB0}, - {"GL_FRAGMENT_PROGRAM_CALLBACK_MESA", 0x8BB1}, - {"GL_FRAGMENT_PROGRAM_CALLBACK_FUNC_MESA", 0x8BB2}, - {"GL_FRAGMENT_PROGRAM_CALLBACK_DATA_MESA", 0x8BB3}, - {"GL_VERTEX_PROGRAM_CALLBACK_MESA", 0x8BB4}, - {"GL_VERTEX_PROGRAM_POSITION_MESA", 0x8BB4}, - {"GL_VERTEX_PROGRAM_CALLBACK_FUNC_MESA", 0x8BB6}, - {"GL_VERTEX_PROGRAM_CALLBACK_DATA_MESA", 0x8BB7}, - {"GL_COUNTER_TYPE_AMD", 0x8BC0}, - {"GL_COUNTER_RANGE_AMD", 0x8BC1}, - {"GL_UNSIGNED_INT64_AMD", 0x8BC2}, - {"GL_PERCENTAGE_AMD", 0x8BC3}, - {"GL_PERFMON_RESULT_AVAILABLE_AMD", 0x8BC4}, - {"GL_PERFMON_RESULT_SIZE_AMD", 0x8BC5}, - {"GL_PERFMON_RESULT_AMD", 0x8BC6}, - {"GL_TEXTURE_WIDTH_QCOM", 0x8BD2}, - {"GL_TEXTURE_HEIGHT_QCOM", 0x8BD3}, - {"GL_TEXTURE_DEPTH_QCOM", 0x8BD4}, - {"GL_TEXTURE_INTERNAL_FORMAT_QCOM", 0x8BD5}, - {"GL_TEXTURE_FORMAT_QCOM", 0x8BD6}, - {"GL_TEXTURE_TYPE_QCOM", 0x8BD7}, - {"GL_TEXTURE_IMAGE_VALID_QCOM", 0x8BD8}, - {"GL_TEXTURE_NUM_LEVELS_QCOM", 0x8BD9}, - {"GL_TEXTURE_TARGET_QCOM", 0x8BDA}, - {"GL_TEXTURE_OBJECT_VALID_QCOM", 0x8BDB}, - {"GL_STATE_RESTORE", 0x8BDC}, - {"GL_COMPRESSED_RGB_PVRTC_4BPPV1_IMG", 0x8C00}, - {"GL_COMPRESSED_RGB_PVRTC_2BPPV1_IMG", 0x8C01}, - {"GL_COMPRESSED_RGBA_PVRTC_4BPPV1_IMG", 0x8C02}, - {"GL_COMPRESSED_RGBA_PVRTC_2BPPV1_IMG", 0x8C03}, - {"GL_MODULATE_COLOR_IMG", 0x8C04}, - {"GL_RECIP_ADD_SIGNED_ALPHA_IMG", 0x8C05}, - {"GL_TEXTURE_ALPHA_MODULATE_IMG", 0x8C06}, - {"GL_FACTOR_ALPHA_MODULATE_IMG", 0x8C07}, - {"GL_FRAGMENT_ALPHA_MODULATE_IMG", 0x8C08}, - {"GL_ADD_BLEND_IMG", 0x8C09}, - {"GL_SGX_BINARY_IMG", 0x8C0A}, - {"GL_TEXTURE_RED_TYPE", 0x8C10}, - {"GL_TEXTURE_RED_TYPE_ARB", 0x8C10}, - {"GL_TEXTURE_GREEN_TYPE", 0x8C11}, - {"GL_TEXTURE_GREEN_TYPE_ARB", 0x8C11}, - {"GL_TEXTURE_BLUE_TYPE", 0x8C12}, - {"GL_TEXTURE_BLUE_TYPE_ARB", 0x8C12}, - {"GL_TEXTURE_ALPHA_TYPE", 0x8C13}, - {"GL_TEXTURE_ALPHA_TYPE_ARB", 0x8C13}, - {"GL_TEXTURE_LUMINANCE_TYPE", 0x8C14}, - {"GL_TEXTURE_LUMINANCE_TYPE_ARB", 0x8C14}, - {"GL_TEXTURE_INTENSITY_TYPE", 0x8C15}, - {"GL_TEXTURE_INTENSITY_TYPE_ARB", 0x8C15}, - {"GL_TEXTURE_DEPTH_TYPE", 0x8C16}, - {"GL_TEXTURE_DEPTH_TYPE_ARB", 0x8C16}, - {"GL_UNSIGNED_NORMALIZED", 0x8C17}, - {"GL_UNSIGNED_NORMALIZED_ARB", 0x8C17}, - {"GL_UNSIGNED_NORMALIZED_EXT", 0x8C17}, - {"GL_TEXTURE_1D_ARRAY", 0x8C18}, - {"GL_TEXTURE_1D_ARRAY_EXT", 0x8C18}, - {"GL_PROXY_TEXTURE_1D_ARRAY", 0x8C19}, - {"GL_PROXY_TEXTURE_1D_ARRAY_EXT", 0x8C19}, - {"GL_TEXTURE_2D_ARRAY", 0x8C1A}, - {"GL_TEXTURE_2D_ARRAY_EXT", 0x8C1A}, - {"GL_PROXY_TEXTURE_2D_ARRAY", 0x8C1B}, - {"GL_PROXY_TEXTURE_2D_ARRAY_EXT", 0x8C1B}, - {"GL_TEXTURE_BINDING_1D_ARRAY", 0x8C1C}, - {"GL_TEXTURE_BINDING_1D_ARRAY_EXT", 0x8C1C}, - {"GL_TEXTURE_BINDING_2D_ARRAY", 0x8C1D}, - {"GL_TEXTURE_BINDING_2D_ARRAY_EXT", 0x8C1D}, - {"GL_GEOMETRY_PROGRAM_NV", 0x8C26}, - {"GL_MAX_PROGRAM_OUTPUT_VERTICES_NV", 0x8C27}, - {"GL_MAX_PROGRAM_TOTAL_OUTPUT_COMPONENTS_NV", 0x8C28}, - {"GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS", 0x8C29}, - {"GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_ARB", 0x8C29}, - {"GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT", 0x8C29}, - {"GL_TEXTURE_BUFFER", 0x8C2A}, - {"GL_TEXTURE_BUFFER_ARB", 0x8C2A}, - {"GL_TEXTURE_BUFFER_EXT", 0x8C2A}, - {"GL_MAX_TEXTURE_BUFFER_SIZE", 0x8C2B}, - {"GL_MAX_TEXTURE_BUFFER_SIZE_ARB", 0x8C2B}, - {"GL_MAX_TEXTURE_BUFFER_SIZE_EXT", 0x8C2B}, - {"GL_TEXTURE_BINDING_BUFFER", 0x8C2C}, - {"GL_TEXTURE_BINDING_BUFFER_ARB", 0x8C2C}, - {"GL_TEXTURE_BINDING_BUFFER_EXT", 0x8C2C}, - {"GL_TEXTURE_BUFFER_DATA_STORE_BINDING", 0x8C2D}, - {"GL_TEXTURE_BUFFER_DATA_STORE_BINDING_ARB", 0x8C2D}, - {"GL_TEXTURE_BUFFER_DATA_STORE_BINDING_EXT", 0x8C2D}, - {"GL_TEXTURE_BUFFER_FORMAT_ARB", 0x8C2E}, - {"GL_TEXTURE_BUFFER_FORMAT_EXT", 0x8C2E}, - {"GL_ANY_SAMPLES_PASSED", 0x8C2F}, - {"GL_ANY_SAMPLES_PASSED_EXT", 0x8C2F}, - {"GL_SAMPLE_SHADING", 0x8C36}, - {"GL_SAMPLE_SHADING_ARB", 0x8C36}, - {"GL_MIN_SAMPLE_SHADING_VALUE", 0x8C37}, - {"GL_MIN_SAMPLE_SHADING_VALUE_ARB", 0x8C37}, - {"GL_R11F_G11F_B10F", 0x8C3A}, - {"GL_R11F_G11F_B10F_EXT", 0x8C3A}, - {"GL_UNSIGNED_INT_10F_11F_11F_REV", 0x8C3B}, - {"GL_UNSIGNED_INT_10F_11F_11F_REV_EXT", 0x8C3B}, - {"GL_RGBA_SIGNED_COMPONENTS_EXT", 0x8C3C}, - {"GL_RGB9_E5", 0x8C3D}, - {"GL_RGB9_E5_EXT", 0x8C3D}, - {"GL_UNSIGNED_INT_5_9_9_9_REV", 0x8C3E}, - {"GL_UNSIGNED_INT_5_9_9_9_REV_EXT", 0x8C3E}, - {"GL_TEXTURE_SHARED_SIZE", 0x8C3F}, - {"GL_TEXTURE_SHARED_SIZE_EXT", 0x8C3F}, - {"GL_SRGB", 0x8C40}, - {"GL_SRGB_EXT", 0x8C40}, - {"GL_SRGB8", 0x8C41}, - {"GL_SRGB8_EXT", 0x8C41}, - {"GL_SRGB8_NV", 0x8C41}, - {"GL_SRGB_ALPHA", 0x8C42}, - {"GL_SRGB_ALPHA_EXT", 0x8C42}, - {"GL_SRGB8_ALPHA8", 0x8C43}, - {"GL_SRGB8_ALPHA8_EXT", 0x8C43}, - {"GL_SLUMINANCE_ALPHA", 0x8C44}, - {"GL_SLUMINANCE_ALPHA_EXT", 0x8C44}, - {"GL_SLUMINANCE_ALPHA_NV", 0x8C44}, - {"GL_SLUMINANCE8_ALPHA8", 0x8C45}, - {"GL_SLUMINANCE8_ALPHA8_EXT", 0x8C45}, - {"GL_SLUMINANCE8_ALPHA8_NV", 0x8C45}, - {"GL_SLUMINANCE", 0x8C46}, - {"GL_SLUMINANCE_EXT", 0x8C46}, - {"GL_SLUMINANCE_NV", 0x8C46}, - {"GL_SLUMINANCE8", 0x8C47}, - {"GL_SLUMINANCE8_EXT", 0x8C47}, - {"GL_SLUMINANCE8_NV", 0x8C47}, - {"GL_COMPRESSED_SRGB", 0x8C48}, - {"GL_COMPRESSED_SRGB_EXT", 0x8C48}, - {"GL_COMPRESSED_SRGB_ALPHA", 0x8C49}, - {"GL_COMPRESSED_SRGB_ALPHA_EXT", 0x8C49}, - {"GL_COMPRESSED_SLUMINANCE", 0x8C4A}, - {"GL_COMPRESSED_SLUMINANCE_EXT", 0x8C4A}, - {"GL_COMPRESSED_SLUMINANCE_ALPHA", 0x8C4B}, - {"GL_COMPRESSED_SLUMINANCE_ALPHA_EXT", 0x8C4B}, - {"GL_COMPRESSED_SRGB_S3TC_DXT1_EXT", 0x8C4C}, - {"GL_COMPRESSED_SRGB_S3TC_DXT1_NV", 0x8C4C}, - {"GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT", 0x8C4D}, - {"GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_NV", 0x8C4D}, - {"GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT", 0x8C4E}, - {"GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_NV", 0x8C4E}, - {"GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT", 0x8C4F}, - {"GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_NV", 0x8C4F}, - {"GL_COMPRESSED_LUMINANCE_LATC1_EXT", 0x8C70}, - {"GL_COMPRESSED_SIGNED_LUMINANCE_LATC1_EXT", 0x8C71}, - {"GL_COMPRESSED_LUMINANCE_ALPHA_LATC2_EXT", 0x8C72}, - {"GL_COMPRESSED_SIGNED_LUMINANCE_ALPHA_LATC2_EXT", 0x8C73}, - {"GL_TESS_CONTROL_PROGRAM_PARAMETER_BUFFER_NV", 0x8C74}, - {"GL_TESS_EVALUATION_PROGRAM_PARAMETER_BUFFER_NV", 0x8C75}, - {"GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH", 0x8C76}, - {"GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH_EXT", 0x8C76}, - {"GL_BACK_PRIMARY_COLOR_NV", 0x8C77}, - {"GL_BACK_SECONDARY_COLOR_NV", 0x8C78}, - {"GL_TEXTURE_COORD_NV", 0x8C79}, - {"GL_CLIP_DISTANCE_NV", 0x8C7A}, - {"GL_VERTEX_ID_NV", 0x8C7B}, - {"GL_PRIMITIVE_ID_NV", 0x8C7C}, - {"GL_GENERIC_ATTRIB_NV", 0x8C7D}, - {"GL_TRANSFORM_FEEDBACK_ATTRIBS_NV", 0x8C7E}, - {"GL_TRANSFORM_FEEDBACK_BUFFER_MODE", 0x8C7F}, - {"GL_TRANSFORM_FEEDBACK_BUFFER_MODE_EXT", 0x8C7F}, - {"GL_TRANSFORM_FEEDBACK_BUFFER_MODE_NV", 0x8C7F}, - {"GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS", 0x8C80}, - {"GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_EXT", 0x8C80}, - {"GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_NV", 0x8C80}, - {"GL_ACTIVE_VARYINGS_NV", 0x8C81}, - {"GL_ACTIVE_VARYING_MAX_LENGTH_NV", 0x8C82}, - {"GL_TRANSFORM_FEEDBACK_VARYINGS", 0x8C83}, - {"GL_TRANSFORM_FEEDBACK_VARYINGS_EXT", 0x8C83}, - {"GL_TRANSFORM_FEEDBACK_VARYINGS_NV", 0x8C83}, - {"GL_TRANSFORM_FEEDBACK_BUFFER_START", 0x8C84}, - {"GL_TRANSFORM_FEEDBACK_BUFFER_START_EXT", 0x8C84}, - {"GL_TRANSFORM_FEEDBACK_BUFFER_START_NV", 0x8C84}, - {"GL_TRANSFORM_FEEDBACK_BUFFER_SIZE", 0x8C85}, - {"GL_TRANSFORM_FEEDBACK_BUFFER_SIZE_EXT", 0x8C85}, - {"GL_TRANSFORM_FEEDBACK_BUFFER_SIZE_NV", 0x8C85}, - {"GL_TRANSFORM_FEEDBACK_RECORD_NV", 0x8C86}, - {"GL_PRIMITIVES_GENERATED", 0x8C87}, - {"GL_PRIMITIVES_GENERATED_EXT", 0x8C87}, - {"GL_PRIMITIVES_GENERATED_NV", 0x8C87}, - {"GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN", 0x8C88}, - {"GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_EXT", 0x8C88}, - {"GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_NV", 0x8C88}, - {"GL_RASTERIZER_DISCARD", 0x8C89}, - {"GL_RASTERIZER_DISCARD_EXT", 0x8C89}, - {"GL_RASTERIZER_DISCARD_NV", 0x8C89}, - {"GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS", 0x8C8A}, - {"GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS_EXT", 0x8C8A}, - {"GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS_NV", 0x8C8A}, - {"GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS", 0x8C8B}, - {"GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_EXT", 0x8C8B}, - {"GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_NV", 0x8C8B}, - {"GL_INTERLEAVED_ATTRIBS", 0x8C8C}, - {"GL_INTERLEAVED_ATTRIBS_EXT", 0x8C8C}, - {"GL_INTERLEAVED_ATTRIBS_NV", 0x8C8C}, - {"GL_SEPARATE_ATTRIBS", 0x8C8D}, - {"GL_SEPARATE_ATTRIBS_EXT", 0x8C8D}, - {"GL_SEPARATE_ATTRIBS_NV", 0x8C8D}, - {"GL_TRANSFORM_FEEDBACK_BUFFER", 0x8C8E}, - {"GL_TRANSFORM_FEEDBACK_BUFFER_EXT", 0x8C8E}, - {"GL_TRANSFORM_FEEDBACK_BUFFER_NV", 0x8C8E}, - {"GL_TRANSFORM_FEEDBACK_BUFFER_BINDING", 0x8C8F}, - {"GL_TRANSFORM_FEEDBACK_BUFFER_BINDING_EXT", 0x8C8F}, - {"GL_TRANSFORM_FEEDBACK_BUFFER_BINDING_NV", 0x8C8F}, - {"GL_ATC_RGB_AMD", 0x8C92}, - {"GL_ATC_RGBA_EXPLICIT_ALPHA_AMD", 0x8C93}, - {"GL_POINT_SPRITE_COORD_ORIGIN", 0x8CA0}, - {"GL_LOWER_LEFT", 0x8CA1}, - {"GL_UPPER_LEFT", 0x8CA2}, - {"GL_STENCIL_BACK_REF", 0x8CA3}, - {"GL_STENCIL_BACK_VALUE_MASK", 0x8CA4}, - {"GL_STENCIL_BACK_WRITEMASK", 0x8CA5}, - {"GL_DRAW_FRAMEBUFFER_BINDING", 0x8CA6}, - {"GL_DRAW_FRAMEBUFFER_BINDING_EXT", 0x8CA6}, - {"GL_DRAW_FRAMEBUFFER_BINDING_NV", 0x8CA6}, - {"GL_FRAMEBUFFER_BINDING", 0x8CA6}, - {"GL_FRAMEBUFFER_BINDING_ANGLE", 0x8CA6}, - {"GL_FRAMEBUFFER_BINDING_EXT", 0x8CA6}, - {"GL_FRAMEBUFFER_BINDING_OES", 0x8CA6}, - {"GL_RENDERBUFFER_BINDING", 0x8CA7}, - {"GL_RENDERBUFFER_BINDING_ANGLE", 0x8CA7}, - {"GL_RENDERBUFFER_BINDING_EXT", 0x8CA7}, - {"GL_RENDERBUFFER_BINDING_OES", 0x8CA7}, - {"GL_READ_FRAMEBUFFER", 0x8CA8}, - {"GL_READ_FRAMEBUFFER_ANGLE", 0x8CA8}, - {"GL_READ_FRAMEBUFFER_EXT", 0x8CA8}, - {"GL_READ_FRAMEBUFFER_NV", 0x8CA8}, - {"GL_DRAW_FRAMEBUFFER", 0x8CA9}, - {"GL_DRAW_FRAMEBUFFER_ANGLE", 0x8CA9}, - {"GL_DRAW_FRAMEBUFFER_EXT", 0x8CA9}, - {"GL_DRAW_FRAMEBUFFER_NV", 0x8CA9}, - {"GL_READ_FRAMEBUFFER_BINDING", 0x8CAA}, - {"GL_READ_FRAMEBUFFER_BINDING_EXT", 0x8CAA}, - {"GL_READ_FRAMEBUFFER_BINDING_NV", 0x8CAA}, - {"GL_RENDERBUFFER_COVERAGE_SAMPLES_NV", 0x8CAB}, - {"GL_RENDERBUFFER_SAMPLES", 0x8CAB}, - {"GL_RENDERBUFFER_SAMPLES_ANGLE", 0x8CAB}, - {"GL_RENDERBUFFER_SAMPLES_EXT", 0x8CAB}, - {"GL_RENDERBUFFER_SAMPLES_NV", 0x8CAB}, - {"GL_DEPTH_COMPONENT32F", 0x8CAC}, - {"GL_DEPTH32F_STENCIL8", 0x8CAD}, - {"GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE", 0x8CD0}, - {"GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_EXT", 0x8CD0}, - {"GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_OES", 0x8CD0}, - {"GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME", 0x8CD1}, - {"GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_EXT", 0x8CD1}, - {"GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_OES", 0x8CD1}, - {"GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL", 0x8CD2}, - {"GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_EXT", 0x8CD2}, - {"GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_OES", 0x8CD2}, - {"GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE", 0x8CD3}, - {"GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_EXT", 0x8CD3}, - {"GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_OES", 0x8CD3}, - {"GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_EXT", 0x8CD4}, - {"GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_OES", 0x8CD4}, - {"GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER", 0x8CD4}, - {"GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT", 0x8CD4}, - {"GL_FRAMEBUFFER_COMPLETE", 0x8CD5}, - {"GL_FRAMEBUFFER_COMPLETE_EXT", 0x8CD5}, - {"GL_FRAMEBUFFER_COMPLETE_OES", 0x8CD5}, - {"GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT", 0x8CD6}, - {"GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_EXT", 0x8CD6}, - {"GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_OES", 0x8CD6}, - {"GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT", 0x8CD7}, - {"GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_EXT", 0x8CD7}, - {"GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_OES", 0x8CD7}, - {"GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS", 0x8CD9}, - {"GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_EXT", 0x8CD9}, - {"GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_OES", 0x8CD9}, - {"GL_FRAMEBUFFER_INCOMPLETE_FORMATS_EXT", 0x8CDA}, - {"GL_FRAMEBUFFER_INCOMPLETE_FORMATS_OES", 0x8CDA}, - {"GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER", 0x8CDB}, - {"GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_EXT", 0x8CDB}, - {"GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_OES", 0x8CDB}, - {"GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER", 0x8CDC}, - {"GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER_EXT", 0x8CDC}, - {"GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER_OES", 0x8CDC}, - {"GL_FRAMEBUFFER_UNSUPPORTED", 0x8CDD}, - {"GL_FRAMEBUFFER_UNSUPPORTED_EXT", 0x8CDD}, - {"GL_FRAMEBUFFER_UNSUPPORTED_OES", 0x8CDD}, - {"GL_MAX_COLOR_ATTACHMENTS", 0x8CDF}, - {"GL_MAX_COLOR_ATTACHMENTS_EXT", 0x8CDF}, - {"GL_MAX_COLOR_ATTACHMENTS_NV", 0x8CDF}, - {"GL_COLOR_ATTACHMENT0", 0x8CE0}, - {"GL_COLOR_ATTACHMENT0_EXT", 0x8CE0}, - {"GL_COLOR_ATTACHMENT0_NV", 0x8CE0}, - {"GL_COLOR_ATTACHMENT0_OES", 0x8CE0}, - {"GL_COLOR_ATTACHMENT1", 0x8CE1}, - {"GL_COLOR_ATTACHMENT1_EXT", 0x8CE1}, - {"GL_COLOR_ATTACHMENT1_NV", 0x8CE1}, - {"GL_COLOR_ATTACHMENT2", 0x8CE2}, - {"GL_COLOR_ATTACHMENT2_EXT", 0x8CE2}, - {"GL_COLOR_ATTACHMENT2_NV", 0x8CE2}, - {"GL_COLOR_ATTACHMENT3", 0x8CE3}, - {"GL_COLOR_ATTACHMENT3_EXT", 0x8CE3}, - {"GL_COLOR_ATTACHMENT3_NV", 0x8CE3}, - {"GL_COLOR_ATTACHMENT4", 0x8CE4}, - {"GL_COLOR_ATTACHMENT4_EXT", 0x8CE4}, - {"GL_COLOR_ATTACHMENT4_NV", 0x8CE4}, - {"GL_COLOR_ATTACHMENT5", 0x8CE5}, - {"GL_COLOR_ATTACHMENT5_EXT", 0x8CE5}, - {"GL_COLOR_ATTACHMENT5_NV", 0x8CE5}, - {"GL_COLOR_ATTACHMENT6", 0x8CE6}, - {"GL_COLOR_ATTACHMENT6_EXT", 0x8CE6}, - {"GL_COLOR_ATTACHMENT6_NV", 0x8CE6}, - {"GL_COLOR_ATTACHMENT7", 0x8CE7}, - {"GL_COLOR_ATTACHMENT7_EXT", 0x8CE7}, - {"GL_COLOR_ATTACHMENT7_NV", 0x8CE7}, - {"GL_COLOR_ATTACHMENT8", 0x8CE8}, - {"GL_COLOR_ATTACHMENT8_EXT", 0x8CE8}, - {"GL_COLOR_ATTACHMENT8_NV", 0x8CE8}, - {"GL_COLOR_ATTACHMENT9", 0x8CE9}, - {"GL_COLOR_ATTACHMENT9_EXT", 0x8CE9}, - {"GL_COLOR_ATTACHMENT9_NV", 0x8CE9}, - {"GL_COLOR_ATTACHMENT10", 0x8CEA}, - {"GL_COLOR_ATTACHMENT10_EXT", 0x8CEA}, - {"GL_COLOR_ATTACHMENT10_NV", 0x8CEA}, - {"GL_COLOR_ATTACHMENT11", 0x8CEB}, - {"GL_COLOR_ATTACHMENT11_EXT", 0x8CEB}, - {"GL_COLOR_ATTACHMENT11_NV", 0x8CEB}, - {"GL_COLOR_ATTACHMENT12", 0x8CEC}, - {"GL_COLOR_ATTACHMENT12_EXT", 0x8CEC}, - {"GL_COLOR_ATTACHMENT12_NV", 0x8CEC}, - {"GL_COLOR_ATTACHMENT13", 0x8CED}, - {"GL_COLOR_ATTACHMENT13_EXT", 0x8CED}, - {"GL_COLOR_ATTACHMENT13_NV", 0x8CED}, - {"GL_COLOR_ATTACHMENT14", 0x8CEE}, - {"GL_COLOR_ATTACHMENT14_EXT", 0x8CEE}, - {"GL_COLOR_ATTACHMENT14_NV", 0x8CEE}, - {"GL_COLOR_ATTACHMENT15", 0x8CEF}, - {"GL_COLOR_ATTACHMENT15_EXT", 0x8CEF}, - {"GL_COLOR_ATTACHMENT15_NV", 0x8CEF}, - {"GL_DEPTH_ATTACHMENT", 0x8D00}, - {"GL_DEPTH_ATTACHMENT_EXT", 0x8D00}, - {"GL_DEPTH_ATTACHMENT_OES", 0x8D00}, - {"GL_STENCIL_ATTACHMENT", 0x8D20}, - {"GL_STENCIL_ATTACHMENT_EXT", 0x8D20}, - {"GL_STENCIL_ATTACHMENT_OES", 0x8D20}, - {"GL_FRAMEBUFFER", 0x8D40}, - {"GL_FRAMEBUFFER_EXT", 0x8D40}, - {"GL_FRAMEBUFFER_OES", 0x8D40}, - {"GL_RENDERBUFFER", 0x8D41}, - {"GL_RENDERBUFFER_EXT", 0x8D41}, - {"GL_RENDERBUFFER_OES", 0x8D41}, - {"GL_RENDERBUFFER_WIDTH", 0x8D42}, - {"GL_RENDERBUFFER_WIDTH_EXT", 0x8D42}, - {"GL_RENDERBUFFER_WIDTH_OES", 0x8D42}, - {"GL_RENDERBUFFER_HEIGHT", 0x8D43}, - {"GL_RENDERBUFFER_HEIGHT_EXT", 0x8D43}, - {"GL_RENDERBUFFER_HEIGHT_OES", 0x8D43}, - {"GL_RENDERBUFFER_INTERNAL_FORMAT", 0x8D44}, - {"GL_RENDERBUFFER_INTERNAL_FORMAT_EXT", 0x8D44}, - {"GL_RENDERBUFFER_INTERNAL_FORMAT_OES", 0x8D44}, - {"GL_STENCIL_INDEX1", 0x8D46}, - {"GL_STENCIL_INDEX1_EXT", 0x8D46}, - {"GL_STENCIL_INDEX1_OES", 0x8D46}, - {"GL_STENCIL_INDEX4", 0x8D47}, - {"GL_STENCIL_INDEX4_EXT", 0x8D47}, - {"GL_STENCIL_INDEX4_OES", 0x8D47}, - {"GL_STENCIL_INDEX8", 0x8D48}, - {"GL_STENCIL_INDEX8_EXT", 0x8D48}, - {"GL_STENCIL_INDEX8_OES", 0x8D48}, - {"GL_STENCIL_INDEX16", 0x8D49}, - {"GL_STENCIL_INDEX16_EXT", 0x8D49}, - {"GL_RENDERBUFFER_RED_SIZE", 0x8D50}, - {"GL_RENDERBUFFER_RED_SIZE_EXT", 0x8D50}, - {"GL_RENDERBUFFER_RED_SIZE_OES", 0x8D50}, - {"GL_RENDERBUFFER_GREEN_SIZE", 0x8D51}, - {"GL_RENDERBUFFER_GREEN_SIZE_EXT", 0x8D51}, - {"GL_RENDERBUFFER_GREEN_SIZE_OES", 0x8D51}, - {"GL_RENDERBUFFER_BLUE_SIZE", 0x8D52}, - {"GL_RENDERBUFFER_BLUE_SIZE_EXT", 0x8D52}, - {"GL_RENDERBUFFER_BLUE_SIZE_OES", 0x8D52}, - {"GL_RENDERBUFFER_ALPHA_SIZE", 0x8D53}, - {"GL_RENDERBUFFER_ALPHA_SIZE_EXT", 0x8D53}, - {"GL_RENDERBUFFER_ALPHA_SIZE_OES", 0x8D53}, - {"GL_RENDERBUFFER_DEPTH_SIZE", 0x8D54}, - {"GL_RENDERBUFFER_DEPTH_SIZE_EXT", 0x8D54}, - {"GL_RENDERBUFFER_DEPTH_SIZE_OES", 0x8D54}, - {"GL_RENDERBUFFER_STENCIL_SIZE", 0x8D55}, - {"GL_RENDERBUFFER_STENCIL_SIZE_EXT", 0x8D55}, - {"GL_RENDERBUFFER_STENCIL_SIZE_OES", 0x8D55}, - {"GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE", 0x8D56}, - {"GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_ANGLE", 0x8D56}, - {"GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT", 0x8D56}, - {"GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_NV", 0x8D56}, - {"GL_MAX_SAMPLES", 0x8D57}, - {"GL_MAX_SAMPLES_ANGLE", 0x8D57}, - {"GL_MAX_SAMPLES_EXT", 0x8D57}, - {"GL_MAX_SAMPLES_NV", 0x8D57}, - {"GL_TEXTURE_GEN_STR_OES", 0x8D60}, - {"GL_HALF_FLOAT_OES", 0x8D61}, - {"GL_RGB565_OES", 0x8D62}, - {"GL_RGB565", 0x8D62}, - {"GL_ETC1_RGB8_OES", 0x8D64}, - {"GL_TEXTURE_EXTERNAL_OES", 0x8D65}, - {"GL_SAMPLER_EXTERNAL_OES", 0x8D66}, - {"GL_TEXTURE_BINDING_EXTERNAL_OES", 0x8D67}, - {"GL_REQUIRED_TEXTURE_IMAGE_UNITS_OES", 0x8D68}, - {"GL_PRIMITIVE_RESTART_FIXED_INDEX", 0x8D69}, - {"GL_ANY_SAMPLES_PASSED_CONSERVATIVE", 0x8D6A}, - {"GL_ANY_SAMPLES_PASSED_CONSERVATIVE_EXT", 0x8D6A}, - {"GL_MAX_ELEMENT_INDEX", 0x8D6B}, - {"GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_SAMPLES_EXT", 0x8D6C}, - {"GL_RGBA32UI", 0x8D70}, - {"GL_RGBA32UI_EXT", 0x8D70}, - {"GL_RGB32UI", 0x8D71}, - {"GL_RGB32UI_EXT", 0x8D71}, - {"GL_ALPHA32UI_EXT", 0x8D72}, - {"GL_INTENSITY32UI_EXT", 0x8D73}, - {"GL_LUMINANCE32UI_EXT", 0x8D74}, - {"GL_LUMINANCE_ALPHA32UI_EXT", 0x8D75}, - {"GL_RGBA16UI", 0x8D76}, - {"GL_RGBA16UI_EXT", 0x8D76}, - {"GL_RGB16UI", 0x8D77}, - {"GL_RGB16UI_EXT", 0x8D77}, - {"GL_ALPHA16UI_EXT", 0x8D78}, - {"GL_INTENSITY16UI_EXT", 0x8D79}, - {"GL_LUMINANCE16UI_EXT", 0x8D7A}, - {"GL_LUMINANCE_ALPHA16UI_EXT", 0x8D7B}, - {"GL_RGBA8UI", 0x8D7C}, - {"GL_RGBA8UI_EXT", 0x8D7C}, - {"GL_RGB8UI", 0x8D7D}, - {"GL_RGB8UI_EXT", 0x8D7D}, - {"GL_ALPHA8UI_EXT", 0x8D7E}, - {"GL_INTENSITY8UI_EXT", 0x8D7F}, - {"GL_LUMINANCE8UI_EXT", 0x8D80}, - {"GL_LUMINANCE_ALPHA8UI_EXT", 0x8D81}, - {"GL_RGBA32I", 0x8D82}, - {"GL_RGBA32I_EXT", 0x8D82}, - {"GL_RGB32I", 0x8D83}, - {"GL_RGB32I_EXT", 0x8D83}, - {"GL_ALPHA32I_EXT", 0x8D84}, - {"GL_INTENSITY32I_EXT", 0x8D85}, - {"GL_LUMINANCE32I_EXT", 0x8D86}, - {"GL_LUMINANCE_ALPHA32I_EXT", 0x8D87}, - {"GL_RGBA16I", 0x8D88}, - {"GL_RGBA16I_EXT", 0x8D88}, - {"GL_RGB16I", 0x8D89}, - {"GL_RGB16I_EXT", 0x8D89}, - {"GL_ALPHA16I_EXT", 0x8D8A}, - {"GL_INTENSITY16I_EXT", 0x8D8B}, - {"GL_LUMINANCE16I_EXT", 0x8D8C}, - {"GL_LUMINANCE_ALPHA16I_EXT", 0x8D8D}, - {"GL_RGBA8I", 0x8D8E}, - {"GL_RGBA8I_EXT", 0x8D8E}, - {"GL_RGB8I", 0x8D8F}, - {"GL_RGB8I_EXT", 0x8D8F}, - {"GL_ALPHA8I_EXT", 0x8D90}, - {"GL_INTENSITY8I_EXT", 0x8D91}, - {"GL_LUMINANCE8I_EXT", 0x8D92}, - {"GL_LUMINANCE_ALPHA8I_EXT", 0x8D93}, - {"GL_RED_INTEGER", 0x8D94}, - {"GL_RED_INTEGER_EXT", 0x8D94}, - {"GL_GREEN_INTEGER", 0x8D95}, - {"GL_GREEN_INTEGER_EXT", 0x8D95}, - {"GL_BLUE_INTEGER", 0x8D96}, - {"GL_BLUE_INTEGER_EXT", 0x8D96}, - {"GL_ALPHA_INTEGER", 0x8D97}, - {"GL_ALPHA_INTEGER_EXT", 0x8D97}, - {"GL_RGB_INTEGER", 0x8D98}, - {"GL_RGB_INTEGER_EXT", 0x8D98}, - {"GL_RGBA_INTEGER", 0x8D99}, - {"GL_RGBA_INTEGER_EXT", 0x8D99}, - {"GL_BGR_INTEGER", 0x8D9A}, - {"GL_BGR_INTEGER_EXT", 0x8D9A}, - {"GL_BGRA_INTEGER", 0x8D9B}, - {"GL_BGRA_INTEGER_EXT", 0x8D9B}, - {"GL_LUMINANCE_INTEGER_EXT", 0x8D9C}, - {"GL_LUMINANCE_ALPHA_INTEGER_EXT", 0x8D9D}, - {"GL_RGBA_INTEGER_MODE_EXT", 0x8D9E}, - {"GL_INT_2_10_10_10_REV", 0x8D9F}, - {"GL_MAX_PROGRAM_PARAMETER_BUFFER_BINDINGS_NV", 0x8DA0}, - {"GL_MAX_PROGRAM_PARAMETER_BUFFER_SIZE_NV", 0x8DA1}, - {"GL_VERTEX_PROGRAM_PARAMETER_BUFFER_NV", 0x8DA2}, - {"GL_GEOMETRY_PROGRAM_PARAMETER_BUFFER_NV", 0x8DA3}, - {"GL_FRAGMENT_PROGRAM_PARAMETER_BUFFER_NV", 0x8DA4}, - {"GL_MAX_PROGRAM_GENERIC_ATTRIBS_NV", 0x8DA5}, - {"GL_MAX_PROGRAM_GENERIC_RESULTS_NV", 0x8DA6}, - {"GL_FRAMEBUFFER_ATTACHMENT_LAYERED", 0x8DA7}, - {"GL_FRAMEBUFFER_ATTACHMENT_LAYERED_ARB", 0x8DA7}, - {"GL_FRAMEBUFFER_ATTACHMENT_LAYERED_EXT", 0x8DA7}, - {"GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS", 0x8DA8}, - {"GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_ARB", 0x8DA8}, - {"GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT", 0x8DA8}, - {"GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_ARB", 0x8DA9}, - {"GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_EXT", 0x8DA9}, - {"GL_LAYER_NV", 0x8DAA}, - {"GL_DEPTH_COMPONENT32F_NV", 0x8DAB}, - {"GL_DEPTH32F_STENCIL8_NV", 0x8DAC}, - {"GL_FLOAT_32_UNSIGNED_INT_24_8_REV", 0x8DAD}, - {"GL_FLOAT_32_UNSIGNED_INT_24_8_REV_NV", 0x8DAD}, - {"GL_SHADER_INCLUDE_ARB", 0x8DAE}, - {"GL_DEPTH_BUFFER_FLOAT_MODE_NV", 0x8DAF}, - {"GL_FRAMEBUFFER_SRGB", 0x8DB9}, - {"GL_FRAMEBUFFER_SRGB_EXT", 0x8DB9}, - {"GL_FRAMEBUFFER_SRGB_CAPABLE_EXT", 0x8DBA}, - {"GL_COMPRESSED_RED_RGTC1", 0x8DBB}, - {"GL_COMPRESSED_RED_RGTC1_EXT", 0x8DBB}, - {"GL_COMPRESSED_SIGNED_RED_RGTC1", 0x8DBC}, - {"GL_COMPRESSED_SIGNED_RED_RGTC1_EXT", 0x8DBC}, - {"GL_COMPRESSED_RED_GREEN_RGTC2_EXT", 0x8DBD}, - {"GL_COMPRESSED_RG_RGTC2", 0x8DBD}, - {"GL_COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT", 0x8DBE}, - {"GL_COMPRESSED_SIGNED_RG_RGTC2", 0x8DBE}, - {"GL_SAMPLER_1D_ARRAY", 0x8DC0}, - {"GL_SAMPLER_1D_ARRAY_EXT", 0x8DC0}, - {"GL_SAMPLER_2D_ARRAY", 0x8DC1}, - {"GL_SAMPLER_2D_ARRAY_EXT", 0x8DC1}, - {"GL_SAMPLER_BUFFER", 0x8DC2}, - {"GL_SAMPLER_BUFFER_EXT", 0x8DC2}, - {"GL_SAMPLER_1D_ARRAY_SHADOW", 0x8DC3}, - {"GL_SAMPLER_1D_ARRAY_SHADOW_EXT", 0x8DC3}, - {"GL_SAMPLER_2D_ARRAY_SHADOW", 0x8DC4}, - {"GL_SAMPLER_2D_ARRAY_SHADOW_EXT", 0x8DC4}, - {"GL_SAMPLER_2D_ARRAY_SHADOW_NV", 0x8DC4}, - {"GL_SAMPLER_CUBE_SHADOW", 0x8DC5}, - {"GL_SAMPLER_CUBE_SHADOW_EXT", 0x8DC5}, - {"GL_SAMPLER_CUBE_SHADOW_NV", 0x8DC5}, - {"GL_UNSIGNED_INT_VEC2", 0x8DC6}, - {"GL_UNSIGNED_INT_VEC2_EXT", 0x8DC6}, - {"GL_UNSIGNED_INT_VEC3", 0x8DC7}, - {"GL_UNSIGNED_INT_VEC3_EXT", 0x8DC7}, - {"GL_UNSIGNED_INT_VEC4", 0x8DC8}, - {"GL_UNSIGNED_INT_VEC4_EXT", 0x8DC8}, - {"GL_INT_SAMPLER_1D", 0x8DC9}, - {"GL_INT_SAMPLER_1D_EXT", 0x8DC9}, - {"GL_INT_SAMPLER_2D", 0x8DCA}, - {"GL_INT_SAMPLER_2D_EXT", 0x8DCA}, - {"GL_INT_SAMPLER_3D", 0x8DCB}, - {"GL_INT_SAMPLER_3D_EXT", 0x8DCB}, - {"GL_INT_SAMPLER_CUBE", 0x8DCC}, - {"GL_INT_SAMPLER_CUBE_EXT", 0x8DCC}, - {"GL_INT_SAMPLER_2D_RECT", 0x8DCD}, - {"GL_INT_SAMPLER_2D_RECT_EXT", 0x8DCD}, - {"GL_INT_SAMPLER_1D_ARRAY", 0x8DCE}, - {"GL_INT_SAMPLER_1D_ARRAY_EXT", 0x8DCE}, - {"GL_INT_SAMPLER_2D_ARRAY", 0x8DCF}, - {"GL_INT_SAMPLER_2D_ARRAY_EXT", 0x8DCF}, - {"GL_INT_SAMPLER_BUFFER", 0x8DD0}, - {"GL_INT_SAMPLER_BUFFER_EXT", 0x8DD0}, - {"GL_UNSIGNED_INT_SAMPLER_1D", 0x8DD1}, - {"GL_UNSIGNED_INT_SAMPLER_1D_EXT", 0x8DD1}, - {"GL_UNSIGNED_INT_SAMPLER_2D", 0x8DD2}, - {"GL_UNSIGNED_INT_SAMPLER_2D_EXT", 0x8DD2}, - {"GL_UNSIGNED_INT_SAMPLER_3D", 0x8DD3}, - {"GL_UNSIGNED_INT_SAMPLER_3D_EXT", 0x8DD3}, - {"GL_UNSIGNED_INT_SAMPLER_CUBE", 0x8DD4}, - {"GL_UNSIGNED_INT_SAMPLER_CUBE_EXT", 0x8DD4}, - {"GL_UNSIGNED_INT_SAMPLER_2D_RECT", 0x8DD5}, - {"GL_UNSIGNED_INT_SAMPLER_2D_RECT_EXT", 0x8DD5}, - {"GL_UNSIGNED_INT_SAMPLER_1D_ARRAY", 0x8DD6}, - {"GL_UNSIGNED_INT_SAMPLER_1D_ARRAY_EXT", 0x8DD6}, - {"GL_UNSIGNED_INT_SAMPLER_2D_ARRAY", 0x8DD7}, - {"GL_UNSIGNED_INT_SAMPLER_2D_ARRAY_EXT", 0x8DD7}, - {"GL_UNSIGNED_INT_SAMPLER_BUFFER", 0x8DD8}, - {"GL_UNSIGNED_INT_SAMPLER_BUFFER_EXT", 0x8DD8}, - {"GL_GEOMETRY_SHADER", 0x8DD9}, - {"GL_GEOMETRY_SHADER_ARB", 0x8DD9}, - {"GL_GEOMETRY_SHADER_EXT", 0x8DD9}, - {"GL_GEOMETRY_VERTICES_OUT_ARB", 0x8DDA}, - {"GL_GEOMETRY_VERTICES_OUT_EXT", 0x8DDA}, - {"GL_GEOMETRY_INPUT_TYPE_ARB", 0x8DDB}, - {"GL_GEOMETRY_INPUT_TYPE_EXT", 0x8DDB}, - {"GL_GEOMETRY_OUTPUT_TYPE_ARB", 0x8DDC}, - {"GL_GEOMETRY_OUTPUT_TYPE_EXT", 0x8DDC}, - {"GL_MAX_GEOMETRY_VARYING_COMPONENTS_ARB", 0x8DDD}, - {"GL_MAX_GEOMETRY_VARYING_COMPONENTS_EXT", 0x8DDD}, - {"GL_MAX_VERTEX_VARYING_COMPONENTS_ARB", 0x8DDE}, - {"GL_MAX_VERTEX_VARYING_COMPONENTS_EXT", 0x8DDE}, - {"GL_MAX_GEOMETRY_UNIFORM_COMPONENTS", 0x8DDF}, - {"GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_ARB", 0x8DDF}, - {"GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_EXT", 0x8DDF}, - {"GL_MAX_GEOMETRY_OUTPUT_VERTICES", 0x8DE0}, - {"GL_MAX_GEOMETRY_OUTPUT_VERTICES_ARB", 0x8DE0}, - {"GL_MAX_GEOMETRY_OUTPUT_VERTICES_EXT", 0x8DE0}, - {"GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS", 0x8DE1}, - {"GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_ARB", 0x8DE1}, - {"GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_EXT", 0x8DE1}, - {"GL_MAX_VERTEX_BINDABLE_UNIFORMS_EXT", 0x8DE2}, - {"GL_MAX_FRAGMENT_BINDABLE_UNIFORMS_EXT", 0x8DE3}, - {"GL_MAX_GEOMETRY_BINDABLE_UNIFORMS_EXT", 0x8DE4}, - {"GL_ACTIVE_SUBROUTINES", 0x8DE5}, - {"GL_ACTIVE_SUBROUTINE_UNIFORMS", 0x8DE6}, - {"GL_MAX_SUBROUTINES", 0x8DE7}, - {"GL_MAX_SUBROUTINE_UNIFORM_LOCATIONS", 0x8DE8}, - {"GL_NAMED_STRING_LENGTH_ARB", 0x8DE9}, - {"GL_NAMED_STRING_TYPE_ARB", 0x8DEA}, - {"GL_MAX_BINDABLE_UNIFORM_SIZE_EXT", 0x8DED}, - {"GL_UNIFORM_BUFFER_EXT", 0x8DEE}, - {"GL_UNIFORM_BUFFER_BINDING_EXT", 0x8DEF}, - {"GL_LOW_FLOAT", 0x8DF0}, - {"GL_MEDIUM_FLOAT", 0x8DF1}, - {"GL_HIGH_FLOAT", 0x8DF2}, - {"GL_LOW_INT", 0x8DF3}, - {"GL_MEDIUM_INT", 0x8DF4}, - {"GL_HIGH_INT", 0x8DF5}, - {"GL_UNSIGNED_INT_10_10_10_2_OES", 0x8DF6}, - {"GL_INT_10_10_10_2_OES", 0x8DF7}, - {"GL_SHADER_BINARY_FORMATS", 0x8DF8}, - {"GL_NUM_SHADER_BINARY_FORMATS", 0x8DF9}, - {"GL_SHADER_COMPILER", 0x8DFA}, - {"GL_MAX_VERTEX_UNIFORM_VECTORS", 0x8DFB}, - {"GL_MAX_VARYING_VECTORS", 0x8DFC}, - {"GL_MAX_FRAGMENT_UNIFORM_VECTORS", 0x8DFD}, - {"GL_RENDERBUFFER_COLOR_SAMPLES_NV", 0x8E10}, - {"GL_MAX_MULTISAMPLE_COVERAGE_MODES_NV", 0x8E11}, - {"GL_MULTISAMPLE_COVERAGE_MODES_NV", 0x8E12}, - {"GL_QUERY_WAIT", 0x8E13}, - {"GL_QUERY_WAIT_NV", 0x8E13}, - {"GL_QUERY_NO_WAIT", 0x8E14}, - {"GL_QUERY_NO_WAIT_NV", 0x8E14}, - {"GL_QUERY_BY_REGION_WAIT", 0x8E15}, - {"GL_QUERY_BY_REGION_WAIT_NV", 0x8E15}, - {"GL_QUERY_BY_REGION_NO_WAIT", 0x8E16}, - {"GL_QUERY_BY_REGION_NO_WAIT_NV", 0x8E16}, - {"GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS", 0x8E1E}, - {"GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS", 0x8E1F}, - {"GL_COLOR_SAMPLES_NV", 0x8E20}, - {"GL_TRANSFORM_FEEDBACK", 0x8E22}, - {"GL_TRANSFORM_FEEDBACK_NV", 0x8E22}, - {"GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED", 0x8E23}, - {"GL_TRANSFORM_FEEDBACK_PAUSED", 0x8E23}, - {"GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED_NV", 0x8E23}, - {"GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE", 0x8E24}, - {"GL_TRANSFORM_FEEDBACK_ACTIVE", 0x8E24}, - {"GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE_NV", 0x8E24}, - {"GL_TRANSFORM_FEEDBACK_BINDING", 0x8E25}, - {"GL_TRANSFORM_FEEDBACK_BINDING_NV", 0x8E25}, - {"GL_FRAME_NV", 0x8E26}, - {"GL_FIELDS_NV", 0x8E27}, - {"GL_CURRENT_TIME_NV", 0x8E28}, - {"GL_TIMESTAMP", 0x8E28}, - {"GL_TIMESTAMP_EXT", 0x8E28}, - {"GL_NUM_FILL_STREAMS_NV", 0x8E29}, - {"GL_PRESENT_TIME_NV", 0x8E2A}, - {"GL_PRESENT_DURATION_NV", 0x8E2B}, - {"GL_DEPTH_COMPONENT16_NONLINEAR_NV", 0x8E2C}, - {"GL_PROGRAM_MATRIX_EXT", 0x8E2D}, - {"GL_TRANSPOSE_PROGRAM_MATRIX_EXT", 0x8E2E}, - {"GL_PROGRAM_MATRIX_STACK_DEPTH_EXT", 0x8E2F}, - {"GL_TEXTURE_SWIZZLE_R", 0x8E42}, - {"GL_TEXTURE_SWIZZLE_R_EXT", 0x8E42}, - {"GL_TEXTURE_SWIZZLE_G", 0x8E43}, - {"GL_TEXTURE_SWIZZLE_G_EXT", 0x8E43}, - {"GL_TEXTURE_SWIZZLE_B", 0x8E44}, - {"GL_TEXTURE_SWIZZLE_B_EXT", 0x8E44}, - {"GL_TEXTURE_SWIZZLE_A", 0x8E45}, - {"GL_TEXTURE_SWIZZLE_A_EXT", 0x8E45}, - {"GL_TEXTURE_SWIZZLE_RGBA", 0x8E46}, - {"GL_TEXTURE_SWIZZLE_RGBA_EXT", 0x8E46}, - {"GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS", 0x8E47}, - {"GL_ACTIVE_SUBROUTINE_MAX_LENGTH", 0x8E48}, - {"GL_ACTIVE_SUBROUTINE_UNIFORM_MAX_LENGTH", 0x8E49}, - {"GL_NUM_COMPATIBLE_SUBROUTINES", 0x8E4A}, - {"GL_COMPATIBLE_SUBROUTINES", 0x8E4B}, - {"GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION", 0x8E4C}, - {"GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION_EXT", 0x8E4C}, - {"GL_FIRST_VERTEX_CONVENTION", 0x8E4D}, - {"GL_FIRST_VERTEX_CONVENTION_EXT", 0x8E4D}, - {"GL_LAST_VERTEX_CONVENTION", 0x8E4E}, - {"GL_LAST_VERTEX_CONVENTION_EXT", 0x8E4E}, - {"GL_PROVOKING_VERTEX", 0x8E4F}, - {"GL_PROVOKING_VERTEX_EXT", 0x8E4F}, - {"GL_SAMPLE_POSITION", 0x8E50}, - {"GL_SAMPLE_POSITION_NV", 0x8E50}, - {"GL_SAMPLE_MASK", 0x8E51}, - {"GL_SAMPLE_MASK_NV", 0x8E51}, - {"GL_SAMPLE_MASK_VALUE", 0x8E52}, - {"GL_SAMPLE_MASK_VALUE_NV", 0x8E52}, - {"GL_TEXTURE_BINDING_RENDERBUFFER_NV", 0x8E53}, - {"GL_TEXTURE_RENDERBUFFER_DATA_STORE_BINDING_NV", 0x8E54}, - {"GL_TEXTURE_RENDERBUFFER_NV", 0x8E55}, - {"GL_SAMPLER_RENDERBUFFER_NV", 0x8E56}, - {"GL_INT_SAMPLER_RENDERBUFFER_NV", 0x8E57}, - {"GL_UNSIGNED_INT_SAMPLER_RENDERBUFFER_NV", 0x8E58}, - {"GL_MAX_SAMPLE_MASK_WORDS", 0x8E59}, - {"GL_MAX_SAMPLE_MASK_WORDS_NV", 0x8E59}, - {"GL_MAX_GEOMETRY_PROGRAM_INVOCATIONS_NV", 0x8E5A}, - {"GL_MAX_GEOMETRY_SHADER_INVOCATIONS", 0x8E5A}, - {"GL_MIN_FRAGMENT_INTERPOLATION_OFFSET", 0x8E5B}, - {"GL_MIN_FRAGMENT_INTERPOLATION_OFFSET_NV", 0x8E5B}, - {"GL_MAX_FRAGMENT_INTERPOLATION_OFFSET", 0x8E5C}, - {"GL_MAX_FRAGMENT_INTERPOLATION_OFFSET_NV", 0x8E5C}, - {"GL_FRAGMENT_INTERPOLATION_OFFSET_BITS", 0x8E5D}, - {"GL_FRAGMENT_PROGRAM_INTERPOLATION_OFFSET_BITS_NV", 0x8E5D}, - {"GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET", 0x8E5E}, - {"GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET_ARB", 0x8E5E}, - {"GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET_NV", 0x8E5E}, - {"GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET", 0x8E5F}, - {"GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_ARB", 0x8E5F}, - {"GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_NV", 0x8E5F}, - {"GL_MAX_TRANSFORM_FEEDBACK_BUFFERS", 0x8E70}, - {"GL_MAX_VERTEX_STREAMS", 0x8E71}, - {"GL_PATCH_VERTICES", 0x8E72}, - {"GL_PATCH_DEFAULT_INNER_LEVEL", 0x8E73}, - {"GL_PATCH_DEFAULT_OUTER_LEVEL", 0x8E74}, - {"GL_TESS_CONTROL_OUTPUT_VERTICES", 0x8E75}, - {"GL_TESS_GEN_MODE", 0x8E76}, - {"GL_TESS_GEN_SPACING", 0x8E77}, - {"GL_TESS_GEN_VERTEX_ORDER", 0x8E78}, - {"GL_TESS_GEN_POINT_MODE", 0x8E79}, - {"GL_ISOLINES", 0x8E7A}, - {"GL_FRACTIONAL_ODD", 0x8E7B}, - {"GL_FRACTIONAL_EVEN", 0x8E7C}, - {"GL_MAX_PATCH_VERTICES", 0x8E7D}, - {"GL_MAX_TESS_GEN_LEVEL", 0x8E7E}, - {"GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS", 0x8E7F}, - {"GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS", 0x8E80}, - {"GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS", 0x8E81}, - {"GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS", 0x8E82}, - {"GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS", 0x8E83}, - {"GL_MAX_TESS_PATCH_COMPONENTS", 0x8E84}, - {"GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS", 0x8E85}, - {"GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS", 0x8E86}, - {"GL_TESS_EVALUATION_SHADER", 0x8E87}, - {"GL_TESS_CONTROL_SHADER", 0x8E88}, - {"GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS", 0x8E89}, - {"GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS", 0x8E8A}, - {"GL_COMPRESSED_RGBA_BPTC_UNORM_ARB", 0x8E8C}, - {"GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_ARB", 0x8E8D}, - {"GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_ARB", 0x8E8E}, - {"GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_ARB", 0x8E8F}, - {"GL_COVERAGE_COMPONENT_NV", 0x8ED0}, - {"GL_COVERAGE_COMPONENT4_NV", 0x8ED1}, - {"GL_COVERAGE_ATTACHMENT_NV", 0x8ED2}, - {"GL_COVERAGE_BUFFERS_NV", 0x8ED3}, - {"GL_COVERAGE_SAMPLES_NV", 0x8ED4}, - {"GL_COVERAGE_ALL_FRAGMENTS_NV", 0x8ED5}, - {"GL_COVERAGE_EDGE_FRAGMENTS_NV", 0x8ED6}, - {"GL_COVERAGE_AUTOMATIC_NV", 0x8ED7}, - {"GL_BUFFER_GPU_ADDRESS_NV", 0x8F1D}, - {"GL_VERTEX_ATTRIB_ARRAY_UNIFIED_NV", 0x8F1E}, - {"GL_ELEMENT_ARRAY_UNIFIED_NV", 0x8F1F}, - {"GL_VERTEX_ATTRIB_ARRAY_ADDRESS_NV", 0x8F20}, - {"GL_VERTEX_ARRAY_ADDRESS_NV", 0x8F21}, - {"GL_NORMAL_ARRAY_ADDRESS_NV", 0x8F22}, - {"GL_COLOR_ARRAY_ADDRESS_NV", 0x8F23}, - {"GL_INDEX_ARRAY_ADDRESS_NV", 0x8F24}, - {"GL_TEXTURE_COORD_ARRAY_ADDRESS_NV", 0x8F25}, - {"GL_EDGE_FLAG_ARRAY_ADDRESS_NV", 0x8F26}, - {"GL_SECONDARY_COLOR_ARRAY_ADDRESS_NV", 0x8F27}, - {"GL_FOG_COORD_ARRAY_ADDRESS_NV", 0x8F28}, - {"GL_ELEMENT_ARRAY_ADDRESS_NV", 0x8F29}, - {"GL_VERTEX_ATTRIB_ARRAY_LENGTH_NV", 0x8F2A}, - {"GL_VERTEX_ARRAY_LENGTH_NV", 0x8F2B}, - {"GL_NORMAL_ARRAY_LENGTH_NV", 0x8F2C}, - {"GL_COLOR_ARRAY_LENGTH_NV", 0x8F2D}, - {"GL_INDEX_ARRAY_LENGTH_NV", 0x8F2E}, - {"GL_TEXTURE_COORD_ARRAY_LENGTH_NV", 0x8F2F}, - {"GL_EDGE_FLAG_ARRAY_LENGTH_NV", 0x8F30}, - {"GL_SECONDARY_COLOR_ARRAY_LENGTH_NV", 0x8F31}, - {"GL_FOG_COORD_ARRAY_LENGTH_NV", 0x8F32}, - {"GL_ELEMENT_ARRAY_LENGTH_NV", 0x8F33}, - {"GL_GPU_ADDRESS_NV", 0x8F34}, - {"GL_MAX_SHADER_BUFFER_ADDRESS_NV", 0x8F35}, - {"GL_COPY_READ_BUFFER", 0x8F36}, - {"GL_COPY_READ_BUFFER_BINDING", 0x8F36}, - {"GL_COPY_WRITE_BUFFER", 0x8F37}, - {"GL_COPY_WRITE_BUFFER_BINDING", 0x8F37}, - {"GL_MAX_IMAGE_UNITS", 0x8F38}, - {"GL_MAX_IMAGE_UNITS_EXT", 0x8F38}, - {"GL_MAX_COMBINED_IMAGE_UNITS_AND_FRAGMENT_OUTPUTS", 0x8F39}, - {"GL_MAX_COMBINED_IMAGE_UNITS_AND_FRAGMENT_OUTPUTS_EXT", 0x8F39}, - {"GL_MAX_COMBINED_SHADER_OUTPUT_RESOURCES", 0x8F39}, - {"GL_IMAGE_BINDING_NAME", 0x8F3A}, - {"GL_IMAGE_BINDING_NAME_EXT", 0x8F3A}, - {"GL_IMAGE_BINDING_LEVEL", 0x8F3B}, - {"GL_IMAGE_BINDING_LEVEL_EXT", 0x8F3B}, - {"GL_IMAGE_BINDING_LAYERED", 0x8F3C}, - {"GL_IMAGE_BINDING_LAYERED_EXT", 0x8F3C}, - {"GL_IMAGE_BINDING_LAYER", 0x8F3D}, - {"GL_IMAGE_BINDING_LAYER_EXT", 0x8F3D}, - {"GL_IMAGE_BINDING_ACCESS", 0x8F3E}, - {"GL_IMAGE_BINDING_ACCESS_EXT", 0x8F3E}, - {"GL_DRAW_INDIRECT_BUFFER", 0x8F3F}, - {"GL_DRAW_INDIRECT_UNIFIED_NV", 0x8F40}, - {"GL_DRAW_INDIRECT_ADDRESS_NV", 0x8F41}, - {"GL_DRAW_INDIRECT_LENGTH_NV", 0x8F42}, - {"GL_DRAW_INDIRECT_BUFFER_BINDING", 0x8F43}, - {"GL_MAX_PROGRAM_SUBROUTINE_PARAMETERS_NV", 0x8F44}, - {"GL_MAX_PROGRAM_SUBROUTINE_NUM_NV", 0x8F45}, - {"GL_DOUBLE_MAT2", 0x8F46}, - {"GL_DOUBLE_MAT2_EXT", 0x8F46}, - {"GL_DOUBLE_MAT3", 0x8F47}, - {"GL_DOUBLE_MAT3_EXT", 0x8F47}, - {"GL_DOUBLE_MAT4", 0x8F48}, - {"GL_DOUBLE_MAT4_EXT", 0x8F48}, - {"GL_DOUBLE_MAT2x3", 0x8F49}, - {"GL_DOUBLE_MAT2x3_EXT", 0x8F49}, - {"GL_DOUBLE_MAT2x4", 0x8F4A}, - {"GL_DOUBLE_MAT2x4_EXT", 0x8F4A}, - {"GL_DOUBLE_MAT3x2", 0x8F4B}, - {"GL_DOUBLE_MAT3x2_EXT", 0x8F4B}, - {"GL_DOUBLE_MAT3x4", 0x8F4C}, - {"GL_DOUBLE_MAT3x4_EXT", 0x8F4C}, - {"GL_DOUBLE_MAT4x2", 0x8F4D}, - {"GL_DOUBLE_MAT4x2_EXT", 0x8F4D}, - {"GL_DOUBLE_MAT4x3", 0x8F4E}, - {"GL_DOUBLE_MAT4x3_EXT", 0x8F4E}, - {"GL_MALI_SHADER_BINARY_ARM", 0x8F60}, - {"GL_MALI_PROGRAM_BINARY_ARM", 0x8F61}, - {"GL_RED_SNORM", 0x8F90}, - {"GL_RG_SNORM", 0x8F91}, - {"GL_RGB_SNORM", 0x8F92}, - {"GL_RGBA_SNORM", 0x8F93}, - {"GL_R8_SNORM", 0x8F94}, - {"GL_RG8_SNORM", 0x8F95}, - {"GL_RGB8_SNORM", 0x8F96}, - {"GL_RGBA8_SNORM", 0x8F97}, - {"GL_R16_SNORM", 0x8F98}, - {"GL_RG16_SNORM", 0x8F99}, - {"GL_RGB16_SNORM", 0x8F9A}, - {"GL_RGBA16_SNORM", 0x8F9B}, - {"GL_SIGNED_NORMALIZED", 0x8F9C}, - {"GL_PRIMITIVE_RESTART", 0x8F9D}, - {"GL_PRIMITIVE_RESTART_INDEX", 0x8F9E}, - {"GL_MAX_PROGRAM_TEXTURE_GATHER_COMPONENTS_ARB", 0x8F9F}, - {"GL_PERFMON_GLOBAL_MODE_QCOM", 0x8FA0}, - {"GL_BINNING_CONTROL_HINT_QCOM", 0x8FB0}, - {"GL_CPU_OPTIMIZED_QCOM", 0x8FB1}, - {"GL_GPU_OPTIMIZED_QCOM", 0x8FB2}, - {"GL_RENDER_DIRECT_TO_FRAMEBUFFER_QCOM", 0x8FB3}, - {"GL_GPU_DISJOINT_EXT", 0x8FBB}, - {"GL_SHADER_BINARY_VIV", 0x8FC4}, - {"GL_INT8_NV", 0x8FE0}, - {"GL_INT8_VEC2_NV", 0x8FE1}, - {"GL_INT8_VEC3_NV", 0x8FE2}, - {"GL_INT8_VEC4_NV", 0x8FE3}, - {"GL_INT16_NV", 0x8FE4}, - {"GL_INT16_VEC2_NV", 0x8FE5}, - {"GL_INT16_VEC3_NV", 0x8FE6}, - {"GL_INT16_VEC4_NV", 0x8FE7}, - {"GL_INT64_VEC2_NV", 0x8FE9}, - {"GL_INT64_VEC3_NV", 0x8FEA}, - {"GL_INT64_VEC4_NV", 0x8FEB}, - {"GL_UNSIGNED_INT8_NV", 0x8FEC}, - {"GL_UNSIGNED_INT8_VEC2_NV", 0x8FED}, - {"GL_UNSIGNED_INT8_VEC3_NV", 0x8FEE}, - {"GL_UNSIGNED_INT8_VEC4_NV", 0x8FEF}, - {"GL_UNSIGNED_INT16_NV", 0x8FF0}, - {"GL_UNSIGNED_INT16_VEC2_NV", 0x8FF1}, - {"GL_UNSIGNED_INT16_VEC3_NV", 0x8FF2}, - {"GL_UNSIGNED_INT16_VEC4_NV", 0x8FF3}, - {"GL_UNSIGNED_INT64_VEC2_NV", 0x8FF5}, - {"GL_UNSIGNED_INT64_VEC3_NV", 0x8FF6}, - {"GL_UNSIGNED_INT64_VEC4_NV", 0x8FF7}, - {"GL_FLOAT16_NV", 0x8FF8}, - {"GL_FLOAT16_VEC2_NV", 0x8FF9}, - {"GL_FLOAT16_VEC3_NV", 0x8FFA}, - {"GL_FLOAT16_VEC4_NV", 0x8FFB}, - {"GL_DOUBLE_VEC2", 0x8FFC}, - {"GL_DOUBLE_VEC2_EXT", 0x8FFC}, - {"GL_DOUBLE_VEC3", 0x8FFD}, - {"GL_DOUBLE_VEC3_EXT", 0x8FFD}, - {"GL_DOUBLE_VEC4", 0x8FFE}, - {"GL_DOUBLE_VEC4_EXT", 0x8FFE}, - {"GL_SAMPLER_BUFFER_AMD", 0x9001}, - {"GL_INT_SAMPLER_BUFFER_AMD", 0x9002}, - {"GL_UNSIGNED_INT_SAMPLER_BUFFER_AMD", 0x9003}, - {"GL_TESSELLATION_MODE_AMD", 0x9004}, - {"GL_TESSELLATION_FACTOR_AMD", 0x9005}, - {"GL_DISCRETE_AMD", 0x9006}, - {"GL_CONTINUOUS_AMD", 0x9007}, - {"GL_TEXTURE_CUBE_MAP_ARRAY", 0x9009}, - {"GL_TEXTURE_CUBE_MAP_ARRAY_ARB", 0x9009}, - {"GL_TEXTURE_BINDING_CUBE_MAP_ARRAY", 0x900A}, - {"GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_ARB", 0x900A}, - {"GL_PROXY_TEXTURE_CUBE_MAP_ARRAY", 0x900B}, - {"GL_PROXY_TEXTURE_CUBE_MAP_ARRAY_ARB", 0x900B}, - {"GL_SAMPLER_CUBE_MAP_ARRAY", 0x900C}, - {"GL_SAMPLER_CUBE_MAP_ARRAY_ARB", 0x900C}, - {"GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW", 0x900D}, - {"GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_ARB", 0x900D}, - {"GL_INT_SAMPLER_CUBE_MAP_ARRAY", 0x900E}, - {"GL_INT_SAMPLER_CUBE_MAP_ARRAY_ARB", 0x900E}, - {"GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY", 0x900F}, - {"GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_ARB", 0x900F}, - {"GL_ALPHA_SNORM", 0x9010}, - {"GL_LUMINANCE_SNORM", 0x9011}, - {"GL_LUMINANCE_ALPHA_SNORM", 0x9012}, - {"GL_INTENSITY_SNORM", 0x9013}, - {"GL_ALPHA8_SNORM", 0x9014}, - {"GL_LUMINANCE8_SNORM", 0x9015}, - {"GL_LUMINANCE8_ALPHA8_SNORM", 0x9016}, - {"GL_INTENSITY8_SNORM", 0x9017}, - {"GL_ALPHA16_SNORM", 0x9018}, - {"GL_LUMINANCE16_SNORM", 0x9019}, - {"GL_LUMINANCE16_ALPHA16_SNORM", 0x901A}, - {"GL_INTENSITY16_SNORM", 0x901B}, - {"GL_FACTOR_MIN_AMD", 0x901C}, - {"GL_FACTOR_MAX_AMD", 0x901D}, - {"GL_DEPTH_CLAMP_NEAR_AMD", 0x901E}, - {"GL_DEPTH_CLAMP_FAR_AMD", 0x901F}, - {"GL_VIDEO_BUFFER_NV", 0x9020}, - {"GL_VIDEO_BUFFER_BINDING_NV", 0x9021}, - {"GL_FIELD_UPPER_NV", 0x9022}, - {"GL_FIELD_LOWER_NV", 0x9023}, - {"GL_NUM_VIDEO_CAPTURE_STREAMS_NV", 0x9024}, - {"GL_NEXT_VIDEO_CAPTURE_BUFFER_STATUS_NV", 0x9025}, - {"GL_VIDEO_CAPTURE_TO_422_SUPPORTED_NV", 0x9026}, - {"GL_LAST_VIDEO_CAPTURE_STATUS_NV", 0x9027}, - {"GL_VIDEO_BUFFER_PITCH_NV", 0x9028}, - {"GL_VIDEO_COLOR_CONVERSION_MATRIX_NV", 0x9029}, - {"GL_VIDEO_COLOR_CONVERSION_MAX_NV", 0x902A}, - {"GL_VIDEO_COLOR_CONVERSION_MIN_NV", 0x902B}, - {"GL_VIDEO_COLOR_CONVERSION_OFFSET_NV", 0x902C}, - {"GL_VIDEO_BUFFER_INTERNAL_FORMAT_NV", 0x902D}, - {"GL_PARTIAL_SUCCESS_NV", 0x902E}, - {"GL_SUCCESS_NV", 0x902F}, - {"GL_FAILURE_NV", 0x9030}, - {"GL_YCBYCR8_422_NV", 0x9031}, - {"GL_YCBAYCR8A_4224_NV", 0x9032}, - {"GL_Z6Y10Z6CB10Z6Y10Z6CR10_422_NV", 0x9033}, - {"GL_Z6Y10Z6CB10Z6A10Z6Y10Z6CR10Z6A10_4224_NV", 0x9034}, - {"GL_Z4Y12Z4CB12Z4Y12Z4CR12_422_NV", 0x9035}, - {"GL_Z4Y12Z4CB12Z4A12Z4Y12Z4CR12Z4A12_4224_NV", 0x9036}, - {"GL_Z4Y12Z4CB12Z4CR12_444_NV", 0x9037}, - {"GL_VIDEO_CAPTURE_FRAME_WIDTH_NV", 0x9038}, - {"GL_VIDEO_CAPTURE_FRAME_HEIGHT_NV", 0x9039}, - {"GL_VIDEO_CAPTURE_FIELD_UPPER_HEIGHT_NV", 0x903A}, - {"GL_VIDEO_CAPTURE_FIELD_LOWER_HEIGHT_NV", 0x903B}, - {"GL_VIDEO_CAPTURE_SURFACE_ORIGIN_NV", 0x903C}, - {"GL_TEXTURE_COVERAGE_SAMPLES_NV", 0x9045}, - {"GL_TEXTURE_COLOR_SAMPLES_NV", 0x9046}, - {"GL_IMAGE_1D", 0x904C}, - {"GL_IMAGE_1D_EXT", 0x904C}, - {"GL_IMAGE_2D", 0x904D}, - {"GL_IMAGE_2D_EXT", 0x904D}, - {"GL_IMAGE_3D", 0x904E}, - {"GL_IMAGE_3D_EXT", 0x904E}, - {"GL_IMAGE_2D_RECT", 0x904F}, - {"GL_IMAGE_2D_RECT_EXT", 0x904F}, - {"GL_IMAGE_CUBE", 0x9050}, - {"GL_IMAGE_CUBE_EXT", 0x9050}, - {"GL_IMAGE_BUFFER", 0x9051}, - {"GL_IMAGE_BUFFER_EXT", 0x9051}, - {"GL_IMAGE_1D_ARRAY", 0x9052}, - {"GL_IMAGE_1D_ARRAY_EXT", 0x9052}, - {"GL_IMAGE_2D_ARRAY", 0x9053}, - {"GL_IMAGE_2D_ARRAY_EXT", 0x9053}, - {"GL_IMAGE_CUBE_MAP_ARRAY", 0x9054}, - {"GL_IMAGE_CUBE_MAP_ARRAY_EXT", 0x9054}, - {"GL_IMAGE_2D_MULTISAMPLE", 0x9055}, - {"GL_IMAGE_2D_MULTISAMPLE_EXT", 0x9055}, - {"GL_IMAGE_2D_MULTISAMPLE_ARRAY", 0x9056}, - {"GL_IMAGE_2D_MULTISAMPLE_ARRAY_EXT", 0x9056}, - {"GL_INT_IMAGE_1D", 0x9057}, - {"GL_INT_IMAGE_1D_EXT", 0x9057}, - {"GL_INT_IMAGE_2D", 0x9058}, - {"GL_INT_IMAGE_2D_EXT", 0x9058}, - {"GL_INT_IMAGE_3D", 0x9059}, - {"GL_INT_IMAGE_3D_EXT", 0x9059}, - {"GL_INT_IMAGE_2D_RECT", 0x905A}, - {"GL_INT_IMAGE_2D_RECT_EXT", 0x905A}, - {"GL_INT_IMAGE_CUBE", 0x905B}, - {"GL_INT_IMAGE_CUBE_EXT", 0x905B}, - {"GL_INT_IMAGE_BUFFER", 0x905C}, - {"GL_INT_IMAGE_BUFFER_EXT", 0x905C}, - {"GL_INT_IMAGE_1D_ARRAY", 0x905D}, - {"GL_INT_IMAGE_1D_ARRAY_EXT", 0x905D}, - {"GL_INT_IMAGE_2D_ARRAY", 0x905E}, - {"GL_INT_IMAGE_2D_ARRAY_EXT", 0x905E}, - {"GL_INT_IMAGE_CUBE_MAP_ARRAY", 0x905F}, - {"GL_INT_IMAGE_CUBE_MAP_ARRAY_EXT", 0x905F}, - {"GL_INT_IMAGE_2D_MULTISAMPLE", 0x9060}, - {"GL_INT_IMAGE_2D_MULTISAMPLE_EXT", 0x9060}, - {"GL_INT_IMAGE_2D_MULTISAMPLE_ARRAY", 0x9061}, - {"GL_INT_IMAGE_2D_MULTISAMPLE_ARRAY_EXT", 0x9061}, - {"GL_UNSIGNED_INT_IMAGE_1D", 0x9062}, - {"GL_UNSIGNED_INT_IMAGE_1D_EXT", 0x9062}, - {"GL_UNSIGNED_INT_IMAGE_2D", 0x9063}, - {"GL_UNSIGNED_INT_IMAGE_2D_EXT", 0x9063}, - {"GL_UNSIGNED_INT_IMAGE_3D", 0x9064}, - {"GL_UNSIGNED_INT_IMAGE_3D_EXT", 0x9064}, - {"GL_UNSIGNED_INT_IMAGE_2D_RECT", 0x9065}, - {"GL_UNSIGNED_INT_IMAGE_2D_RECT_EXT", 0x9065}, - {"GL_UNSIGNED_INT_IMAGE_CUBE", 0x9066}, - {"GL_UNSIGNED_INT_IMAGE_CUBE_EXT", 0x9066}, - {"GL_UNSIGNED_INT_IMAGE_BUFFER", 0x9067}, - {"GL_UNSIGNED_INT_IMAGE_BUFFER_EXT", 0x9067}, - {"GL_UNSIGNED_INT_IMAGE_1D_ARRAY", 0x9068}, - {"GL_UNSIGNED_INT_IMAGE_1D_ARRAY_EXT", 0x9068}, - {"GL_UNSIGNED_INT_IMAGE_2D_ARRAY", 0x9069}, - {"GL_UNSIGNED_INT_IMAGE_2D_ARRAY_EXT", 0x9069}, - {"GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY", 0x906A}, - {"GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY_EXT", 0x906A}, - {"GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE", 0x906B}, - {"GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_EXT", 0x906B}, - {"GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_ARRAY", 0x906C}, - {"GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_ARRAY_EXT", 0x906C}, - {"GL_MAX_IMAGE_SAMPLES", 0x906D}, - {"GL_MAX_IMAGE_SAMPLES_EXT", 0x906D}, - {"GL_IMAGE_BINDING_FORMAT", 0x906E}, - {"GL_IMAGE_BINDING_FORMAT_EXT", 0x906E}, - {"GL_RGB10_A2UI", 0x906F}, - {"GL_PATH_FORMAT_SVG_NV", 0x9070}, - {"GL_PATH_FORMAT_PS_NV", 0x9071}, - {"GL_STANDARD_FONT_NAME_NV", 0x9072}, - {"GL_SYSTEM_FONT_NAME_NV", 0x9073}, - {"GL_FILE_NAME_NV", 0x9074}, - {"GL_PATH_STROKE_WIDTH_NV", 0x9075}, - {"GL_PATH_END_CAPS_NV", 0x9076}, - {"GL_PATH_INITIAL_END_CAP_NV", 0x9077}, - {"GL_PATH_TERMINAL_END_CAP_NV", 0x9078}, - {"GL_PATH_JOIN_STYLE_NV", 0x9079}, - {"GL_PATH_MITER_LIMIT_NV", 0x907A}, - {"GL_PATH_DASH_CAPS_NV", 0x907B}, - {"GL_PATH_INITIAL_DASH_CAP_NV", 0x907C}, - {"GL_PATH_TERMINAL_DASH_CAP_NV", 0x907D}, - {"GL_PATH_DASH_OFFSET_NV", 0x907E}, - {"GL_PATH_CLIENT_LENGTH_NV", 0x907F}, - {"GL_PATH_FILL_MODE_NV", 0x9080}, - {"GL_PATH_FILL_MASK_NV", 0x9081}, - {"GL_PATH_FILL_COVER_MODE_NV", 0x9082}, - {"GL_PATH_STROKE_COVER_MODE_NV", 0x9083}, - {"GL_PATH_STROKE_MASK_NV", 0x9084}, - {"GL_COUNT_UP_NV", 0x9088}, - {"GL_COUNT_DOWN_NV", 0x9089}, - {"GL_PATH_OBJECT_BOUNDING_BOX_NV", 0x908A}, - {"GL_CONVEX_HULL_NV", 0x908B}, - {"GL_BOUNDING_BOX_NV", 0x908D}, - {"GL_TRANSLATE_X_NV", 0x908E}, - {"GL_TRANSLATE_Y_NV", 0x908F}, - {"GL_TRANSLATE_2D_NV", 0x9090}, - {"GL_TRANSLATE_3D_NV", 0x9091}, - {"GL_AFFINE_2D_NV", 0x9092}, - {"GL_AFFINE_3D_NV", 0x9094}, - {"GL_TRANSPOSE_AFFINE_2D_NV", 0x9096}, - {"GL_TRANSPOSE_AFFINE_3D_NV", 0x9098}, - {"GL_UTF8_NV", 0x909A}, - {"GL_UTF16_NV", 0x909B}, - {"GL_BOUNDING_BOX_OF_BOUNDING_BOXES_NV", 0x909C}, - {"GL_PATH_COMMAND_COUNT_NV", 0x909D}, - {"GL_PATH_COORD_COUNT_NV", 0x909E}, - {"GL_PATH_DASH_ARRAY_COUNT_NV", 0x909F}, - {"GL_PATH_COMPUTED_LENGTH_NV", 0x90A0}, - {"GL_PATH_FILL_BOUNDING_BOX_NV", 0x90A1}, - {"GL_PATH_STROKE_BOUNDING_BOX_NV", 0x90A2}, - {"GL_SQUARE_NV", 0x90A3}, - {"GL_ROUND_NV", 0x90A4}, - {"GL_TRIANGULAR_NV", 0x90A5}, - {"GL_BEVEL_NV", 0x90A6}, - {"GL_MITER_REVERT_NV", 0x90A7}, - {"GL_MITER_TRUNCATE_NV", 0x90A8}, - {"GL_SKIP_MISSING_GLYPH_NV", 0x90A9}, - {"GL_USE_MISSING_GLYPH_NV", 0x90AA}, - {"GL_PATH_ERROR_POSITION_NV", 0x90AB}, - {"GL_PATH_FOG_GEN_MODE_NV", 0x90AC}, - {"GL_ACCUM_ADJACENT_PAIRS_NV", 0x90AD}, - {"GL_ADJACENT_PAIRS_NV", 0x90AE}, - {"GL_FIRST_TO_REST_NV", 0x90AF}, - {"GL_PATH_GEN_MODE_NV", 0x90B0}, - {"GL_PATH_GEN_COEFF_NV", 0x90B1}, - {"GL_PATH_GEN_COLOR_FORMAT_NV", 0x90B2}, - {"GL_PATH_GEN_COMPONENTS_NV", 0x90B3}, - {"GL_PATH_DASH_OFFSET_RESET_NV", 0x90B4}, - {"GL_MOVE_TO_RESETS_NV", 0x90B5}, - {"GL_MOVE_TO_CONTINUES_NV", 0x90B6}, - {"GL_PATH_STENCIL_FUNC_NV", 0x90B7}, - {"GL_PATH_STENCIL_REF_NV", 0x90B8}, - {"GL_PATH_STENCIL_VALUE_MASK_NV", 0x90B9}, - {"GL_SCALED_RESOLVE_FASTEST_EXT", 0x90BA}, - {"GL_SCALED_RESOLVE_NICEST_EXT", 0x90BB}, - {"GL_MIN_MAP_BUFFER_ALIGNMENT", 0x90BC}, - {"GL_PATH_STENCIL_DEPTH_OFFSET_FACTOR_NV", 0x90BD}, - {"GL_PATH_STENCIL_DEPTH_OFFSET_UNITS_NV", 0x90BE}, - {"GL_PATH_COVER_DEPTH_FUNC_NV", 0x90BF}, - {"GL_IMAGE_FORMAT_COMPATIBILITY_TYPE", 0x90C7}, - {"GL_IMAGE_FORMAT_COMPATIBILITY_BY_SIZE", 0x90C8}, - {"GL_IMAGE_FORMAT_COMPATIBILITY_BY_CLASS", 0x90C9}, - {"GL_MAX_VERTEX_IMAGE_UNIFORMS", 0x90CA}, - {"GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS", 0x90CB}, - {"GL_MAX_TESS_EVALUATION_IMAGE_UNIFORMS", 0x90CC}, - {"GL_MAX_GEOMETRY_IMAGE_UNIFORMS", 0x90CD}, - {"GL_MAX_FRAGMENT_IMAGE_UNIFORMS", 0x90CE}, - {"GL_MAX_COMBINED_IMAGE_UNIFORMS", 0x90CF}, - {"GL_MAX_DEEP_3D_TEXTURE_WIDTH_HEIGHT_NV", 0x90D0}, - {"GL_MAX_DEEP_3D_TEXTURE_DEPTH_NV", 0x90D1}, - {"GL_SHADER_STORAGE_BUFFER", 0x90D2}, - {"GL_SHADER_STORAGE_BUFFER_BINDING", 0x90D3}, - {"GL_SHADER_STORAGE_BUFFER_START", 0x90D4}, - {"GL_SHADER_STORAGE_BUFFER_SIZE", 0x90D5}, - {"GL_MAX_VERTEX_SHADER_STORAGE_BLOCKS", 0x90D6}, - {"GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS", 0x90D7}, - {"GL_MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS", 0x90D8}, - {"GL_MAX_TESS_EVALUATION_SHADER_STORAGE_BLOCKS", 0x90D9}, - {"GL_MAX_FRAGMENT_SHADER_STORAGE_BLOCKS", 0x90DA}, - {"GL_MAX_COMPUTE_SHADER_STORAGE_BLOCKS", 0x90DB}, - {"GL_MAX_COMBINED_SHADER_STORAGE_BLOCKS", 0x90DC}, - {"GL_MAX_SHADER_STORAGE_BUFFER_BINDINGS", 0x90DD}, - {"GL_MAX_SHADER_STORAGE_BLOCK_SIZE", 0x90DE}, - {"GL_SHADER_STORAGE_BUFFER_OFFSET_ALIGNMENT", 0x90DF}, - {"GL_SYNC_X11_FENCE_EXT", 0x90E1}, - {"GL_DEPTH_STENCIL_TEXTURE_MODE", 0x90EA}, - {"GL_MAX_COMPUTE_FIXED_GROUP_INVOCATIONS_ARB", 0x90EB}, - {"GL_MAX_COMPUTE_LOCAL_INVOCATIONS", 0x90EB}, - {"GL_UNIFORM_BLOCK_REFERENCED_BY_COMPUTE_SHADER", 0x90EC}, - {"GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_COMPUTE_SHADER", 0x90ED}, - {"GL_DISPATCH_INDIRECT_BUFFER", 0x90EE}, - {"GL_DISPATCH_INDIRECT_BUFFER_BINDING", 0x90EF}, - {"GL_COLOR_ATTACHMENT_EXT", 0x90F0}, - {"GL_MULTIVIEW_EXT", 0x90F1}, - {"GL_MAX_MULTIVIEW_BUFFERS_EXT", 0x90F2}, - {"GL_COMPUTE_PROGRAM_NV", 0x90FB}, - {"GL_COMPUTE_PROGRAM_PARAMETER_BUFFER_NV", 0x90FC}, - {"GL_TEXTURE_2D_MULTISAMPLE", 0x9100}, - {"GL_PROXY_TEXTURE_2D_MULTISAMPLE", 0x9101}, - {"GL_TEXTURE_2D_MULTISAMPLE_ARRAY", 0x9102}, - {"GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY", 0x9103}, - {"GL_TEXTURE_BINDING_2D_MULTISAMPLE", 0x9104}, - {"GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY", 0x9105}, - {"GL_TEXTURE_SAMPLES", 0x9106}, - {"GL_TEXTURE_FIXED_SAMPLE_LOCATIONS", 0x9107}, - {"GL_SAMPLER_2D_MULTISAMPLE", 0x9108}, - {"GL_INT_SAMPLER_2D_MULTISAMPLE", 0x9109}, - {"GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE", 0x910A}, - {"GL_SAMPLER_2D_MULTISAMPLE_ARRAY", 0x910B}, - {"GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY", 0x910C}, - {"GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY", 0x910D}, - {"GL_MAX_COLOR_TEXTURE_SAMPLES", 0x910E}, - {"GL_MAX_DEPTH_TEXTURE_SAMPLES", 0x910F}, - {"GL_MAX_INTEGER_SAMPLES", 0x9110}, - {"GL_MAX_SERVER_WAIT_TIMEOUT", 0x9111}, - {"GL_MAX_SERVER_WAIT_TIMEOUT_APPLE", 0x9111}, - {"GL_OBJECT_TYPE", 0x9112}, - {"GL_OBJECT_TYPE_APPLE", 0x9112}, - {"GL_SYNC_CONDITION", 0x9113}, - {"GL_SYNC_CONDITION_APPLE", 0x9113}, - {"GL_SYNC_STATUS", 0x9114}, - {"GL_SYNC_STATUS_APPLE", 0x9114}, - {"GL_SYNC_FLAGS", 0x9115}, - {"GL_SYNC_FLAGS_APPLE", 0x9115}, - {"GL_SYNC_FENCE", 0x9116}, - {"GL_SYNC_FENCE_APPLE", 0x9116}, - {"GL_SYNC_GPU_COMMANDS_COMPLETE", 0x9117}, - {"GL_SYNC_GPU_COMMANDS_COMPLETE_APPLE", 0x9117}, - {"GL_UNSIGNALED", 0x9118}, - {"GL_UNSIGNALED_APPLE", 0x9118}, - {"GL_SIGNALED", 0x9119}, - {"GL_SIGNALED_APPLE", 0x9119}, - {"GL_ALREADY_SIGNALED", 0x911A}, - {"GL_ALREADY_SIGNALED_APPLE", 0x911A}, - {"GL_TIMEOUT_EXPIRED", 0x911B}, - {"GL_TIMEOUT_EXPIRED_APPLE", 0x911B}, - {"GL_CONDITION_SATISFIED", 0x911C}, - {"GL_CONDITION_SATISFIED_APPLE", 0x911C}, - {"GL_WAIT_FAILED", 0x911D}, - {"GL_WAIT_FAILED_APPLE", 0x911D}, - {"GL_BUFFER_ACCESS_FLAGS", 0x911F}, - {"GL_BUFFER_MAP_LENGTH", 0x9120}, - {"GL_BUFFER_MAP_OFFSET", 0x9121}, - {"GL_MAX_VERTEX_OUTPUT_COMPONENTS", 0x9122}, - {"GL_MAX_GEOMETRY_INPUT_COMPONENTS", 0x9123}, - {"GL_MAX_GEOMETRY_OUTPUT_COMPONENTS", 0x9124}, - {"GL_MAX_FRAGMENT_INPUT_COMPONENTS", 0x9125}, - {"GL_CONTEXT_PROFILE_MASK", 0x9126}, - {"GL_UNPACK_COMPRESSED_BLOCK_WIDTH", 0x9127}, - {"GL_UNPACK_COMPRESSED_BLOCK_HEIGHT", 0x9128}, - {"GL_UNPACK_COMPRESSED_BLOCK_DEPTH", 0x9129}, - {"GL_UNPACK_COMPRESSED_BLOCK_SIZE", 0x912A}, - {"GL_PACK_COMPRESSED_BLOCK_WIDTH", 0x912B}, - {"GL_PACK_COMPRESSED_BLOCK_HEIGHT", 0x912C}, - {"GL_PACK_COMPRESSED_BLOCK_DEPTH", 0x912D}, - {"GL_PACK_COMPRESSED_BLOCK_SIZE", 0x912E}, - {"GL_TEXTURE_IMMUTABLE_FORMAT", 0x912F}, - {"GL_SGX_PROGRAM_BINARY_IMG", 0x9130}, - {"GL_RENDERBUFFER_SAMPLES_IMG", 0x9133}, - {"GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_IMG", 0x9134}, - {"GL_MAX_SAMPLES_IMG", 0x9135}, - {"GL_TEXTURE_SAMPLES_IMG", 0x9136}, - {"GL_COMPRESSED_RGBA_PVRTC_2BPPV2_IMG", 0x9137}, - {"GL_COMPRESSED_RGBA_PVRTC_4BPPV2_IMG", 0x9138}, - {"GL_MAX_DEBUG_MESSAGE_LENGTH", 0x9143}, - {"GL_MAX_DEBUG_MESSAGE_LENGTH_AMD", 0x9143}, - {"GL_MAX_DEBUG_MESSAGE_LENGTH_ARB", 0x9143}, - {"GL_MAX_DEBUG_MESSAGE_LENGTH_KHR", 0x9143}, - {"GL_MAX_DEBUG_LOGGED_MESSAGES", 0x9144}, - {"GL_MAX_DEBUG_LOGGED_MESSAGES_AMD", 0x9144}, - {"GL_MAX_DEBUG_LOGGED_MESSAGES_ARB", 0x9144}, - {"GL_MAX_DEBUG_LOGGED_MESSAGES_KHR", 0x9144}, - {"GL_DEBUG_LOGGED_MESSAGES", 0x9145}, - {"GL_DEBUG_LOGGED_MESSAGES_AMD", 0x9145}, - {"GL_DEBUG_LOGGED_MESSAGES_ARB", 0x9145}, - {"GL_DEBUG_LOGGED_MESSAGES_KHR", 0x9145}, - {"GL_DEBUG_SEVERITY_HIGH", 0x9146}, - {"GL_DEBUG_SEVERITY_HIGH_AMD", 0x9146}, - {"GL_DEBUG_SEVERITY_HIGH_ARB", 0x9146}, - {"GL_DEBUG_SEVERITY_HIGH_KHR", 0x9146}, - {"GL_DEBUG_SEVERITY_MEDIUM", 0x9147}, - {"GL_DEBUG_SEVERITY_MEDIUM_AMD", 0x9147}, - {"GL_DEBUG_SEVERITY_MEDIUM_ARB", 0x9147}, - {"GL_DEBUG_SEVERITY_MEDIUM_KHR", 0x9147}, - {"GL_DEBUG_SEVERITY_LOW", 0x9148}, - {"GL_DEBUG_SEVERITY_LOW_AMD", 0x9148}, - {"GL_DEBUG_SEVERITY_LOW_ARB", 0x9148}, - {"GL_DEBUG_SEVERITY_LOW_KHR", 0x9148}, - {"GL_DEBUG_CATEGORY_API_ERROR_AMD", 0x9149}, - {"GL_DEBUG_CATEGORY_WINDOW_SYSTEM_AMD", 0x914A}, - {"GL_DEBUG_CATEGORY_DEPRECATION_AMD", 0x914B}, - {"GL_DEBUG_CATEGORY_UNDEFINED_BEHAVIOR_AMD", 0x914C}, - {"GL_DEBUG_CATEGORY_PERFORMANCE_AMD", 0x914D}, - {"GL_DEBUG_CATEGORY_SHADER_COMPILER_AMD", 0x914E}, - {"GL_DEBUG_CATEGORY_APPLICATION_AMD", 0x914F}, - {"GL_DEBUG_CATEGORY_OTHER_AMD", 0x9150}, - {"GL_BUFFER_OBJECT_EXT", 0x9151}, - {"GL_DATA_BUFFER_AMD", 0x9151}, - {"GL_PERFORMANCE_MONITOR_AMD", 0x9152}, - {"GL_QUERY_OBJECT_AMD", 0x9153}, - {"GL_QUERY_OBJECT_EXT", 0x9153}, - {"GL_VERTEX_ARRAY_OBJECT_AMD", 0x9154}, - {"GL_VERTEX_ARRAY_OBJECT_EXT", 0x9154}, - {"GL_SAMPLER_OBJECT_AMD", 0x9155}, - {"GL_EXTERNAL_VIRTUAL_MEMORY_BUFFER_AMD", 0x9160}, - {"GL_QUERY_BUFFER", 0x9192}, - {"GL_QUERY_BUFFER_AMD", 0x9192}, - {"GL_QUERY_BUFFER_BINDING", 0x9193}, - {"GL_QUERY_BUFFER_BINDING_AMD", 0x9193}, - {"GL_QUERY_RESULT_NO_WAIT", 0x9194}, - {"GL_QUERY_RESULT_NO_WAIT_AMD", 0x9194}, - {"GL_VIRTUAL_PAGE_SIZE_X_ARB", 0x9195}, - {"GL_VIRTUAL_PAGE_SIZE_X_AMD", 0x9195}, - {"GL_VIRTUAL_PAGE_SIZE_Y_ARB", 0x9196}, - {"GL_VIRTUAL_PAGE_SIZE_Y_AMD", 0x9196}, - {"GL_VIRTUAL_PAGE_SIZE_Z_ARB", 0x9197}, - {"GL_VIRTUAL_PAGE_SIZE_Z_AMD", 0x9197}, - {"GL_MAX_SPARSE_TEXTURE_SIZE_ARB", 0x9198}, - {"GL_MAX_SPARSE_TEXTURE_SIZE_AMD", 0x9198}, - {"GL_MAX_SPARSE_3D_TEXTURE_SIZE_ARB", 0x9199}, - {"GL_MAX_SPARSE_3D_TEXTURE_SIZE_AMD", 0x9199}, - {"GL_MAX_SPARSE_ARRAY_TEXTURE_LAYERS_ARB", 0x919A}, - {"GL_MAX_SPARSE_ARRAY_TEXTURE_LAYERS", 0x919A}, - {"GL_MIN_SPARSE_LEVEL_ARB", 0x919B}, - {"GL_MIN_SPARSE_LEVEL_AMD", 0x919B}, - {"GL_MIN_LOD_WARNING_AMD", 0x919C}, - {"GL_TEXTURE_BUFFER_OFFSET", 0x919D}, - {"GL_TEXTURE_BUFFER_SIZE", 0x919E}, - {"GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT", 0x919F}, - {"GL_VERTEX_ELEMENT_SWIZZLE_AMD", 0x91A4}, - {"GL_VERTEX_ID_SWIZZLE_AMD", 0x91A5}, - {"GL_TEXTURE_SPARSE_ARB", 0x91A6}, - {"GL_VIRTUAL_PAGE_SIZE_INDEX_ARB", 0x91A7}, - {"GL_NUM_VIRTUAL_PAGE_SIZES_ARB", 0x91A8}, - {"GL_SPARSE_TEXTURE_FULL_ARRAY_CUBE_MIPMAPS_ARB", 0x91A9}, - {"GL_COMPUTE_SHADER", 0x91B9}, - {"GL_MAX_COMPUTE_UNIFORM_BLOCKS", 0x91BB}, - {"GL_MAX_COMPUTE_TEXTURE_IMAGE_UNITS", 0x91BC}, - {"GL_MAX_COMPUTE_IMAGE_UNIFORMS", 0x91BD}, - {"GL_MAX_COMPUTE_WORK_GROUP_COUNT", 0x91BE}, - {"GL_MAX_COMPUTE_FIXED_GROUP_SIZE_ARB", 0x91BF}, - {"GL_MAX_COMPUTE_WORK_GROUP_SIZE", 0x91BF}, - {"GL_UNPACK_FLIP_Y_WEBGL", 0x9240}, - {"GL_UNPACK_PREMULTIPLY_ALPHA_WEBGL", 0x9241}, - {"GL_CONTEXT_LOST_WEBGL", 0x9242}, - {"GL_UNPACK_COLORSPACE_CONVERSION_WEBGL", 0x9243}, - {"GL_BROWSER_DEFAULT_WEBGL", 0x9244}, - {"GL_SHADER_BINARY_DMP", 0x9250}, - {"GL_GCCSO_SHADER_BINARY_FJ", 0x9260}, - {"GL_COMPRESSED_R11_EAC", 0x9270}, - {"GL_COMPRESSED_R11_EAC_OES", 0x9270}, - {"GL_COMPRESSED_SIGNED_R11_EAC", 0x9271}, - {"GL_COMPRESSED_SIGNED_R11_EAC_OES", 0x9271}, - {"GL_COMPRESSED_RG11_EAC", 0x9272}, - {"GL_COMPRESSED_RG11_EAC_OES", 0x9272}, - {"GL_COMPRESSED_SIGNED_RG11_EAC", 0x9273}, - {"GL_COMPRESSED_SIGNED_RG11_EAC_OES", 0x9273}, - {"GL_COMPRESSED_RGB8_ETC2", 0x9274}, - {"GL_COMPRESSED_RGB8_ETC2_OES", 0x9274}, - {"GL_COMPRESSED_SRGB8_ETC2", 0x9275}, - {"GL_COMPRESSED_SRGB8_ETC2_OES", 0x9275}, - {"GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2", 0x9276}, - {"GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2_OES", 0x9276}, - {"GL_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2", 0x9277}, - {"GL_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2_OES", 0x9277}, - {"GL_COMPRESSED_RGBA8_ETC2_EAC", 0x9278}, - {"GL_COMPRESSED_RGBA8_ETC2_EAC_OES", 0x9278}, - {"GL_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC", 0x9279}, - {"GL_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC_OES", 0x9279}, - {"GL_BLEND_PREMULTIPLIED_SRC_NV", 0x9280}, - {"GL_BLEND_OVERLAP_NV", 0x9281}, - {"GL_UNCORRELATED_NV", 0x9282}, - {"GL_DISJOINT_NV", 0x9283}, - {"GL_CONJOINT_NV", 0x9284}, - {"GL_BLEND_ADVANCED_COHERENT_NV", 0x9285}, - {"GL_SRC_NV", 0x9286}, - {"GL_DST_NV", 0x9287}, - {"GL_SRC_OVER_NV", 0x9288}, - {"GL_DST_OVER_NV", 0x9289}, - {"GL_SRC_IN_NV", 0x928A}, - {"GL_DST_IN_NV", 0x928B}, - {"GL_SRC_OUT_NV", 0x928C}, - {"GL_DST_OUT_NV", 0x928D}, - {"GL_SRC_ATOP_NV", 0x928E}, - {"GL_DST_ATOP_NV", 0x928F}, - {"GL_PLUS_NV", 0x9291}, - {"GL_PLUS_DARKER_NV", 0x9292}, - {"GL_MULTIPLY_NV", 0x9294}, - {"GL_SCREEN_NV", 0x9295}, - {"GL_OVERLAY_NV", 0x9296}, - {"GL_DARKEN_NV", 0x9297}, - {"GL_LIGHTEN_NV", 0x9298}, - {"GL_COLORDODGE_NV", 0x9299}, - {"GL_COLORBURN_NV", 0x929A}, - {"GL_HARDLIGHT_NV", 0x929B}, - {"GL_SOFTLIGHT_NV", 0x929C}, - {"GL_DIFFERENCE_NV", 0x929E}, - {"GL_MINUS_NV", 0x929F}, - {"GL_EXCLUSION_NV", 0x92A0}, - {"GL_CONTRAST_NV", 0x92A1}, - {"GL_INVERT_RGB_NV", 0x92A3}, - {"GL_LINEARDODGE_NV", 0x92A4}, - {"GL_LINEARBURN_NV", 0x92A5}, - {"GL_VIVIDLIGHT_NV", 0x92A6}, - {"GL_LINEARLIGHT_NV", 0x92A7}, - {"GL_PINLIGHT_NV", 0x92A8}, - {"GL_HARDMIX_NV", 0x92A9}, - {"GL_HSL_HUE_NV", 0x92AD}, - {"GL_HSL_SATURATION_NV", 0x92AE}, - {"GL_HSL_COLOR_NV", 0x92AF}, - {"GL_HSL_LUMINOSITY_NV", 0x92B0}, - {"GL_PLUS_CLAMPED_NV", 0x92B1}, - {"GL_PLUS_CLAMPED_ALPHA_NV", 0x92B2}, - {"GL_MINUS_CLAMPED_NV", 0x92B3}, - {"GL_INVERT_OVG_NV", 0x92B4}, - {"GL_ATOMIC_COUNTER_BUFFER", 0x92C0}, - {"GL_ATOMIC_COUNTER_BUFFER_BINDING", 0x92C1}, - {"GL_ATOMIC_COUNTER_BUFFER_START", 0x92C2}, - {"GL_ATOMIC_COUNTER_BUFFER_SIZE", 0x92C3}, - {"GL_ATOMIC_COUNTER_BUFFER_DATA_SIZE", 0x92C4}, - {"GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTERS", 0x92C5}, - {"GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTER_INDICES", 0x92C6}, - {"GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_VERTEX_SHADER", 0x92C7}, - {"GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_CONTROL_SHADER", 0x92C8}, - {"GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_EVALUATION_SHADER", 0x92C9}, - {"GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_GEOMETRY_SHADER", 0x92CA}, - {"GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_FRAGMENT_SHADER", 0x92CB}, - {"GL_MAX_VERTEX_ATOMIC_COUNTER_BUFFERS", 0x92CC}, - {"GL_MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS", 0x92CD}, - {"GL_MAX_TESS_EVALUATION_ATOMIC_COUNTER_BUFFERS", 0x92CE}, - {"GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS", 0x92CF}, - {"GL_MAX_FRAGMENT_ATOMIC_COUNTER_BUFFERS", 0x92D0}, - {"GL_MAX_COMBINED_ATOMIC_COUNTER_BUFFERS", 0x92D1}, - {"GL_MAX_VERTEX_ATOMIC_COUNTERS", 0x92D2}, - {"GL_MAX_TESS_CONTROL_ATOMIC_COUNTERS", 0x92D3}, - {"GL_MAX_TESS_EVALUATION_ATOMIC_COUNTERS", 0x92D4}, - {"GL_MAX_GEOMETRY_ATOMIC_COUNTERS", 0x92D5}, - {"GL_MAX_FRAGMENT_ATOMIC_COUNTERS", 0x92D6}, - {"GL_MAX_COMBINED_ATOMIC_COUNTERS", 0x92D7}, - {"GL_MAX_ATOMIC_COUNTER_BUFFER_SIZE", 0x92D8}, - {"GL_ACTIVE_ATOMIC_COUNTER_BUFFERS", 0x92D9}, - {"GL_UNIFORM_ATOMIC_COUNTER_BUFFER_INDEX", 0x92DA}, - {"GL_UNSIGNED_INT_ATOMIC_COUNTER", 0x92DB}, - {"GL_MAX_ATOMIC_COUNTER_BUFFER_BINDINGS", 0x92DC}, - {"GL_DEBUG_OUTPUT", 0x92E0}, - {"GL_DEBUG_OUTPUT_KHR", 0x92E0}, - {"GL_UNIFORM", 0x92E1}, - {"GL_UNIFORM_BLOCK", 0x92E2}, - {"GL_PROGRAM_INPUT", 0x92E3}, - {"GL_PROGRAM_OUTPUT", 0x92E4}, - {"GL_BUFFER_VARIABLE", 0x92E5}, - {"GL_SHADER_STORAGE_BLOCK", 0x92E6}, - {"GL_IS_PER_PATCH", 0x92E7}, - {"GL_VERTEX_SUBROUTINE", 0x92E8}, - {"GL_TESS_CONTROL_SUBROUTINE", 0x92E9}, - {"GL_TESS_EVALUATION_SUBROUTINE", 0x92EA}, - {"GL_GEOMETRY_SUBROUTINE", 0x92EB}, - {"GL_FRAGMENT_SUBROUTINE", 0x92EC}, - {"GL_COMPUTE_SUBROUTINE", 0x92ED}, - {"GL_VERTEX_SUBROUTINE_UNIFORM", 0x92EE}, - {"GL_TESS_CONTROL_SUBROUTINE_UNIFORM", 0x92EF}, - {"GL_TESS_EVALUATION_SUBROUTINE_UNIFORM", 0x92F0}, - {"GL_GEOMETRY_SUBROUTINE_UNIFORM", 0x92F1}, - {"GL_FRAGMENT_SUBROUTINE_UNIFORM", 0x92F2}, - {"GL_COMPUTE_SUBROUTINE_UNIFORM", 0x92F3}, - {"GL_TRANSFORM_FEEDBACK_VARYING", 0x92F4}, - {"GL_ACTIVE_RESOURCES", 0x92F5}, - {"GL_MAX_NAME_LENGTH", 0x92F6}, - {"GL_MAX_NUM_ACTIVE_VARIABLES", 0x92F7}, - {"GL_MAX_NUM_COMPATIBLE_SUBROUTINES", 0x92F8}, - {"GL_NAME_LENGTH", 0x92F9}, - {"GL_TYPE", 0x92FA}, - {"GL_ARRAY_SIZE", 0x92FB}, - {"GL_OFFSET", 0x92FC}, - {"GL_BLOCK_INDEX", 0x92FD}, - {"GL_ARRAY_STRIDE", 0x92FE}, - {"GL_MATRIX_STRIDE", 0x92FF}, - {"GL_IS_ROW_MAJOR", 0x9300}, - {"GL_ATOMIC_COUNTER_BUFFER_INDEX", 0x9301}, - {"GL_BUFFER_BINDING", 0x9302}, - {"GL_BUFFER_DATA_SIZE", 0x9303}, - {"GL_NUM_ACTIVE_VARIABLES", 0x9304}, - {"GL_ACTIVE_VARIABLES", 0x9305}, - {"GL_REFERENCED_BY_VERTEX_SHADER", 0x9306}, - {"GL_REFERENCED_BY_TESS_CONTROL_SHADER", 0x9307}, - {"GL_REFERENCED_BY_TESS_EVALUATION_SHADER", 0x9308}, - {"GL_REFERENCED_BY_GEOMETRY_SHADER", 0x9309}, - {"GL_REFERENCED_BY_FRAGMENT_SHADER", 0x930A}, - {"GL_REFERENCED_BY_COMPUTE_SHADER", 0x930B}, - {"GL_TOP_LEVEL_ARRAY_SIZE", 0x930C}, - {"GL_TOP_LEVEL_ARRAY_STRIDE", 0x930D}, - {"GL_LOCATION", 0x930E}, - {"GL_LOCATION_INDEX", 0x930F}, - {"GL_FRAMEBUFFER_DEFAULT_WIDTH", 0x9310}, - {"GL_FRAMEBUFFER_DEFAULT_HEIGHT", 0x9311}, - {"GL_FRAMEBUFFER_DEFAULT_LAYERS", 0x9312}, - {"GL_FRAMEBUFFER_DEFAULT_SAMPLES", 0x9313}, - {"GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS", 0x9314}, - {"GL_MAX_FRAMEBUFFER_WIDTH", 0x9315}, - {"GL_MAX_FRAMEBUFFER_HEIGHT", 0x9316}, - {"GL_MAX_FRAMEBUFFER_LAYERS", 0x9317}, - {"GL_MAX_FRAMEBUFFER_SAMPLES", 0x9318}, - {"GL_MAX_COMPUTE_VARIABLE_GROUP_INVOCATIONS_ARB", 0x9344}, - {"GL_MAX_COMPUTE_VARIABLE_GROUP_SIZE_ARB", 0x9345}, - {"GL_LOCATION_COMPONENT", 0x934A}, - {"GL_TRANSFORM_FEEDBACK_BUFFER_INDEX", 0x934B}, - {"GL_TRANSFORM_FEEDBACK_BUFFER_STRIDE", 0x934C}, - {"GL_CLEAR_TEXTURE", 0x9365}, - {"GL_NUM_SAMPLE_COUNTS", 0x9380}, - {"GL_TRANSLATED_SHADER_SOURCE_LENGTH_ANGLE", 0x93A0}, - {"GL_TEXTURE_USAGE_ANGLE", 0x93A2}, - {"GL_FRAMEBUFFER_ATTACHMENT_ANGLE", 0x93A3}, - {"GL_PACK_REVERSE_ROW_ORDER_ANGLE", 0x93A4}, - {"GL_PROGRAM_BINARY_ANGLE", 0x93A6}, - {"GL_COMPRESSED_RGBA_ASTC_4x4_KHR", 0x93B0}, - {"GL_COMPRESSED_RGBA_ASTC_5x4_KHR", 0x93B1}, - {"GL_COMPRESSED_RGBA_ASTC_5x5_KHR", 0x93B2}, - {"GL_COMPRESSED_RGBA_ASTC_6x5_KHR", 0x93B3}, - {"GL_COMPRESSED_RGBA_ASTC_6x6_KHR", 0x93B4}, - {"GL_COMPRESSED_RGBA_ASTC_8x5_KHR", 0x93B5}, - {"GL_COMPRESSED_RGBA_ASTC_8x6_KHR", 0x93B6}, - {"GL_COMPRESSED_RGBA_ASTC_8x8_KHR", 0x93B7}, - {"GL_COMPRESSED_RGBA_ASTC_10x5_KHR", 0x93B8}, - {"GL_COMPRESSED_RGBA_ASTC_10x6_KHR", 0x93B9}, - {"GL_COMPRESSED_RGBA_ASTC_10x8_KHR", 0x93BA}, - {"GL_COMPRESSED_RGBA_ASTC_10x10_KHR", 0x93BB}, - {"GL_COMPRESSED_RGBA_ASTC_12x10_KHR", 0x93BC}, - {"GL_COMPRESSED_RGBA_ASTC_12x12_KHR", 0x93BD}, - {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR", 0x93D0}, - {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR", 0x93D1}, - {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR", 0x93D2}, - {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR", 0x93D3}, - {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR", 0x93D4}, - {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR", 0x93D5}, - {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR", 0x93D6}, - {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR", 0x93D7}, - {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR", 0x93D8}, - {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR", 0x93D9}, - {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR", 0x93DA}, - {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR", 0x93DB}, - {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR", 0x93DC}, - {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR", 0x93DD}, - {"GL_RASTER_POSITION_UNCLIPPED_IBM", 0x19262}, - {"GL_CULL_VERTEX_IBM", 103050}, - {"GL_ALL_STATIC_DATA_IBM", 103060}, - {"GL_STATIC_VERTEX_ARRAY_IBM", 103061}, - {"GL_VERTEX_ARRAY_LIST_IBM", 103070}, - {"GL_NORMAL_ARRAY_LIST_IBM", 103071}, - {"GL_COLOR_ARRAY_LIST_IBM", 103072}, - {"GL_INDEX_ARRAY_LIST_IBM", 103073}, - {"GL_TEXTURE_COORD_ARRAY_LIST_IBM", 103074}, - {"GL_EDGE_FLAG_ARRAY_LIST_IBM", 103075}, - {"GL_FOG_COORDINATE_ARRAY_LIST_IBM", 103076}, - {"GL_SECONDARY_COLOR_ARRAY_LIST_IBM", 103077}, - {"GL_VERTEX_ARRAY_LIST_STRIDE_IBM", 103080}, - {"GL_NORMAL_ARRAY_LIST_STRIDE_IBM", 103081}, - {"GL_COLOR_ARRAY_LIST_STRIDE_IBM", 103082}, - {"GL_INDEX_ARRAY_LIST_STRIDE_IBM", 103083}, - {"GL_TEXTURE_COORD_ARRAY_LIST_STRIDE_IBM", 103084}, - {"GL_EDGE_FLAG_ARRAY_LIST_STRIDE_IBM", 103085}, - {"GL_FOG_COORDINATE_ARRAY_LIST_STRIDE_IBM", 103086}, - {"GL_SECONDARY_COLOR_ARRAY_LIST_STRIDE_IBM", 103087}, - {"GL_PREFER_DOUBLEBUFFER_HINT_PGI", 0x1A1F8}, - {"GL_CONSERVE_MEMORY_HINT_PGI", 0x1A1FD}, - {"GL_RECLAIM_MEMORY_HINT_PGI", 0x1A1FE}, - {"GL_NATIVE_GRAPHICS_HANDLE_PGI", 0x1A202}, - {"GL_NATIVE_GRAPHICS_BEGIN_HINT_PGI", 0x1A203}, - {"GL_NATIVE_GRAPHICS_END_HINT_PGI", 0x1A204}, - {"GL_ALWAYS_FAST_HINT_PGI", 0x1A20C}, - {"GL_ALWAYS_SOFT_HINT_PGI", 0x1A20D}, - {"GL_ALLOW_DRAW_OBJ_HINT_PGI", 0x1A20E}, - {"GL_ALLOW_DRAW_WIN_HINT_PGI", 0x1A20F}, - {"GL_ALLOW_DRAW_FRG_HINT_PGI", 0x1A210}, - {"GL_ALLOW_DRAW_MEM_HINT_PGI", 0x1A211}, - {"GL_STRICT_DEPTHFUNC_HINT_PGI", 0x1A216}, - {"GL_STRICT_LIGHTING_HINT_PGI", 0x1A217}, - {"GL_STRICT_SCISSOR_HINT_PGI", 0x1A218}, - {"GL_FULL_STIPPLE_HINT_PGI", 0x1A219}, - {"GL_CLIP_NEAR_HINT_PGI", 0x1A220}, - {"GL_CLIP_FAR_HINT_PGI", 0x1A221}, - {"GL_WIDE_LINE_HINT_PGI", 0x1A222}, - {"GL_BACK_NORMALS_HINT_PGI", 0x1A223}, - {"GL_VERTEX_DATA_HINT_PGI", 0x1A22A}, - {"GL_VERTEX_CONSISTENT_HINT_PGI", 0x1A22B}, - {"GL_MATERIAL_SIDE_HINT_PGI", 0x1A22C}, - {"GL_MAX_VERTEX_HINT_PGI", 0x1A22D}, - {"GL_MAX_CLIP_PLANES_IMG", 0x0D32}, - {"GL_TEXTURE_GEN_MODE_OES", 0x2500}, - {"GL_CLIP_PLANE0_IMG", 0x3000}, - {"GL_CLIP_PLANE1_IMG", 0x3001}, - {"GL_CLIP_PLANE2_IMG", 0x3002}, - {"GL_CLIP_PLANE3_IMG", 0x3003}, - {"GL_CLIP_PLANE4_IMG", 0x3004}, - {"GL_CLIP_PLANE5_IMG", 0x3005}, - {"GL_ALPHA8_OES", 0x803C}, - {"GL_LUMINANCE8_OES", 0x8040}, - {"GL_LUMINANCE4_ALPHA4_OES", 0x8043}, - {"GL_LUMINANCE8_ALPHA8_OES", 0x8045}, - {"GL_RGB8_OES", 0x8051}, - {"GL_TEXTURE_BINDING_3D_OES", 0x806A}, - {"GL_BGRA_IMG", 0x80E1}, - {"GL_TEXTURE_MAX_LEVEL_APPLE", 0x813D}, - {"GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT", 0x8210}, - {"GL_R32F_EXT", 0x822E}, - {"GL_RG32F_EXT", 0x8230}, - {"GL_LOSE_CONTEXT_ON_RESET_EXT", 0x8252}, - {"GL_GUILTY_CONTEXT_RESET_EXT", 0x8253}, - {"GL_INNOCENT_CONTEXT_RESET_EXT", 0x8254}, - {"GL_UNKNOWN_CONTEXT_RESET_EXT", 0x8255}, - {"GL_RESET_NOTIFICATION_STRATEGY_EXT", 0x8256}, - {"GL_NO_RESET_NOTIFICATION_EXT", 0x8261}, - {"GL_UNSIGNED_SHORT_4_4_4_4_REV_IMG", 0x8365}, - {"GL_VERTEX_ARRAY_BINDING_OES", 0x85B5}, - {"GL_RGBA32F_EXT", 0x8814}, - {"GL_RGB32F_EXT", 0x8815}, - {"GL_ALPHA32F_EXT", 0x8816}, - {"GL_LUMINANCE32F_EXT", 0x8818}, - {"GL_LUMINANCE_ALPHA32F_EXT", 0x8819}, - {"GL_ALPHA16F_EXT", 0x881C}, - {"GL_LUMINANCE16F_EXT", 0x881E}, - {"GL_LUMINANCE_ALPHA16F_EXT", 0x881F}, - {"GL_DRAW_FRAMEBUFFER_BINDING_ANGLE", 0x8CA6}, - {"GL_DRAW_FRAMEBUFFER_BINDING_APPLE", 0x8CA6}, - {"GL_READ_FRAMEBUFFER_APPLE", 0x8CA8}, - {"GL_DRAW_FRAMEBUFFER_APPLE", 0x8CA9}, - {"GL_READ_FRAMEBUFFER_BINDING_ANGLE", 0x8CAA}, - {"GL_READ_FRAMEBUFFER_BINDING_APPLE", 0x8CAA}, - {"GL_RENDERBUFFER_SAMPLES_APPLE", 0x8CAB}, - {"GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_APPLE", 0x8D56}, - {"GL_MAX_SAMPLES_APPLE", 0x8D57}, - {"GL_CONTEXT_ROBUST_ACCESS_EXT", 0x90F3}, - {"GL_TEXTURE_IMMUTABLE_FORMAT_EXT", 0x912F}, - {"GL_BGRA8_EXT", 0x93A1}, - {0, 0} -}; - -struct OpenGLEnum_u -{ - const char *name; - unsigned value; -}; - -static struct OpenGLEnum_u openGLEnums_u[] = { - {"GL_INVALID_INDEX", 0xFFFFFFFFu}, - {0, 0} -}; - -struct OpenGLEnum_ull -{ - const char *name; - unsigned long long value; -}; - -static struct OpenGLEnum_ull openGLEnums_ull[] = { - {"GL_TIMEOUT_IGNORED", 0xFFFFFFFFFFFFFFFFull}, - {"GL_TIMEOUT_IGNORED_APPLE", 0xFFFFFFFFFFFFFFFFull}, - {0, 0} -}; - - -/* - * Add the OpenGL constants to a Python object. Return -1 and raise an - * exception on error. - */ -int qpyopengl_add_constants(PyObject *obj) -{ - int i, rc; - PyObject *py_value; - - for (i = 0; openGLEnums_i[i].name; ++i) - { -#if PY_MAJOR_VERSION >= 3 - py_value = PyLong_FromLong(openGLEnums_i[i].value); -#else - py_value = PyInt_FromLong(openGLEnums_i[i].value); -#endif - - if (!py_value) - return -1; - - rc = PyObject_SetAttrString(obj, openGLEnums_i[i].name, py_value); - Py_DECREF(py_value); - - if (rc < 0) - return -1; - } - - for (i = 0; openGLEnums_u[i].name; ++i) - { - py_value = PyLong_FromUnsignedLong(openGLEnums_u[i].value); - - if (!py_value) - return -1; - - rc = PyObject_SetAttrString(obj, openGLEnums_u[i].name, py_value); - Py_DECREF(py_value); - - if (rc < 0) - return -1; - } - - for (i = 0; openGLEnums_ull[i].name; ++i) - { - py_value = PyLong_FromUnsignedLongLong(openGLEnums_ull[i].value); - - if (!py_value) - return -1; - - rc = PyObject_SetAttrString(obj, openGLEnums_ull[i].name, py_value); - Py_DECREF(py_value); - - if (rc < 0) - return -1; - } - - return 0; -} diff -Nru pyqt5-5.2+dfsg/qpy/QtGui/qpyopengl_add_constants.cpp pyqt5-5.2.1+dfsg/qpy/QtGui/qpyopengl_add_constants.cpp --- pyqt5-5.2+dfsg/qpy/QtGui/qpyopengl_add_constants.cpp 1970-01-01 00:00:00.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtGui/qpyopengl_add_constants.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -0,0 +1,5131 @@ +/* + * This implements a function to populate a Python object with the OpenGL + * constants. This file is automatically generated. + * + * Copyright (c) 2014 Riverbank Computing Limited + * + * This file is part of PyQt5. + * + * This file may be used under the terms of the GNU General Public License + * version 3.0 as published by the Free Software Foundation and appearing in + * the file LICENSE included in the packaging of this file. Please review the + * following information to ensure the GNU General Public License version 3.0 + * requirements will be met: http://www.gnu.org/copyleft/gpl.html. + * + * If you do not wish to use this file under the terms of the GPL version 3.0 + * then you may purchase a commercial license. For more information contact + * info@riverbankcomputing.com. + * + * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE + * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ + + +#include + +#include "sipAPIQtGui.h" + +#if defined(SIP_FEATURE_PyQt_OpenGL) + + +struct OpenGLEnum_i +{ + const char *name; + int value; +}; + +static OpenGLEnum_i openGLEnums_i[] = { + {"GL_CURRENT_BIT", 0x00000001}, + {"GL_POINT_BIT", 0x00000002}, + {"GL_LINE_BIT", 0x00000004}, + {"GL_POLYGON_BIT", 0x00000008}, + {"GL_POLYGON_STIPPLE_BIT", 0x00000010}, + {"GL_PIXEL_MODE_BIT", 0x00000020}, + {"GL_LIGHTING_BIT", 0x00000040}, + {"GL_FOG_BIT", 0x00000080}, + {"GL_DEPTH_BUFFER_BIT", 0x00000100}, + {"GL_ACCUM_BUFFER_BIT", 0x00000200}, + {"GL_STENCIL_BUFFER_BIT", 0x00000400}, + {"GL_VIEWPORT_BIT", 0x00000800}, + {"GL_TRANSFORM_BIT", 0x00001000}, + {"GL_ENABLE_BIT", 0x00002000}, + {"GL_COLOR_BUFFER_BIT", 0x00004000}, + {"GL_HINT_BIT", 0x00008000}, + {"GL_EVAL_BIT", 0x00010000}, + {"GL_LIST_BIT", 0x00020000}, + {"GL_TEXTURE_BIT", 0x00040000}, + {"GL_SCISSOR_BIT", 0x00080000}, + {"GL_MULTISAMPLE_BIT", 0x20000000}, + {"GL_MULTISAMPLE_BIT_ARB", 0x20000000}, + {"GL_MULTISAMPLE_BIT_EXT", 0x20000000}, + {"GL_MULTISAMPLE_BIT_3DFX", 0x20000000}, + {"GL_ALL_ATTRIB_BITS", 0xFFFFFFFF}, + {"GL_COVERAGE_BUFFER_BIT_NV", 0x00008000}, + {"GL_CLIENT_PIXEL_STORE_BIT", 0x00000001}, + {"GL_CLIENT_VERTEX_ARRAY_BIT", 0x00000002}, + {"GL_CLIENT_ALL_ATTRIB_BITS", 0xFFFFFFFF}, + {"GL_CONTEXT_FLAG_FORWARD_COMPATIBLE_BIT", 0x00000001}, + {"GL_CONTEXT_FLAG_DEBUG_BIT", 0x00000002}, + {"GL_CONTEXT_FLAG_DEBUG_BIT_KHR", 0x00000002}, + {"GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB", 0x00000004}, + {"GL_CONTEXT_CORE_PROFILE_BIT", 0x00000001}, + {"GL_CONTEXT_COMPATIBILITY_PROFILE_BIT", 0x00000002}, + {"GL_MAP_READ_BIT", 0x0001}, + {"GL_MAP_READ_BIT_EXT", 0x0001}, + {"GL_MAP_WRITE_BIT", 0x0002}, + {"GL_MAP_WRITE_BIT_EXT", 0x0002}, + {"GL_MAP_INVALIDATE_RANGE_BIT", 0x0004}, + {"GL_MAP_INVALIDATE_RANGE_BIT_EXT", 0x0004}, + {"GL_MAP_INVALIDATE_BUFFER_BIT", 0x0008}, + {"GL_MAP_INVALIDATE_BUFFER_BIT_EXT", 0x0008}, + {"GL_MAP_FLUSH_EXPLICIT_BIT", 0x0010}, + {"GL_MAP_FLUSH_EXPLICIT_BIT_EXT", 0x0010}, + {"GL_MAP_UNSYNCHRONIZED_BIT", 0x0020}, + {"GL_MAP_UNSYNCHRONIZED_BIT_EXT", 0x0020}, + {"GL_MAP_PERSISTENT_BIT", 0x0040}, + {"GL_MAP_COHERENT_BIT", 0x0080}, + {"GL_DYNAMIC_STORAGE_BIT", 0x0100}, + {"GL_CLIENT_STORAGE_BIT", 0x0200}, + {"GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT", 0x00000001}, + {"GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT_EXT", 0x00000001}, + {"GL_ELEMENT_ARRAY_BARRIER_BIT", 0x00000002}, + {"GL_ELEMENT_ARRAY_BARRIER_BIT_EXT", 0x00000002}, + {"GL_UNIFORM_BARRIER_BIT", 0x00000004}, + {"GL_UNIFORM_BARRIER_BIT_EXT", 0x00000004}, + {"GL_TEXTURE_FETCH_BARRIER_BIT", 0x00000008}, + {"GL_TEXTURE_FETCH_BARRIER_BIT_EXT", 0x00000008}, + {"GL_SHADER_GLOBAL_ACCESS_BARRIER_BIT_NV", 0x00000010}, + {"GL_SHADER_IMAGE_ACCESS_BARRIER_BIT", 0x00000020}, + {"GL_SHADER_IMAGE_ACCESS_BARRIER_BIT_EXT", 0x00000020}, + {"GL_COMMAND_BARRIER_BIT", 0x00000040}, + {"GL_COMMAND_BARRIER_BIT_EXT", 0x00000040}, + {"GL_PIXEL_BUFFER_BARRIER_BIT", 0x00000080}, + {"GL_PIXEL_BUFFER_BARRIER_BIT_EXT", 0x00000080}, + {"GL_TEXTURE_UPDATE_BARRIER_BIT", 0x00000100}, + {"GL_TEXTURE_UPDATE_BARRIER_BIT_EXT", 0x00000100}, + {"GL_BUFFER_UPDATE_BARRIER_BIT", 0x00000200}, + {"GL_BUFFER_UPDATE_BARRIER_BIT_EXT", 0x00000200}, + {"GL_FRAMEBUFFER_BARRIER_BIT", 0x00000400}, + {"GL_FRAMEBUFFER_BARRIER_BIT_EXT", 0x00000400}, + {"GL_TRANSFORM_FEEDBACK_BARRIER_BIT", 0x00000800}, + {"GL_TRANSFORM_FEEDBACK_BARRIER_BIT_EXT", 0x00000800}, + {"GL_ATOMIC_COUNTER_BARRIER_BIT", 0x00001000}, + {"GL_ATOMIC_COUNTER_BARRIER_BIT_EXT", 0x00001000}, + {"GL_SHADER_STORAGE_BARRIER_BIT", 0x00002000}, + {"GL_CLIENT_MAPPED_BUFFER_BARRIER_BIT", 0x00004000}, + {"GL_QUERY_BUFFER_BARRIER_BIT", 0x00008000}, + {"GL_ALL_BARRIER_BITS", 0xFFFFFFFF}, + {"GL_ALL_BARRIER_BITS_EXT", 0xFFFFFFFF}, + {"GL_SYNC_FLUSH_COMMANDS_BIT", 0x00000001}, + {"GL_SYNC_FLUSH_COMMANDS_BIT_APPLE", 0x00000001}, + {"GL_VERTEX_SHADER_BIT", 0x00000001}, + {"GL_VERTEX_SHADER_BIT_EXT", 0x00000001}, + {"GL_FRAGMENT_SHADER_BIT", 0x00000002}, + {"GL_FRAGMENT_SHADER_BIT_EXT", 0x00000002}, + {"GL_GEOMETRY_SHADER_BIT", 0x00000004}, + {"GL_TESS_CONTROL_SHADER_BIT", 0x00000008}, + {"GL_TESS_EVALUATION_SHADER_BIT", 0x00000010}, + {"GL_COMPUTE_SHADER_BIT", 0x00000020}, + {"GL_ALL_SHADER_BITS", 0xFFFFFFFF}, + {"GL_ALL_SHADER_BITS_EXT", 0xFFFFFFFF}, + {"GL_TEXTURE_STORAGE_SPARSE_BIT_AMD", 0x00000001}, + {"GL_RED_BIT_ATI", 0x00000001}, + {"GL_GREEN_BIT_ATI", 0x00000002}, + {"GL_BLUE_BIT_ATI", 0x00000004}, + {"GL_2X_BIT_ATI", 0x00000001}, + {"GL_4X_BIT_ATI", 0x00000002}, + {"GL_8X_BIT_ATI", 0x00000004}, + {"GL_HALF_BIT_ATI", 0x00000008}, + {"GL_QUARTER_BIT_ATI", 0x00000010}, + {"GL_EIGHTH_BIT_ATI", 0x00000020}, + {"GL_SATURATE_BIT_ATI", 0x00000040}, + {"GL_COMP_BIT_ATI", 0x00000002}, + {"GL_NEGATE_BIT_ATI", 0x00000004}, + {"GL_BIAS_BIT_ATI", 0x00000008}, + {"GL_TRACE_OPERATIONS_BIT_MESA", 0x0001}, + {"GL_TRACE_PRIMITIVES_BIT_MESA", 0x0002}, + {"GL_TRACE_ARRAYS_BIT_MESA", 0x0004}, + {"GL_TRACE_TEXTURES_BIT_MESA", 0x0008}, + {"GL_TRACE_PIXELS_BIT_MESA", 0x0010}, + {"GL_TRACE_ERRORS_BIT_MESA", 0x0020}, + {"GL_TRACE_ALL_BITS_MESA", 0xFFFF}, + {"GL_BOLD_BIT_NV", 0x01}, + {"GL_ITALIC_BIT_NV", 0x02}, + {"GL_GLYPH_WIDTH_BIT_NV", 0x01}, + {"GL_GLYPH_HEIGHT_BIT_NV", 0x02}, + {"GL_GLYPH_HORIZONTAL_BEARING_X_BIT_NV", 0x04}, + {"GL_GLYPH_HORIZONTAL_BEARING_Y_BIT_NV", 0x08}, + {"GL_GLYPH_HORIZONTAL_BEARING_ADVANCE_BIT_NV", 0x10}, + {"GL_GLYPH_VERTICAL_BEARING_X_BIT_NV", 0x20}, + {"GL_GLYPH_VERTICAL_BEARING_Y_BIT_NV", 0x40}, + {"GL_GLYPH_VERTICAL_BEARING_ADVANCE_BIT_NV", 0x80}, + {"GL_GLYPH_HAS_KERNING_BIT_NV", 0x100}, + {"GL_FONT_X_MIN_BOUNDS_BIT_NV", 0x00010000}, + {"GL_FONT_Y_MIN_BOUNDS_BIT_NV", 0x00020000}, + {"GL_FONT_X_MAX_BOUNDS_BIT_NV", 0x00040000}, + {"GL_FONT_Y_MAX_BOUNDS_BIT_NV", 0x00080000}, + {"GL_FONT_UNITS_PER_EM_BIT_NV", 0x00100000}, + {"GL_FONT_ASCENDER_BIT_NV", 0x00200000}, + {"GL_FONT_DESCENDER_BIT_NV", 0x00400000}, + {"GL_FONT_HEIGHT_BIT_NV", 0x00800000}, + {"GL_FONT_MAX_ADVANCE_WIDTH_BIT_NV", 0x01000000}, + {"GL_FONT_MAX_ADVANCE_HEIGHT_BIT_NV", 0x02000000}, + {"GL_FONT_UNDERLINE_POSITION_BIT_NV", 0x04000000}, + {"GL_FONT_UNDERLINE_THICKNESS_BIT_NV", 0x08000000}, + {"GL_FONT_HAS_KERNING_BIT_NV", 0x10000000}, + {"GL_VERTEX23_BIT_PGI", 0x00000004}, + {"GL_VERTEX4_BIT_PGI", 0x00000008}, + {"GL_COLOR3_BIT_PGI", 0x00010000}, + {"GL_COLOR4_BIT_PGI", 0x00020000}, + {"GL_EDGEFLAG_BIT_PGI", 0x00040000}, + {"GL_INDEX_BIT_PGI", 0x00080000}, + {"GL_MAT_AMBIENT_BIT_PGI", 0x00100000}, + {"GL_MAT_AMBIENT_AND_DIFFUSE_BIT_PGI", 0x00200000}, + {"GL_MAT_DIFFUSE_BIT_PGI", 0x00400000}, + {"GL_MAT_EMISSION_BIT_PGI", 0x00800000}, + {"GL_MAT_COLOR_INDEXES_BIT_PGI", 0x01000000}, + {"GL_MAT_SHININESS_BIT_PGI", 0x02000000}, + {"GL_MAT_SPECULAR_BIT_PGI", 0x04000000}, + {"GL_NORMAL_BIT_PGI", 0x08000000}, + {"GL_TEXCOORD1_BIT_PGI", 0x10000000}, + {"GL_TEXCOORD2_BIT_PGI", 0x20000000}, + {"GL_TEXCOORD3_BIT_PGI", 0x40000000}, + {"GL_TEXCOORD4_BIT_PGI", 0x80000000}, + {"GL_COLOR_BUFFER_BIT0_QCOM", 0x00000001}, + {"GL_COLOR_BUFFER_BIT1_QCOM", 0x00000002}, + {"GL_COLOR_BUFFER_BIT2_QCOM", 0x00000004}, + {"GL_COLOR_BUFFER_BIT3_QCOM", 0x00000008}, + {"GL_COLOR_BUFFER_BIT4_QCOM", 0x00000010}, + {"GL_COLOR_BUFFER_BIT5_QCOM", 0x00000020}, + {"GL_COLOR_BUFFER_BIT6_QCOM", 0x00000040}, + {"GL_COLOR_BUFFER_BIT7_QCOM", 0x00000080}, + {"GL_DEPTH_BUFFER_BIT0_QCOM", 0x00000100}, + {"GL_DEPTH_BUFFER_BIT1_QCOM", 0x00000200}, + {"GL_DEPTH_BUFFER_BIT2_QCOM", 0x00000400}, + {"GL_DEPTH_BUFFER_BIT3_QCOM", 0x00000800}, + {"GL_DEPTH_BUFFER_BIT4_QCOM", 0x00001000}, + {"GL_DEPTH_BUFFER_BIT5_QCOM", 0x00002000}, + {"GL_DEPTH_BUFFER_BIT6_QCOM", 0x00004000}, + {"GL_DEPTH_BUFFER_BIT7_QCOM", 0x00008000}, + {"GL_STENCIL_BUFFER_BIT0_QCOM", 0x00010000}, + {"GL_STENCIL_BUFFER_BIT1_QCOM", 0x00020000}, + {"GL_STENCIL_BUFFER_BIT2_QCOM", 0x00040000}, + {"GL_STENCIL_BUFFER_BIT3_QCOM", 0x00080000}, + {"GL_STENCIL_BUFFER_BIT4_QCOM", 0x00100000}, + {"GL_STENCIL_BUFFER_BIT5_QCOM", 0x00200000}, + {"GL_STENCIL_BUFFER_BIT6_QCOM", 0x00400000}, + {"GL_STENCIL_BUFFER_BIT7_QCOM", 0x00800000}, + {"GL_MULTISAMPLE_BUFFER_BIT0_QCOM", 0x01000000}, + {"GL_MULTISAMPLE_BUFFER_BIT1_QCOM", 0x02000000}, + {"GL_MULTISAMPLE_BUFFER_BIT2_QCOM", 0x04000000}, + {"GL_MULTISAMPLE_BUFFER_BIT3_QCOM", 0x08000000}, + {"GL_MULTISAMPLE_BUFFER_BIT4_QCOM", 0x10000000}, + {"GL_MULTISAMPLE_BUFFER_BIT5_QCOM", 0x20000000}, + {"GL_MULTISAMPLE_BUFFER_BIT6_QCOM", 0x40000000}, + {"GL_MULTISAMPLE_BUFFER_BIT7_QCOM", 0x80000000}, + {"GL_TEXTURE_DEFORMATION_BIT_SGIX", 0x00000001}, + {"GL_GEOMETRY_DEFORMATION_BIT_SGIX", 0x00000002}, + {"GL_RESTART_SUN", 0x0001}, + {"GL_REPLACE_MIDDLE_SUN", 0x0002}, + {"GL_REPLACE_OLDEST_SUN", 0x0003}, + {"GL_LAYOUT_DEFAULT_INTEL", 0}, + {"GL_LAYOUT_LINEAR_INTEL", 1}, + {"GL_LAYOUT_LINEAR_CPU_CACHED_INTEL", 2}, + {"GL_NEXT_BUFFER_NV", -2}, + {"GL_SKIP_COMPONENTS4_NV", -3}, + {"GL_SKIP_COMPONENTS3_NV", -4}, + {"GL_SKIP_COMPONENTS2_NV", -5}, + {"GL_SKIP_COMPONENTS1_NV", -6}, + {"GL_CLOSE_PATH_NV", 0x00}, + {"GL_MOVE_TO_NV", 0x02}, + {"GL_RELATIVE_MOVE_TO_NV", 0x03}, + {"GL_LINE_TO_NV", 0x04}, + {"GL_RELATIVE_LINE_TO_NV", 0x05}, + {"GL_HORIZONTAL_LINE_TO_NV", 0x06}, + {"GL_RELATIVE_HORIZONTAL_LINE_TO_NV", 0x07}, + {"GL_VERTICAL_LINE_TO_NV", 0x08}, + {"GL_RELATIVE_VERTICAL_LINE_TO_NV", 0x09}, + {"GL_QUADRATIC_CURVE_TO_NV", 0x0A}, + {"GL_RELATIVE_QUADRATIC_CURVE_TO_NV", 0x0B}, + {"GL_CUBIC_CURVE_TO_NV", 0x0C}, + {"GL_RELATIVE_CUBIC_CURVE_TO_NV", 0x0D}, + {"GL_SMOOTH_QUADRATIC_CURVE_TO_NV", 0x0E}, + {"GL_RELATIVE_SMOOTH_QUADRATIC_CURVE_TO_NV", 0x0F}, + {"GL_SMOOTH_CUBIC_CURVE_TO_NV", 0x10}, + {"GL_RELATIVE_SMOOTH_CUBIC_CURVE_TO_NV", 0x11}, + {"GL_SMALL_CCW_ARC_TO_NV", 0x12}, + {"GL_RELATIVE_SMALL_CCW_ARC_TO_NV", 0x13}, + {"GL_SMALL_CW_ARC_TO_NV", 0x14}, + {"GL_RELATIVE_SMALL_CW_ARC_TO_NV", 0x15}, + {"GL_LARGE_CCW_ARC_TO_NV", 0x16}, + {"GL_RELATIVE_LARGE_CCW_ARC_TO_NV", 0x17}, + {"GL_LARGE_CW_ARC_TO_NV", 0x18}, + {"GL_RELATIVE_LARGE_CW_ARC_TO_NV", 0x19}, + {"GL_RESTART_PATH_NV", 0xF0}, + {"GL_DUP_FIRST_CUBIC_CURVE_TO_NV", 0xF2}, + {"GL_DUP_LAST_CUBIC_CURVE_TO_NV", 0xF4}, + {"GL_RECT_NV", 0xF6}, + {"GL_CIRCULAR_CCW_ARC_TO_NV", 0xF8}, + {"GL_CIRCULAR_CW_ARC_TO_NV", 0xFA}, + {"GL_CIRCULAR_TANGENT_ARC_TO_NV", 0xFC}, + {"GL_ARC_TO_NV", 0xFE}, + {"GL_RELATIVE_ARC_TO_NV", 0xFF}, + {"GL_FALSE", 0}, + {"GL_NO_ERROR", 0}, + {"GL_ZERO", 0}, + {"GL_NONE", 0}, + {"GL_NONE_OES", 0}, + {"GL_TRUE", 1}, + {"GL_ONE", 1}, + {"GL_VERSION_ES_CL_1_0", 1}, + {"GL_VERSION_ES_CM_1_1", 1}, + {"GL_VERSION_ES_CL_1_1", 1}, + {"GL_POINTS", 0x0000}, + {"GL_LINES", 0x0001}, + {"GL_LINE_LOOP", 0x0002}, + {"GL_LINE_STRIP", 0x0003}, + {"GL_TRIANGLES", 0x0004}, + {"GL_TRIANGLE_STRIP", 0x0005}, + {"GL_TRIANGLE_FAN", 0x0006}, + {"GL_QUADS", 0x0007}, + {"GL_QUAD_STRIP", 0x0008}, + {"GL_POLYGON", 0x0009}, + {"GL_LINES_ADJACENCY", 0x000A}, + {"GL_LINES_ADJACENCY_ARB", 0x000A}, + {"GL_LINES_ADJACENCY_EXT", 0x000A}, + {"GL_LINE_STRIP_ADJACENCY", 0x000B}, + {"GL_LINE_STRIP_ADJACENCY_ARB", 0x000B}, + {"GL_LINE_STRIP_ADJACENCY_EXT", 0x000B}, + {"GL_TRIANGLES_ADJACENCY", 0x000C}, + {"GL_TRIANGLES_ADJACENCY_ARB", 0x000C}, + {"GL_TRIANGLES_ADJACENCY_EXT", 0x000C}, + {"GL_TRIANGLE_STRIP_ADJACENCY", 0x000D}, + {"GL_TRIANGLE_STRIP_ADJACENCY_ARB", 0x000D}, + {"GL_TRIANGLE_STRIP_ADJACENCY_EXT", 0x000D}, + {"GL_PATCHES", 0x000E}, + {"GL_ACCUM", 0x0100}, + {"GL_LOAD", 0x0101}, + {"GL_RETURN", 0x0102}, + {"GL_MULT", 0x0103}, + {"GL_ADD", 0x0104}, + {"GL_NEVER", 0x0200}, + {"GL_LESS", 0x0201}, + {"GL_EQUAL", 0x0202}, + {"GL_LEQUAL", 0x0203}, + {"GL_GREATER", 0x0204}, + {"GL_NOTEQUAL", 0x0205}, + {"GL_GEQUAL", 0x0206}, + {"GL_ALWAYS", 0x0207}, + {"GL_SRC_COLOR", 0x0300}, + {"GL_ONE_MINUS_SRC_COLOR", 0x0301}, + {"GL_SRC_ALPHA", 0x0302}, + {"GL_ONE_MINUS_SRC_ALPHA", 0x0303}, + {"GL_DST_ALPHA", 0x0304}, + {"GL_ONE_MINUS_DST_ALPHA", 0x0305}, + {"GL_DST_COLOR", 0x0306}, + {"GL_ONE_MINUS_DST_COLOR", 0x0307}, + {"GL_SRC_ALPHA_SATURATE", 0x0308}, + {"GL_FRONT_LEFT", 0x0400}, + {"GL_FRONT_RIGHT", 0x0401}, + {"GL_BACK_LEFT", 0x0402}, + {"GL_BACK_RIGHT", 0x0403}, + {"GL_FRONT", 0x0404}, + {"GL_BACK", 0x0405}, + {"GL_LEFT", 0x0406}, + {"GL_RIGHT", 0x0407}, + {"GL_FRONT_AND_BACK", 0x0408}, + {"GL_AUX0", 0x0409}, + {"GL_AUX1", 0x040A}, + {"GL_AUX2", 0x040B}, + {"GL_AUX3", 0x040C}, + {"GL_INVALID_ENUM", 0x0500}, + {"GL_INVALID_VALUE", 0x0501}, + {"GL_INVALID_OPERATION", 0x0502}, + {"GL_STACK_OVERFLOW", 0x0503}, + {"GL_STACK_OVERFLOW_KHR", 0x0503}, + {"GL_STACK_UNDERFLOW", 0x0504}, + {"GL_STACK_UNDERFLOW_KHR", 0x0504}, + {"GL_OUT_OF_MEMORY", 0x0505}, + {"GL_INVALID_FRAMEBUFFER_OPERATION", 0x0506}, + {"GL_INVALID_FRAMEBUFFER_OPERATION_EXT", 0x0506}, + {"GL_INVALID_FRAMEBUFFER_OPERATION_OES", 0x0506}, + {"GL_2D", 0x0600}, + {"GL_3D", 0x0601}, + {"GL_3D_COLOR", 0x0602}, + {"GL_3D_COLOR_TEXTURE", 0x0603}, + {"GL_4D_COLOR_TEXTURE", 0x0604}, + {"GL_PASS_THROUGH_TOKEN", 0x0700}, + {"GL_POINT_TOKEN", 0x0701}, + {"GL_LINE_TOKEN", 0x0702}, + {"GL_POLYGON_TOKEN", 0x0703}, + {"GL_BITMAP_TOKEN", 0x0704}, + {"GL_DRAW_PIXEL_TOKEN", 0x0705}, + {"GL_COPY_PIXEL_TOKEN", 0x0706}, + {"GL_LINE_RESET_TOKEN", 0x0707}, + {"GL_EXP", 0x0800}, + {"GL_EXP2", 0x0801}, + {"GL_CW", 0x0900}, + {"GL_CCW", 0x0901}, + {"GL_COEFF", 0x0A00}, + {"GL_ORDER", 0x0A01}, + {"GL_DOMAIN", 0x0A02}, + {"GL_CURRENT_COLOR", 0x0B00}, + {"GL_CURRENT_INDEX", 0x0B01}, + {"GL_CURRENT_NORMAL", 0x0B02}, + {"GL_CURRENT_TEXTURE_COORDS", 0x0B03}, + {"GL_CURRENT_RASTER_COLOR", 0x0B04}, + {"GL_CURRENT_RASTER_INDEX", 0x0B05}, + {"GL_CURRENT_RASTER_TEXTURE_COORDS", 0x0B06}, + {"GL_CURRENT_RASTER_POSITION", 0x0B07}, + {"GL_CURRENT_RASTER_POSITION_VALID", 0x0B08}, + {"GL_CURRENT_RASTER_DISTANCE", 0x0B09}, + {"GL_POINT_SMOOTH", 0x0B10}, + {"GL_POINT_SIZE", 0x0B11}, + {"GL_POINT_SIZE_RANGE", 0x0B12}, + {"GL_SMOOTH_POINT_SIZE_RANGE", 0x0B12}, + {"GL_POINT_SIZE_GRANULARITY", 0x0B13}, + {"GL_SMOOTH_POINT_SIZE_GRANULARITY", 0x0B13}, + {"GL_LINE_SMOOTH", 0x0B20}, + {"GL_LINE_WIDTH", 0x0B21}, + {"GL_LINE_WIDTH_RANGE", 0x0B22}, + {"GL_SMOOTH_LINE_WIDTH_RANGE", 0x0B22}, + {"GL_LINE_WIDTH_GRANULARITY", 0x0B23}, + {"GL_SMOOTH_LINE_WIDTH_GRANULARITY", 0x0B23}, + {"GL_LINE_STIPPLE", 0x0B24}, + {"GL_LINE_STIPPLE_PATTERN", 0x0B25}, + {"GL_LINE_STIPPLE_REPEAT", 0x0B26}, + {"GL_LIST_MODE", 0x0B30}, + {"GL_MAX_LIST_NESTING", 0x0B31}, + {"GL_LIST_BASE", 0x0B32}, + {"GL_LIST_INDEX", 0x0B33}, + {"GL_POLYGON_MODE", 0x0B40}, + {"GL_POLYGON_SMOOTH", 0x0B41}, + {"GL_POLYGON_STIPPLE", 0x0B42}, + {"GL_EDGE_FLAG", 0x0B43}, + {"GL_CULL_FACE", 0x0B44}, + {"GL_CULL_FACE_MODE", 0x0B45}, + {"GL_FRONT_FACE", 0x0B46}, + {"GL_LIGHTING", 0x0B50}, + {"GL_LIGHT_MODEL_LOCAL_VIEWER", 0x0B51}, + {"GL_LIGHT_MODEL_TWO_SIDE", 0x0B52}, + {"GL_LIGHT_MODEL_AMBIENT", 0x0B53}, + {"GL_SHADE_MODEL", 0x0B54}, + {"GL_COLOR_MATERIAL_FACE", 0x0B55}, + {"GL_COLOR_MATERIAL_PARAMETER", 0x0B56}, + {"GL_COLOR_MATERIAL", 0x0B57}, + {"GL_FOG", 0x0B60}, + {"GL_FOG_INDEX", 0x0B61}, + {"GL_FOG_DENSITY", 0x0B62}, + {"GL_FOG_START", 0x0B63}, + {"GL_FOG_END", 0x0B64}, + {"GL_FOG_MODE", 0x0B65}, + {"GL_FOG_COLOR", 0x0B66}, + {"GL_DEPTH_RANGE", 0x0B70}, + {"GL_DEPTH_TEST", 0x0B71}, + {"GL_DEPTH_WRITEMASK", 0x0B72}, + {"GL_DEPTH_CLEAR_VALUE", 0x0B73}, + {"GL_DEPTH_FUNC", 0x0B74}, + {"GL_ACCUM_CLEAR_VALUE", 0x0B80}, + {"GL_STENCIL_TEST", 0x0B90}, + {"GL_STENCIL_CLEAR_VALUE", 0x0B91}, + {"GL_STENCIL_FUNC", 0x0B92}, + {"GL_STENCIL_VALUE_MASK", 0x0B93}, + {"GL_STENCIL_FAIL", 0x0B94}, + {"GL_STENCIL_PASS_DEPTH_FAIL", 0x0B95}, + {"GL_STENCIL_PASS_DEPTH_PASS", 0x0B96}, + {"GL_STENCIL_REF", 0x0B97}, + {"GL_STENCIL_WRITEMASK", 0x0B98}, + {"GL_MATRIX_MODE", 0x0BA0}, + {"GL_NORMALIZE", 0x0BA1}, + {"GL_VIEWPORT", 0x0BA2}, + {"GL_MODELVIEW_STACK_DEPTH", 0x0BA3}, + {"GL_MODELVIEW0_STACK_DEPTH_EXT", 0x0BA3}, + {"GL_PROJECTION_STACK_DEPTH", 0x0BA4}, + {"GL_TEXTURE_STACK_DEPTH", 0x0BA5}, + {"GL_MODELVIEW_MATRIX", 0x0BA6}, + {"GL_MODELVIEW0_MATRIX_EXT", 0x0BA6}, + {"GL_PROJECTION_MATRIX", 0x0BA7}, + {"GL_TEXTURE_MATRIX", 0x0BA8}, + {"GL_ATTRIB_STACK_DEPTH", 0x0BB0}, + {"GL_CLIENT_ATTRIB_STACK_DEPTH", 0x0BB1}, + {"GL_ALPHA_TEST", 0x0BC0}, + {"GL_ALPHA_TEST_QCOM", 0x0BC0}, + {"GL_ALPHA_TEST_FUNC", 0x0BC1}, + {"GL_ALPHA_TEST_FUNC_QCOM", 0x0BC1}, + {"GL_ALPHA_TEST_REF", 0x0BC2}, + {"GL_ALPHA_TEST_REF_QCOM", 0x0BC2}, + {"GL_DITHER", 0x0BD0}, + {"GL_BLEND_DST", 0x0BE0}, + {"GL_BLEND_SRC", 0x0BE1}, + {"GL_BLEND", 0x0BE2}, + {"GL_LOGIC_OP_MODE", 0x0BF0}, + {"GL_INDEX_LOGIC_OP", 0x0BF1}, + {"GL_LOGIC_OP", 0x0BF1}, + {"GL_COLOR_LOGIC_OP", 0x0BF2}, + {"GL_AUX_BUFFERS", 0x0C00}, + {"GL_DRAW_BUFFER", 0x0C01}, + {"GL_DRAW_BUFFER_EXT", 0x0C01}, + {"GL_READ_BUFFER", 0x0C02}, + {"GL_READ_BUFFER_EXT", 0x0C02}, + {"GL_READ_BUFFER_NV", 0x0C02}, + {"GL_SCISSOR_BOX", 0x0C10}, + {"GL_SCISSOR_TEST", 0x0C11}, + {"GL_INDEX_CLEAR_VALUE", 0x0C20}, + {"GL_INDEX_WRITEMASK", 0x0C21}, + {"GL_COLOR_CLEAR_VALUE", 0x0C22}, + {"GL_COLOR_WRITEMASK", 0x0C23}, + {"GL_INDEX_MODE", 0x0C30}, + {"GL_RGBA_MODE", 0x0C31}, + {"GL_DOUBLEBUFFER", 0x0C32}, + {"GL_STEREO", 0x0C33}, + {"GL_RENDER_MODE", 0x0C40}, + {"GL_PERSPECTIVE_CORRECTION_HINT", 0x0C50}, + {"GL_POINT_SMOOTH_HINT", 0x0C51}, + {"GL_LINE_SMOOTH_HINT", 0x0C52}, + {"GL_POLYGON_SMOOTH_HINT", 0x0C53}, + {"GL_FOG_HINT", 0x0C54}, + {"GL_TEXTURE_GEN_S", 0x0C60}, + {"GL_TEXTURE_GEN_T", 0x0C61}, + {"GL_TEXTURE_GEN_R", 0x0C62}, + {"GL_TEXTURE_GEN_Q", 0x0C63}, + {"GL_PIXEL_MAP_I_TO_I", 0x0C70}, + {"GL_PIXEL_MAP_S_TO_S", 0x0C71}, + {"GL_PIXEL_MAP_I_TO_R", 0x0C72}, + {"GL_PIXEL_MAP_I_TO_G", 0x0C73}, + {"GL_PIXEL_MAP_I_TO_B", 0x0C74}, + {"GL_PIXEL_MAP_I_TO_A", 0x0C75}, + {"GL_PIXEL_MAP_R_TO_R", 0x0C76}, + {"GL_PIXEL_MAP_G_TO_G", 0x0C77}, + {"GL_PIXEL_MAP_B_TO_B", 0x0C78}, + {"GL_PIXEL_MAP_A_TO_A", 0x0C79}, + {"GL_PIXEL_MAP_I_TO_I_SIZE", 0x0CB0}, + {"GL_PIXEL_MAP_S_TO_S_SIZE", 0x0CB1}, + {"GL_PIXEL_MAP_I_TO_R_SIZE", 0x0CB2}, + {"GL_PIXEL_MAP_I_TO_G_SIZE", 0x0CB3}, + {"GL_PIXEL_MAP_I_TO_B_SIZE", 0x0CB4}, + {"GL_PIXEL_MAP_I_TO_A_SIZE", 0x0CB5}, + {"GL_PIXEL_MAP_R_TO_R_SIZE", 0x0CB6}, + {"GL_PIXEL_MAP_G_TO_G_SIZE", 0x0CB7}, + {"GL_PIXEL_MAP_B_TO_B_SIZE", 0x0CB8}, + {"GL_PIXEL_MAP_A_TO_A_SIZE", 0x0CB9}, + {"GL_UNPACK_SWAP_BYTES", 0x0CF0}, + {"GL_UNPACK_LSB_FIRST", 0x0CF1}, + {"GL_UNPACK_ROW_LENGTH", 0x0CF2}, + {"GL_UNPACK_ROW_LENGTH_EXT", 0x0CF2}, + {"GL_UNPACK_SKIP_ROWS", 0x0CF3}, + {"GL_UNPACK_SKIP_ROWS_EXT", 0x0CF3}, + {"GL_UNPACK_SKIP_PIXELS", 0x0CF4}, + {"GL_UNPACK_SKIP_PIXELS_EXT", 0x0CF4}, + {"GL_UNPACK_ALIGNMENT", 0x0CF5}, + {"GL_PACK_SWAP_BYTES", 0x0D00}, + {"GL_PACK_LSB_FIRST", 0x0D01}, + {"GL_PACK_ROW_LENGTH", 0x0D02}, + {"GL_PACK_SKIP_ROWS", 0x0D03}, + {"GL_PACK_SKIP_PIXELS", 0x0D04}, + {"GL_PACK_ALIGNMENT", 0x0D05}, + {"GL_MAP_COLOR", 0x0D10}, + {"GL_MAP_STENCIL", 0x0D11}, + {"GL_INDEX_SHIFT", 0x0D12}, + {"GL_INDEX_OFFSET", 0x0D13}, + {"GL_RED_SCALE", 0x0D14}, + {"GL_RED_BIAS", 0x0D15}, + {"GL_ZOOM_X", 0x0D16}, + {"GL_ZOOM_Y", 0x0D17}, + {"GL_GREEN_SCALE", 0x0D18}, + {"GL_GREEN_BIAS", 0x0D19}, + {"GL_BLUE_SCALE", 0x0D1A}, + {"GL_BLUE_BIAS", 0x0D1B}, + {"GL_ALPHA_SCALE", 0x0D1C}, + {"GL_ALPHA_BIAS", 0x0D1D}, + {"GL_DEPTH_SCALE", 0x0D1E}, + {"GL_DEPTH_BIAS", 0x0D1F}, + {"GL_MAX_EVAL_ORDER", 0x0D30}, + {"GL_MAX_LIGHTS", 0x0D31}, + {"GL_MAX_CLIP_PLANES", 0x0D32}, + {"GL_MAX_CLIP_DISTANCES", 0x0D32}, + {"GL_MAX_TEXTURE_SIZE", 0x0D33}, + {"GL_MAX_PIXEL_MAP_TABLE", 0x0D34}, + {"GL_MAX_ATTRIB_STACK_DEPTH", 0x0D35}, + {"GL_MAX_MODELVIEW_STACK_DEPTH", 0x0D36}, + {"GL_MAX_NAME_STACK_DEPTH", 0x0D37}, + {"GL_MAX_PROJECTION_STACK_DEPTH", 0x0D38}, + {"GL_MAX_TEXTURE_STACK_DEPTH", 0x0D39}, + {"GL_MAX_VIEWPORT_DIMS", 0x0D3A}, + {"GL_MAX_CLIENT_ATTRIB_STACK_DEPTH", 0x0D3B}, + {"GL_SUBPIXEL_BITS", 0x0D50}, + {"GL_INDEX_BITS", 0x0D51}, + {"GL_RED_BITS", 0x0D52}, + {"GL_GREEN_BITS", 0x0D53}, + {"GL_BLUE_BITS", 0x0D54}, + {"GL_ALPHA_BITS", 0x0D55}, + {"GL_DEPTH_BITS", 0x0D56}, + {"GL_STENCIL_BITS", 0x0D57}, + {"GL_ACCUM_RED_BITS", 0x0D58}, + {"GL_ACCUM_GREEN_BITS", 0x0D59}, + {"GL_ACCUM_BLUE_BITS", 0x0D5A}, + {"GL_ACCUM_ALPHA_BITS", 0x0D5B}, + {"GL_NAME_STACK_DEPTH", 0x0D70}, + {"GL_AUTO_NORMAL", 0x0D80}, + {"GL_MAP1_COLOR_4", 0x0D90}, + {"GL_MAP1_INDEX", 0x0D91}, + {"GL_MAP1_NORMAL", 0x0D92}, + {"GL_MAP1_TEXTURE_COORD_1", 0x0D93}, + {"GL_MAP1_TEXTURE_COORD_2", 0x0D94}, + {"GL_MAP1_TEXTURE_COORD_3", 0x0D95}, + {"GL_MAP1_TEXTURE_COORD_4", 0x0D96}, + {"GL_MAP1_VERTEX_3", 0x0D97}, + {"GL_MAP1_VERTEX_4", 0x0D98}, + {"GL_MAP2_COLOR_4", 0x0DB0}, + {"GL_MAP2_INDEX", 0x0DB1}, + {"GL_MAP2_NORMAL", 0x0DB2}, + {"GL_MAP2_TEXTURE_COORD_1", 0x0DB3}, + {"GL_MAP2_TEXTURE_COORD_2", 0x0DB4}, + {"GL_MAP2_TEXTURE_COORD_3", 0x0DB5}, + {"GL_MAP2_TEXTURE_COORD_4", 0x0DB6}, + {"GL_MAP2_VERTEX_3", 0x0DB7}, + {"GL_MAP2_VERTEX_4", 0x0DB8}, + {"GL_MAP1_GRID_DOMAIN", 0x0DD0}, + {"GL_MAP1_GRID_SEGMENTS", 0x0DD1}, + {"GL_MAP2_GRID_DOMAIN", 0x0DD2}, + {"GL_MAP2_GRID_SEGMENTS", 0x0DD3}, + {"GL_TEXTURE_1D", 0x0DE0}, + {"GL_TEXTURE_2D", 0x0DE1}, + {"GL_FEEDBACK_BUFFER_POINTER", 0x0DF0}, + {"GL_FEEDBACK_BUFFER_SIZE", 0x0DF1}, + {"GL_FEEDBACK_BUFFER_TYPE", 0x0DF2}, + {"GL_SELECTION_BUFFER_POINTER", 0x0DF3}, + {"GL_SELECTION_BUFFER_SIZE", 0x0DF4}, + {"GL_TEXTURE_WIDTH", 0x1000}, + {"GL_TEXTURE_HEIGHT", 0x1001}, + {"GL_TEXTURE_INTERNAL_FORMAT", 0x1003}, + {"GL_TEXTURE_COMPONENTS", 0x1003}, + {"GL_TEXTURE_BORDER_COLOR", 0x1004}, + {"GL_TEXTURE_BORDER_COLOR_NV", 0x1004}, + {"GL_TEXTURE_BORDER", 0x1005}, + {"GL_DONT_CARE", 0x1100}, + {"GL_FASTEST", 0x1101}, + {"GL_NICEST", 0x1102}, + {"GL_AMBIENT", 0x1200}, + {"GL_DIFFUSE", 0x1201}, + {"GL_SPECULAR", 0x1202}, + {"GL_POSITION", 0x1203}, + {"GL_SPOT_DIRECTION", 0x1204}, + {"GL_SPOT_EXPONENT", 0x1205}, + {"GL_SPOT_CUTOFF", 0x1206}, + {"GL_CONSTANT_ATTENUATION", 0x1207}, + {"GL_LINEAR_ATTENUATION", 0x1208}, + {"GL_QUADRATIC_ATTENUATION", 0x1209}, + {"GL_COMPILE", 0x1300}, + {"GL_COMPILE_AND_EXECUTE", 0x1301}, + {"GL_BYTE", 0x1400}, + {"GL_UNSIGNED_BYTE", 0x1401}, + {"GL_SHORT", 0x1402}, + {"GL_UNSIGNED_SHORT", 0x1403}, + {"GL_INT", 0x1404}, + {"GL_UNSIGNED_INT", 0x1405}, + {"GL_FLOAT", 0x1406}, + {"GL_2_BYTES", 0x1407}, + {"GL_3_BYTES", 0x1408}, + {"GL_4_BYTES", 0x1409}, + {"GL_DOUBLE", 0x140A}, + {"GL_DOUBLE_EXT", 0x140A}, + {"GL_HALF_FLOAT", 0x140B}, + {"GL_HALF_FLOAT_ARB", 0x140B}, + {"GL_HALF_FLOAT_NV", 0x140B}, + {"GL_HALF_APPLE", 0x140B}, + {"GL_FIXED", 0x140C}, + {"GL_FIXED_OES", 0x140C}, + {"GL_INT64_NV", 0x140E}, + {"GL_UNSIGNED_INT64_ARB", 0x140F}, + {"GL_UNSIGNED_INT64_NV", 0x140F}, + {"GL_CLEAR", 0x1500}, + {"GL_AND", 0x1501}, + {"GL_AND_REVERSE", 0x1502}, + {"GL_COPY", 0x1503}, + {"GL_AND_INVERTED", 0x1504}, + {"GL_NOOP", 0x1505}, + {"GL_XOR", 0x1506}, + {"GL_OR", 0x1507}, + {"GL_NOR", 0x1508}, + {"GL_EQUIV", 0x1509}, + {"GL_INVERT", 0x150A}, + {"GL_OR_REVERSE", 0x150B}, + {"GL_COPY_INVERTED", 0x150C}, + {"GL_OR_INVERTED", 0x150D}, + {"GL_NAND", 0x150E}, + {"GL_SET", 0x150F}, + {"GL_EMISSION", 0x1600}, + {"GL_SHININESS", 0x1601}, + {"GL_AMBIENT_AND_DIFFUSE", 0x1602}, + {"GL_COLOR_INDEXES", 0x1603}, + {"GL_MODELVIEW", 0x1700}, + {"GL_MODELVIEW0_ARB", 0x1700}, + {"GL_MODELVIEW0_EXT", 0x1700}, + {"GL_PROJECTION", 0x1701}, + {"GL_TEXTURE", 0x1702}, + {"GL_COLOR", 0x1800}, + {"GL_COLOR_EXT", 0x1800}, + {"GL_DEPTH", 0x1801}, + {"GL_DEPTH_EXT", 0x1801}, + {"GL_STENCIL", 0x1802}, + {"GL_STENCIL_EXT", 0x1802}, + {"GL_COLOR_INDEX", 0x1900}, + {"GL_STENCIL_INDEX", 0x1901}, + {"GL_DEPTH_COMPONENT", 0x1902}, + {"GL_RED", 0x1903}, + {"GL_RED_EXT", 0x1903}, + {"GL_GREEN", 0x1904}, + {"GL_BLUE", 0x1905}, + {"GL_ALPHA", 0x1906}, + {"GL_RGB", 0x1907}, + {"GL_RGBA", 0x1908}, + {"GL_LUMINANCE", 0x1909}, + {"GL_LUMINANCE_ALPHA", 0x190A}, + {"GL_BITMAP", 0x1A00}, + {"GL_POINT", 0x1B00}, + {"GL_LINE", 0x1B01}, + {"GL_FILL", 0x1B02}, + {"GL_RENDER", 0x1C00}, + {"GL_FEEDBACK", 0x1C01}, + {"GL_SELECT", 0x1C02}, + {"GL_FLAT", 0x1D00}, + {"GL_SMOOTH", 0x1D01}, + {"GL_KEEP", 0x1E00}, + {"GL_REPLACE", 0x1E01}, + {"GL_INCR", 0x1E02}, + {"GL_DECR", 0x1E03}, + {"GL_VENDOR", 0x1F00}, + {"GL_RENDERER", 0x1F01}, + {"GL_VERSION", 0x1F02}, + {"GL_EXTENSIONS", 0x1F03}, + {"GL_S", 0x2000}, + {"GL_T", 0x2001}, + {"GL_R", 0x2002}, + {"GL_Q", 0x2003}, + {"GL_MODULATE", 0x2100}, + {"GL_DECAL", 0x2101}, + {"GL_TEXTURE_ENV_MODE", 0x2200}, + {"GL_TEXTURE_ENV_COLOR", 0x2201}, + {"GL_TEXTURE_ENV", 0x2300}, + {"GL_EYE_LINEAR", 0x2400}, + {"GL_OBJECT_LINEAR", 0x2401}, + {"GL_SPHERE_MAP", 0x2402}, + {"GL_TEXTURE_GEN_MODE", 0x2500}, + {"GL_OBJECT_PLANE", 0x2501}, + {"GL_EYE_PLANE", 0x2502}, + {"GL_NEAREST", 0x2600}, + {"GL_LINEAR", 0x2601}, + {"GL_NEAREST_MIPMAP_NEAREST", 0x2700}, + {"GL_LINEAR_MIPMAP_NEAREST", 0x2701}, + {"GL_NEAREST_MIPMAP_LINEAR", 0x2702}, + {"GL_LINEAR_MIPMAP_LINEAR", 0x2703}, + {"GL_TEXTURE_MAG_FILTER", 0x2800}, + {"GL_TEXTURE_MIN_FILTER", 0x2801}, + {"GL_TEXTURE_WRAP_S", 0x2802}, + {"GL_TEXTURE_WRAP_T", 0x2803}, + {"GL_CLAMP", 0x2900}, + {"GL_REPEAT", 0x2901}, + {"GL_POLYGON_OFFSET_UNITS", 0x2A00}, + {"GL_POLYGON_OFFSET_POINT", 0x2A01}, + {"GL_POLYGON_OFFSET_LINE", 0x2A02}, + {"GL_R3_G3_B2", 0x2A10}, + {"GL_V2F", 0x2A20}, + {"GL_V3F", 0x2A21}, + {"GL_C4UB_V2F", 0x2A22}, + {"GL_C4UB_V3F", 0x2A23}, + {"GL_C3F_V3F", 0x2A24}, + {"GL_N3F_V3F", 0x2A25}, + {"GL_C4F_N3F_V3F", 0x2A26}, + {"GL_T2F_V3F", 0x2A27}, + {"GL_T4F_V4F", 0x2A28}, + {"GL_T2F_C4UB_V3F", 0x2A29}, + {"GL_T2F_C3F_V3F", 0x2A2A}, + {"GL_T2F_N3F_V3F", 0x2A2B}, + {"GL_T2F_C4F_N3F_V3F", 0x2A2C}, + {"GL_T4F_C4F_N3F_V4F", 0x2A2D}, + {"GL_CLIP_PLANE0", 0x3000}, + {"GL_CLIP_DISTANCE0", 0x3000}, + {"GL_CLIP_PLANE1", 0x3001}, + {"GL_CLIP_DISTANCE1", 0x3001}, + {"GL_CLIP_PLANE2", 0x3002}, + {"GL_CLIP_DISTANCE2", 0x3002}, + {"GL_CLIP_PLANE3", 0x3003}, + {"GL_CLIP_DISTANCE3", 0x3003}, + {"GL_CLIP_PLANE4", 0x3004}, + {"GL_CLIP_DISTANCE4", 0x3004}, + {"GL_CLIP_PLANE5", 0x3005}, + {"GL_CLIP_DISTANCE5", 0x3005}, + {"GL_CLIP_DISTANCE6", 0x3006}, + {"GL_CLIP_DISTANCE7", 0x3007}, + {"GL_LIGHT0", 0x4000}, + {"GL_LIGHT1", 0x4001}, + {"GL_LIGHT2", 0x4002}, + {"GL_LIGHT3", 0x4003}, + {"GL_LIGHT4", 0x4004}, + {"GL_LIGHT5", 0x4005}, + {"GL_LIGHT6", 0x4006}, + {"GL_LIGHT7", 0x4007}, + {"GL_ABGR_EXT", 0x8000}, + {"GL_CONSTANT_COLOR", 0x8001}, + {"GL_CONSTANT_COLOR_EXT", 0x8001}, + {"GL_ONE_MINUS_CONSTANT_COLOR", 0x8002}, + {"GL_ONE_MINUS_CONSTANT_COLOR_EXT", 0x8002}, + {"GL_CONSTANT_ALPHA", 0x8003}, + {"GL_CONSTANT_ALPHA_EXT", 0x8003}, + {"GL_ONE_MINUS_CONSTANT_ALPHA", 0x8004}, + {"GL_ONE_MINUS_CONSTANT_ALPHA_EXT", 0x8004}, + {"GL_BLEND_COLOR", 0x8005}, + {"GL_BLEND_COLOR_EXT", 0x8005}, + {"GL_FUNC_ADD", 0x8006}, + {"GL_FUNC_ADD_EXT", 0x8006}, + {"GL_FUNC_ADD_OES", 0x8006}, + {"GL_MIN", 0x8007}, + {"GL_MIN_EXT", 0x8007}, + {"GL_MAX", 0x8008}, + {"GL_MAX_EXT", 0x8008}, + {"GL_BLEND_EQUATION", 0x8009}, + {"GL_BLEND_EQUATION_EXT", 0x8009}, + {"GL_BLEND_EQUATION_OES", 0x8009}, + {"GL_BLEND_EQUATION_RGB", 0x8009}, + {"GL_BLEND_EQUATION_RGB_EXT", 0x8009}, + {"GL_BLEND_EQUATION_RGB_OES", 0x8009}, + {"GL_FUNC_SUBTRACT", 0x800A}, + {"GL_FUNC_SUBTRACT_EXT", 0x800A}, + {"GL_FUNC_SUBTRACT_OES", 0x800A}, + {"GL_FUNC_REVERSE_SUBTRACT", 0x800B}, + {"GL_FUNC_REVERSE_SUBTRACT_EXT", 0x800B}, + {"GL_FUNC_REVERSE_SUBTRACT_OES", 0x800B}, + {"GL_CMYK_EXT", 0x800C}, + {"GL_CMYKA_EXT", 0x800D}, + {"GL_PACK_CMYK_HINT_EXT", 0x800E}, + {"GL_UNPACK_CMYK_HINT_EXT", 0x800F}, + {"GL_CONVOLUTION_1D", 0x8010}, + {"GL_CONVOLUTION_1D_EXT", 0x8010}, + {"GL_CONVOLUTION_2D", 0x8011}, + {"GL_CONVOLUTION_2D_EXT", 0x8011}, + {"GL_SEPARABLE_2D", 0x8012}, + {"GL_SEPARABLE_2D_EXT", 0x8012}, + {"GL_CONVOLUTION_BORDER_MODE", 0x8013}, + {"GL_CONVOLUTION_BORDER_MODE_EXT", 0x8013}, + {"GL_CONVOLUTION_FILTER_SCALE", 0x8014}, + {"GL_CONVOLUTION_FILTER_SCALE_EXT", 0x8014}, + {"GL_CONVOLUTION_FILTER_BIAS", 0x8015}, + {"GL_CONVOLUTION_FILTER_BIAS_EXT", 0x8015}, + {"GL_REDUCE", 0x8016}, + {"GL_REDUCE_EXT", 0x8016}, + {"GL_CONVOLUTION_FORMAT", 0x8017}, + {"GL_CONVOLUTION_FORMAT_EXT", 0x8017}, + {"GL_CONVOLUTION_WIDTH", 0x8018}, + {"GL_CONVOLUTION_WIDTH_EXT", 0x8018}, + {"GL_CONVOLUTION_HEIGHT", 0x8019}, + {"GL_CONVOLUTION_HEIGHT_EXT", 0x8019}, + {"GL_MAX_CONVOLUTION_WIDTH", 0x801A}, + {"GL_MAX_CONVOLUTION_WIDTH_EXT", 0x801A}, + {"GL_MAX_CONVOLUTION_HEIGHT", 0x801B}, + {"GL_MAX_CONVOLUTION_HEIGHT_EXT", 0x801B}, + {"GL_POST_CONVOLUTION_RED_SCALE", 0x801C}, + {"GL_POST_CONVOLUTION_RED_SCALE_EXT", 0x801C}, + {"GL_POST_CONVOLUTION_GREEN_SCALE", 0x801D}, + {"GL_POST_CONVOLUTION_GREEN_SCALE_EXT", 0x801D}, + {"GL_POST_CONVOLUTION_BLUE_SCALE", 0x801E}, + {"GL_POST_CONVOLUTION_BLUE_SCALE_EXT", 0x801E}, + {"GL_POST_CONVOLUTION_ALPHA_SCALE", 0x801F}, + {"GL_POST_CONVOLUTION_ALPHA_SCALE_EXT", 0x801F}, + {"GL_POST_CONVOLUTION_RED_BIAS", 0x8020}, + {"GL_POST_CONVOLUTION_RED_BIAS_EXT", 0x8020}, + {"GL_POST_CONVOLUTION_GREEN_BIAS", 0x8021}, + {"GL_POST_CONVOLUTION_GREEN_BIAS_EXT", 0x8021}, + {"GL_POST_CONVOLUTION_BLUE_BIAS", 0x8022}, + {"GL_POST_CONVOLUTION_BLUE_BIAS_EXT", 0x8022}, + {"GL_POST_CONVOLUTION_ALPHA_BIAS", 0x8023}, + {"GL_POST_CONVOLUTION_ALPHA_BIAS_EXT", 0x8023}, + {"GL_HISTOGRAM", 0x8024}, + {"GL_HISTOGRAM_EXT", 0x8024}, + {"GL_PROXY_HISTOGRAM", 0x8025}, + {"GL_PROXY_HISTOGRAM_EXT", 0x8025}, + {"GL_HISTOGRAM_WIDTH", 0x8026}, + {"GL_HISTOGRAM_WIDTH_EXT", 0x8026}, + {"GL_HISTOGRAM_FORMAT", 0x8027}, + {"GL_HISTOGRAM_FORMAT_EXT", 0x8027}, + {"GL_HISTOGRAM_RED_SIZE", 0x8028}, + {"GL_HISTOGRAM_RED_SIZE_EXT", 0x8028}, + {"GL_HISTOGRAM_GREEN_SIZE", 0x8029}, + {"GL_HISTOGRAM_GREEN_SIZE_EXT", 0x8029}, + {"GL_HISTOGRAM_BLUE_SIZE", 0x802A}, + {"GL_HISTOGRAM_BLUE_SIZE_EXT", 0x802A}, + {"GL_HISTOGRAM_ALPHA_SIZE", 0x802B}, + {"GL_HISTOGRAM_ALPHA_SIZE_EXT", 0x802B}, + {"GL_HISTOGRAM_LUMINANCE_SIZE", 0x802C}, + {"GL_HISTOGRAM_LUMINANCE_SIZE_EXT", 0x802C}, + {"GL_HISTOGRAM_SINK", 0x802D}, + {"GL_HISTOGRAM_SINK_EXT", 0x802D}, + {"GL_MINMAX", 0x802E}, + {"GL_MINMAX_EXT", 0x802E}, + {"GL_MINMAX_FORMAT", 0x802F}, + {"GL_MINMAX_FORMAT_EXT", 0x802F}, + {"GL_MINMAX_SINK", 0x8030}, + {"GL_MINMAX_SINK_EXT", 0x8030}, + {"GL_TABLE_TOO_LARGE_EXT", 0x8031}, + {"GL_TABLE_TOO_LARGE", 0x8031}, + {"GL_UNSIGNED_BYTE_3_3_2", 0x8032}, + {"GL_UNSIGNED_BYTE_3_3_2_EXT", 0x8032}, + {"GL_UNSIGNED_SHORT_4_4_4_4", 0x8033}, + {"GL_UNSIGNED_SHORT_4_4_4_4_EXT", 0x8033}, + {"GL_UNSIGNED_SHORT_5_5_5_1", 0x8034}, + {"GL_UNSIGNED_SHORT_5_5_5_1_EXT", 0x8034}, + {"GL_UNSIGNED_INT_8_8_8_8", 0x8035}, + {"GL_UNSIGNED_INT_8_8_8_8_EXT", 0x8035}, + {"GL_UNSIGNED_INT_10_10_10_2", 0x8036}, + {"GL_UNSIGNED_INT_10_10_10_2_EXT", 0x8036}, + {"GL_POLYGON_OFFSET_EXT", 0x8037}, + {"GL_POLYGON_OFFSET_FILL", 0x8037}, + {"GL_POLYGON_OFFSET_FACTOR", 0x8038}, + {"GL_POLYGON_OFFSET_FACTOR_EXT", 0x8038}, + {"GL_POLYGON_OFFSET_BIAS_EXT", 0x8039}, + {"GL_RESCALE_NORMAL", 0x803A}, + {"GL_RESCALE_NORMAL_EXT", 0x803A}, + {"GL_ALPHA4", 0x803B}, + {"GL_ALPHA4_EXT", 0x803B}, + {"GL_ALPHA8", 0x803C}, + {"GL_ALPHA8_EXT", 0x803C}, + {"GL_ALPHA12", 0x803D}, + {"GL_ALPHA12_EXT", 0x803D}, + {"GL_ALPHA16", 0x803E}, + {"GL_ALPHA16_EXT", 0x803E}, + {"GL_LUMINANCE4", 0x803F}, + {"GL_LUMINANCE4_EXT", 0x803F}, + {"GL_LUMINANCE8", 0x8040}, + {"GL_LUMINANCE8_EXT", 0x8040}, + {"GL_LUMINANCE12", 0x8041}, + {"GL_LUMINANCE12_EXT", 0x8041}, + {"GL_LUMINANCE16", 0x8042}, + {"GL_LUMINANCE16_EXT", 0x8042}, + {"GL_LUMINANCE4_ALPHA4", 0x8043}, + {"GL_LUMINANCE4_ALPHA4_EXT", 0x8043}, + {"GL_LUMINANCE6_ALPHA2", 0x8044}, + {"GL_LUMINANCE6_ALPHA2_EXT", 0x8044}, + {"GL_LUMINANCE8_ALPHA8", 0x8045}, + {"GL_LUMINANCE8_ALPHA8_EXT", 0x8045}, + {"GL_LUMINANCE12_ALPHA4", 0x8046}, + {"GL_LUMINANCE12_ALPHA4_EXT", 0x8046}, + {"GL_LUMINANCE12_ALPHA12", 0x8047}, + {"GL_LUMINANCE12_ALPHA12_EXT", 0x8047}, + {"GL_LUMINANCE16_ALPHA16", 0x8048}, + {"GL_LUMINANCE16_ALPHA16_EXT", 0x8048}, + {"GL_INTENSITY", 0x8049}, + {"GL_INTENSITY_EXT", 0x8049}, + {"GL_INTENSITY4", 0x804A}, + {"GL_INTENSITY4_EXT", 0x804A}, + {"GL_INTENSITY8", 0x804B}, + {"GL_INTENSITY8_EXT", 0x804B}, + {"GL_INTENSITY12", 0x804C}, + {"GL_INTENSITY12_EXT", 0x804C}, + {"GL_INTENSITY16", 0x804D}, + {"GL_INTENSITY16_EXT", 0x804D}, + {"GL_RGB2_EXT", 0x804E}, + {"GL_RGB4", 0x804F}, + {"GL_RGB4_EXT", 0x804F}, + {"GL_RGB5", 0x8050}, + {"GL_RGB5_EXT", 0x8050}, + {"GL_RGB8", 0x8051}, + {"GL_RGB8_EXT", 0x8051}, + {"GL_RGB10", 0x8052}, + {"GL_RGB10_EXT", 0x8052}, + {"GL_RGB12", 0x8053}, + {"GL_RGB12_EXT", 0x8053}, + {"GL_RGB16", 0x8054}, + {"GL_RGB16_EXT", 0x8054}, + {"GL_RGBA2", 0x8055}, + {"GL_RGBA2_EXT", 0x8055}, + {"GL_RGBA4", 0x8056}, + {"GL_RGBA4_EXT", 0x8056}, + {"GL_RGBA4_OES", 0x8056}, + {"GL_RGB5_A1", 0x8057}, + {"GL_RGB5_A1_EXT", 0x8057}, + {"GL_RGB5_A1_OES", 0x8057}, + {"GL_RGBA8", 0x8058}, + {"GL_RGBA8_EXT", 0x8058}, + {"GL_RGBA8_OES", 0x8058}, + {"GL_RGB10_A2", 0x8059}, + {"GL_RGB10_A2_EXT", 0x8059}, + {"GL_RGBA12", 0x805A}, + {"GL_RGBA12_EXT", 0x805A}, + {"GL_RGBA16", 0x805B}, + {"GL_RGBA16_EXT", 0x805B}, + {"GL_TEXTURE_RED_SIZE", 0x805C}, + {"GL_TEXTURE_RED_SIZE_EXT", 0x805C}, + {"GL_TEXTURE_GREEN_SIZE", 0x805D}, + {"GL_TEXTURE_GREEN_SIZE_EXT", 0x805D}, + {"GL_TEXTURE_BLUE_SIZE", 0x805E}, + {"GL_TEXTURE_BLUE_SIZE_EXT", 0x805E}, + {"GL_TEXTURE_ALPHA_SIZE", 0x805F}, + {"GL_TEXTURE_ALPHA_SIZE_EXT", 0x805F}, + {"GL_TEXTURE_LUMINANCE_SIZE", 0x8060}, + {"GL_TEXTURE_LUMINANCE_SIZE_EXT", 0x8060}, + {"GL_TEXTURE_INTENSITY_SIZE", 0x8061}, + {"GL_TEXTURE_INTENSITY_SIZE_EXT", 0x8061}, + {"GL_REPLACE_EXT", 0x8062}, + {"GL_PROXY_TEXTURE_1D", 0x8063}, + {"GL_PROXY_TEXTURE_1D_EXT", 0x8063}, + {"GL_PROXY_TEXTURE_2D", 0x8064}, + {"GL_PROXY_TEXTURE_2D_EXT", 0x8064}, + {"GL_TEXTURE_TOO_LARGE_EXT", 0x8065}, + {"GL_TEXTURE_PRIORITY", 0x8066}, + {"GL_TEXTURE_PRIORITY_EXT", 0x8066}, + {"GL_TEXTURE_RESIDENT", 0x8067}, + {"GL_TEXTURE_RESIDENT_EXT", 0x8067}, + {"GL_TEXTURE_1D_BINDING_EXT", 0x8068}, + {"GL_TEXTURE_BINDING_1D", 0x8068}, + {"GL_TEXTURE_2D_BINDING_EXT", 0x8069}, + {"GL_TEXTURE_BINDING_2D", 0x8069}, + {"GL_TEXTURE_3D_BINDING_EXT", 0x806A}, + {"GL_TEXTURE_3D_BINDING_OES", 0x806A}, + {"GL_TEXTURE_BINDING_3D", 0x806A}, + {"GL_PACK_SKIP_IMAGES", 0x806B}, + {"GL_PACK_SKIP_IMAGES_EXT", 0x806B}, + {"GL_PACK_IMAGE_HEIGHT", 0x806C}, + {"GL_PACK_IMAGE_HEIGHT_EXT", 0x806C}, + {"GL_UNPACK_SKIP_IMAGES", 0x806D}, + {"GL_UNPACK_SKIP_IMAGES_EXT", 0x806D}, + {"GL_UNPACK_IMAGE_HEIGHT", 0x806E}, + {"GL_UNPACK_IMAGE_HEIGHT_EXT", 0x806E}, + {"GL_TEXTURE_3D", 0x806F}, + {"GL_TEXTURE_3D_EXT", 0x806F}, + {"GL_TEXTURE_3D_OES", 0x806F}, + {"GL_PROXY_TEXTURE_3D", 0x8070}, + {"GL_PROXY_TEXTURE_3D_EXT", 0x8070}, + {"GL_TEXTURE_DEPTH", 0x8071}, + {"GL_TEXTURE_DEPTH_EXT", 0x8071}, + {"GL_TEXTURE_WRAP_R", 0x8072}, + {"GL_TEXTURE_WRAP_R_EXT", 0x8072}, + {"GL_TEXTURE_WRAP_R_OES", 0x8072}, + {"GL_MAX_3D_TEXTURE_SIZE", 0x8073}, + {"GL_MAX_3D_TEXTURE_SIZE_EXT", 0x8073}, + {"GL_MAX_3D_TEXTURE_SIZE_OES", 0x8073}, + {"GL_VERTEX_ARRAY", 0x8074}, + {"GL_VERTEX_ARRAY_EXT", 0x8074}, + {"GL_VERTEX_ARRAY_KHR", 0x8074}, + {"GL_NORMAL_ARRAY", 0x8075}, + {"GL_NORMAL_ARRAY_EXT", 0x8075}, + {"GL_COLOR_ARRAY", 0x8076}, + {"GL_COLOR_ARRAY_EXT", 0x8076}, + {"GL_INDEX_ARRAY", 0x8077}, + {"GL_INDEX_ARRAY_EXT", 0x8077}, + {"GL_TEXTURE_COORD_ARRAY", 0x8078}, + {"GL_TEXTURE_COORD_ARRAY_EXT", 0x8078}, + {"GL_EDGE_FLAG_ARRAY", 0x8079}, + {"GL_EDGE_FLAG_ARRAY_EXT", 0x8079}, + {"GL_VERTEX_ARRAY_SIZE", 0x807A}, + {"GL_VERTEX_ARRAY_SIZE_EXT", 0x807A}, + {"GL_VERTEX_ARRAY_TYPE", 0x807B}, + {"GL_VERTEX_ARRAY_TYPE_EXT", 0x807B}, + {"GL_VERTEX_ARRAY_STRIDE", 0x807C}, + {"GL_VERTEX_ARRAY_STRIDE_EXT", 0x807C}, + {"GL_VERTEX_ARRAY_COUNT_EXT", 0x807D}, + {"GL_NORMAL_ARRAY_TYPE", 0x807E}, + {"GL_NORMAL_ARRAY_TYPE_EXT", 0x807E}, + {"GL_NORMAL_ARRAY_STRIDE", 0x807F}, + {"GL_NORMAL_ARRAY_STRIDE_EXT", 0x807F}, + {"GL_NORMAL_ARRAY_COUNT_EXT", 0x8080}, + {"GL_COLOR_ARRAY_SIZE", 0x8081}, + {"GL_COLOR_ARRAY_SIZE_EXT", 0x8081}, + {"GL_COLOR_ARRAY_TYPE", 0x8082}, + {"GL_COLOR_ARRAY_TYPE_EXT", 0x8082}, + {"GL_COLOR_ARRAY_STRIDE", 0x8083}, + {"GL_COLOR_ARRAY_STRIDE_EXT", 0x8083}, + {"GL_COLOR_ARRAY_COUNT_EXT", 0x8084}, + {"GL_INDEX_ARRAY_TYPE", 0x8085}, + {"GL_INDEX_ARRAY_TYPE_EXT", 0x8085}, + {"GL_INDEX_ARRAY_STRIDE", 0x8086}, + {"GL_INDEX_ARRAY_STRIDE_EXT", 0x8086}, + {"GL_INDEX_ARRAY_COUNT_EXT", 0x8087}, + {"GL_TEXTURE_COORD_ARRAY_SIZE", 0x8088}, + {"GL_TEXTURE_COORD_ARRAY_SIZE_EXT", 0x8088}, + {"GL_TEXTURE_COORD_ARRAY_TYPE", 0x8089}, + {"GL_TEXTURE_COORD_ARRAY_TYPE_EXT", 0x8089}, + {"GL_TEXTURE_COORD_ARRAY_STRIDE", 0x808A}, + {"GL_TEXTURE_COORD_ARRAY_STRIDE_EXT", 0x808A}, + {"GL_TEXTURE_COORD_ARRAY_COUNT_EXT", 0x808B}, + {"GL_EDGE_FLAG_ARRAY_STRIDE", 0x808C}, + {"GL_EDGE_FLAG_ARRAY_STRIDE_EXT", 0x808C}, + {"GL_EDGE_FLAG_ARRAY_COUNT_EXT", 0x808D}, + {"GL_VERTEX_ARRAY_POINTER", 0x808E}, + {"GL_VERTEX_ARRAY_POINTER_EXT", 0x808E}, + {"GL_NORMAL_ARRAY_POINTER", 0x808F}, + {"GL_NORMAL_ARRAY_POINTER_EXT", 0x808F}, + {"GL_COLOR_ARRAY_POINTER", 0x8090}, + {"GL_COLOR_ARRAY_POINTER_EXT", 0x8090}, + {"GL_INDEX_ARRAY_POINTER", 0x8091}, + {"GL_INDEX_ARRAY_POINTER_EXT", 0x8091}, + {"GL_TEXTURE_COORD_ARRAY_POINTER", 0x8092}, + {"GL_TEXTURE_COORD_ARRAY_POINTER_EXT", 0x8092}, + {"GL_EDGE_FLAG_ARRAY_POINTER", 0x8093}, + {"GL_EDGE_FLAG_ARRAY_POINTER_EXT", 0x8093}, + {"GL_INTERLACE_SGIX", 0x8094}, + {"GL_DETAIL_TEXTURE_2D_SGIS", 0x8095}, + {"GL_DETAIL_TEXTURE_2D_BINDING_SGIS", 0x8096}, + {"GL_LINEAR_DETAIL_SGIS", 0x8097}, + {"GL_LINEAR_DETAIL_ALPHA_SGIS", 0x8098}, + {"GL_LINEAR_DETAIL_COLOR_SGIS", 0x8099}, + {"GL_DETAIL_TEXTURE_LEVEL_SGIS", 0x809A}, + {"GL_DETAIL_TEXTURE_MODE_SGIS", 0x809B}, + {"GL_DETAIL_TEXTURE_FUNC_POINTS_SGIS", 0x809C}, + {"GL_MULTISAMPLE", 0x809D}, + {"GL_MULTISAMPLE_ARB", 0x809D}, + {"GL_MULTISAMPLE_EXT", 0x809D}, + {"GL_MULTISAMPLE_SGIS", 0x809D}, + {"GL_SAMPLE_ALPHA_TO_COVERAGE", 0x809E}, + {"GL_SAMPLE_ALPHA_TO_COVERAGE_ARB", 0x809E}, + {"GL_SAMPLE_ALPHA_TO_MASK_EXT", 0x809E}, + {"GL_SAMPLE_ALPHA_TO_MASK_SGIS", 0x809E}, + {"GL_SAMPLE_ALPHA_TO_ONE", 0x809F}, + {"GL_SAMPLE_ALPHA_TO_ONE_ARB", 0x809F}, + {"GL_SAMPLE_ALPHA_TO_ONE_EXT", 0x809F}, + {"GL_SAMPLE_ALPHA_TO_ONE_SGIS", 0x809F}, + {"GL_SAMPLE_COVERAGE", 0x80A0}, + {"GL_SAMPLE_COVERAGE_ARB", 0x80A0}, + {"GL_SAMPLE_MASK_EXT", 0x80A0}, + {"GL_SAMPLE_MASK_SGIS", 0x80A0}, + {"GL_1PASS_EXT", 0x80A1}, + {"GL_1PASS_SGIS", 0x80A1}, + {"GL_2PASS_0_EXT", 0x80A2}, + {"GL_2PASS_0_SGIS", 0x80A2}, + {"GL_2PASS_1_EXT", 0x80A3}, + {"GL_2PASS_1_SGIS", 0x80A3}, + {"GL_4PASS_0_EXT", 0x80A4}, + {"GL_4PASS_0_SGIS", 0x80A4}, + {"GL_4PASS_1_EXT", 0x80A5}, + {"GL_4PASS_1_SGIS", 0x80A5}, + {"GL_4PASS_2_EXT", 0x80A6}, + {"GL_4PASS_2_SGIS", 0x80A6}, + {"GL_4PASS_3_EXT", 0x80A7}, + {"GL_4PASS_3_SGIS", 0x80A7}, + {"GL_SAMPLE_BUFFERS", 0x80A8}, + {"GL_SAMPLE_BUFFERS_ARB", 0x80A8}, + {"GL_SAMPLE_BUFFERS_EXT", 0x80A8}, + {"GL_SAMPLE_BUFFERS_SGIS", 0x80A8}, + {"GL_SAMPLES", 0x80A9}, + {"GL_SAMPLES_ARB", 0x80A9}, + {"GL_SAMPLES_EXT", 0x80A9}, + {"GL_SAMPLES_SGIS", 0x80A9}, + {"GL_SAMPLE_COVERAGE_VALUE", 0x80AA}, + {"GL_SAMPLE_COVERAGE_VALUE_ARB", 0x80AA}, + {"GL_SAMPLE_MASK_VALUE_EXT", 0x80AA}, + {"GL_SAMPLE_MASK_VALUE_SGIS", 0x80AA}, + {"GL_SAMPLE_COVERAGE_INVERT", 0x80AB}, + {"GL_SAMPLE_COVERAGE_INVERT_ARB", 0x80AB}, + {"GL_SAMPLE_MASK_INVERT_EXT", 0x80AB}, + {"GL_SAMPLE_MASK_INVERT_SGIS", 0x80AB}, + {"GL_SAMPLE_PATTERN_EXT", 0x80AC}, + {"GL_SAMPLE_PATTERN_SGIS", 0x80AC}, + {"GL_LINEAR_SHARPEN_SGIS", 0x80AD}, + {"GL_LINEAR_SHARPEN_ALPHA_SGIS", 0x80AE}, + {"GL_LINEAR_SHARPEN_COLOR_SGIS", 0x80AF}, + {"GL_SHARPEN_TEXTURE_FUNC_POINTS_SGIS", 0x80B0}, + {"GL_COLOR_MATRIX", 0x80B1}, + {"GL_COLOR_MATRIX_SGI", 0x80B1}, + {"GL_COLOR_MATRIX_STACK_DEPTH", 0x80B2}, + {"GL_COLOR_MATRIX_STACK_DEPTH_SGI", 0x80B2}, + {"GL_MAX_COLOR_MATRIX_STACK_DEPTH", 0x80B3}, + {"GL_MAX_COLOR_MATRIX_STACK_DEPTH_SGI", 0x80B3}, + {"GL_POST_COLOR_MATRIX_RED_SCALE", 0x80B4}, + {"GL_POST_COLOR_MATRIX_RED_SCALE_SGI", 0x80B4}, + {"GL_POST_COLOR_MATRIX_GREEN_SCALE", 0x80B5}, + {"GL_POST_COLOR_MATRIX_GREEN_SCALE_SGI", 0x80B5}, + {"GL_POST_COLOR_MATRIX_BLUE_SCALE", 0x80B6}, + {"GL_POST_COLOR_MATRIX_BLUE_SCALE_SGI", 0x80B6}, + {"GL_POST_COLOR_MATRIX_ALPHA_SCALE", 0x80B7}, + {"GL_POST_COLOR_MATRIX_ALPHA_SCALE_SGI", 0x80B7}, + {"GL_POST_COLOR_MATRIX_RED_BIAS", 0x80B8}, + {"GL_POST_COLOR_MATRIX_RED_BIAS_SGI", 0x80B8}, + {"GL_POST_COLOR_MATRIX_GREEN_BIAS", 0x80B9}, + {"GL_POST_COLOR_MATRIX_GREEN_BIAS_SGI", 0x80B9}, + {"GL_POST_COLOR_MATRIX_BLUE_BIAS", 0x80BA}, + {"GL_POST_COLOR_MATRIX_BLUE_BIAS_SGI", 0x80BA}, + {"GL_POST_COLOR_MATRIX_ALPHA_BIAS", 0x80BB}, + {"GL_POST_COLOR_MATRIX_ALPHA_BIAS_SGI", 0x80BB}, + {"GL_TEXTURE_COLOR_TABLE_SGI", 0x80BC}, + {"GL_PROXY_TEXTURE_COLOR_TABLE_SGI", 0x80BD}, + {"GL_TEXTURE_ENV_BIAS_SGIX", 0x80BE}, + {"GL_SHADOW_AMBIENT_SGIX", 0x80BF}, + {"GL_TEXTURE_COMPARE_FAIL_VALUE_ARB", 0x80BF}, + {"GL_BLEND_DST_RGB", 0x80C8}, + {"GL_BLEND_DST_RGB_EXT", 0x80C8}, + {"GL_BLEND_DST_RGB_OES", 0x80C8}, + {"GL_BLEND_SRC_RGB", 0x80C9}, + {"GL_BLEND_SRC_RGB_EXT", 0x80C9}, + {"GL_BLEND_SRC_RGB_OES", 0x80C9}, + {"GL_BLEND_DST_ALPHA", 0x80CA}, + {"GL_BLEND_DST_ALPHA_EXT", 0x80CA}, + {"GL_BLEND_DST_ALPHA_OES", 0x80CA}, + {"GL_BLEND_SRC_ALPHA", 0x80CB}, + {"GL_BLEND_SRC_ALPHA_EXT", 0x80CB}, + {"GL_BLEND_SRC_ALPHA_OES", 0x80CB}, + {"GL_422_EXT", 0x80CC}, + {"GL_422_REV_EXT", 0x80CD}, + {"GL_422_AVERAGE_EXT", 0x80CE}, + {"GL_422_REV_AVERAGE_EXT", 0x80CF}, + {"GL_COLOR_TABLE", 0x80D0}, + {"GL_COLOR_TABLE_SGI", 0x80D0}, + {"GL_POST_CONVOLUTION_COLOR_TABLE", 0x80D1}, + {"GL_POST_CONVOLUTION_COLOR_TABLE_SGI", 0x80D1}, + {"GL_POST_COLOR_MATRIX_COLOR_TABLE", 0x80D2}, + {"GL_POST_COLOR_MATRIX_COLOR_TABLE_SGI", 0x80D2}, + {"GL_PROXY_COLOR_TABLE", 0x80D3}, + {"GL_PROXY_COLOR_TABLE_SGI", 0x80D3}, + {"GL_PROXY_POST_CONVOLUTION_COLOR_TABLE", 0x80D4}, + {"GL_PROXY_POST_CONVOLUTION_COLOR_TABLE_SGI", 0x80D4}, + {"GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE", 0x80D5}, + {"GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE_SGI", 0x80D5}, + {"GL_COLOR_TABLE_SCALE", 0x80D6}, + {"GL_COLOR_TABLE_SCALE_SGI", 0x80D6}, + {"GL_COLOR_TABLE_BIAS", 0x80D7}, + {"GL_COLOR_TABLE_BIAS_SGI", 0x80D7}, + {"GL_COLOR_TABLE_FORMAT", 0x80D8}, + {"GL_COLOR_TABLE_FORMAT_SGI", 0x80D8}, + {"GL_COLOR_TABLE_WIDTH", 0x80D9}, + {"GL_COLOR_TABLE_WIDTH_SGI", 0x80D9}, + {"GL_COLOR_TABLE_RED_SIZE", 0x80DA}, + {"GL_COLOR_TABLE_RED_SIZE_SGI", 0x80DA}, + {"GL_COLOR_TABLE_GREEN_SIZE", 0x80DB}, + {"GL_COLOR_TABLE_GREEN_SIZE_SGI", 0x80DB}, + {"GL_COLOR_TABLE_BLUE_SIZE", 0x80DC}, + {"GL_COLOR_TABLE_BLUE_SIZE_SGI", 0x80DC}, + {"GL_COLOR_TABLE_ALPHA_SIZE", 0x80DD}, + {"GL_COLOR_TABLE_ALPHA_SIZE_SGI", 0x80DD}, + {"GL_COLOR_TABLE_LUMINANCE_SIZE", 0x80DE}, + {"GL_COLOR_TABLE_LUMINANCE_SIZE_SGI", 0x80DE}, + {"GL_COLOR_TABLE_INTENSITY_SIZE", 0x80DF}, + {"GL_COLOR_TABLE_INTENSITY_SIZE_SGI", 0x80DF}, + {"GL_BGR", 0x80E0}, + {"GL_BGR_EXT", 0x80E0}, + {"GL_BGRA", 0x80E1}, + {"GL_BGRA_EXT", 0x80E1}, + {"GL_COLOR_INDEX1_EXT", 0x80E2}, + {"GL_COLOR_INDEX2_EXT", 0x80E3}, + {"GL_COLOR_INDEX4_EXT", 0x80E4}, + {"GL_COLOR_INDEX8_EXT", 0x80E5}, + {"GL_COLOR_INDEX12_EXT", 0x80E6}, + {"GL_COLOR_INDEX16_EXT", 0x80E7}, + {"GL_MAX_ELEMENTS_VERTICES", 0x80E8}, + {"GL_MAX_ELEMENTS_VERTICES_EXT", 0x80E8}, + {"GL_MAX_ELEMENTS_INDICES", 0x80E9}, + {"GL_MAX_ELEMENTS_INDICES_EXT", 0x80E9}, + {"GL_PHONG_WIN", 0x80EA}, + {"GL_PHONG_HINT_WIN", 0x80EB}, + {"GL_FOG_SPECULAR_TEXTURE_WIN", 0x80EC}, + {"GL_TEXTURE_INDEX_SIZE_EXT", 0x80ED}, + {"GL_PARAMETER_BUFFER_ARB", 0x80EE}, + {"GL_PARAMETER_BUFFER_BINDING_ARB", 0x80EF}, + {"GL_CLIP_VOLUME_CLIPPING_HINT_EXT", 0x80F0}, + {"GL_DUAL_ALPHA4_SGIS", 0x8110}, + {"GL_DUAL_ALPHA8_SGIS", 0x8111}, + {"GL_DUAL_ALPHA12_SGIS", 0x8112}, + {"GL_DUAL_ALPHA16_SGIS", 0x8113}, + {"GL_DUAL_LUMINANCE4_SGIS", 0x8114}, + {"GL_DUAL_LUMINANCE8_SGIS", 0x8115}, + {"GL_DUAL_LUMINANCE12_SGIS", 0x8116}, + {"GL_DUAL_LUMINANCE16_SGIS", 0x8117}, + {"GL_DUAL_INTENSITY4_SGIS", 0x8118}, + {"GL_DUAL_INTENSITY8_SGIS", 0x8119}, + {"GL_DUAL_INTENSITY12_SGIS", 0x811A}, + {"GL_DUAL_INTENSITY16_SGIS", 0x811B}, + {"GL_DUAL_LUMINANCE_ALPHA4_SGIS", 0x811C}, + {"GL_DUAL_LUMINANCE_ALPHA8_SGIS", 0x811D}, + {"GL_QUAD_ALPHA4_SGIS", 0x811E}, + {"GL_QUAD_ALPHA8_SGIS", 0x811F}, + {"GL_QUAD_LUMINANCE4_SGIS", 0x8120}, + {"GL_QUAD_LUMINANCE8_SGIS", 0x8121}, + {"GL_QUAD_INTENSITY4_SGIS", 0x8122}, + {"GL_QUAD_INTENSITY8_SGIS", 0x8123}, + {"GL_DUAL_TEXTURE_SELECT_SGIS", 0x8124}, + {"GL_QUAD_TEXTURE_SELECT_SGIS", 0x8125}, + {"GL_POINT_SIZE_MIN", 0x8126}, + {"GL_POINT_SIZE_MIN_ARB", 0x8126}, + {"GL_POINT_SIZE_MIN_EXT", 0x8126}, + {"GL_POINT_SIZE_MIN_SGIS", 0x8126}, + {"GL_POINT_SIZE_MAX", 0x8127}, + {"GL_POINT_SIZE_MAX_ARB", 0x8127}, + {"GL_POINT_SIZE_MAX_EXT", 0x8127}, + {"GL_POINT_SIZE_MAX_SGIS", 0x8127}, + {"GL_POINT_FADE_THRESHOLD_SIZE", 0x8128}, + {"GL_POINT_FADE_THRESHOLD_SIZE_ARB", 0x8128}, + {"GL_POINT_FADE_THRESHOLD_SIZE_EXT", 0x8128}, + {"GL_POINT_FADE_THRESHOLD_SIZE_SGIS", 0x8128}, + {"GL_DISTANCE_ATTENUATION_EXT", 0x8129}, + {"GL_DISTANCE_ATTENUATION_SGIS", 0x8129}, + {"GL_POINT_DISTANCE_ATTENUATION", 0x8129}, + {"GL_POINT_DISTANCE_ATTENUATION_ARB", 0x8129}, + {"GL_FOG_FUNC_SGIS", 0x812A}, + {"GL_FOG_FUNC_POINTS_SGIS", 0x812B}, + {"GL_MAX_FOG_FUNC_POINTS_SGIS", 0x812C}, + {"GL_CLAMP_TO_BORDER", 0x812D}, + {"GL_CLAMP_TO_BORDER_ARB", 0x812D}, + {"GL_CLAMP_TO_BORDER_NV", 0x812D}, + {"GL_CLAMP_TO_BORDER_SGIS", 0x812D}, + {"GL_TEXTURE_MULTI_BUFFER_HINT_SGIX", 0x812E}, + {"GL_CLAMP_TO_EDGE", 0x812F}, + {"GL_CLAMP_TO_EDGE_SGIS", 0x812F}, + {"GL_PACK_SKIP_VOLUMES_SGIS", 0x8130}, + {"GL_PACK_IMAGE_DEPTH_SGIS", 0x8131}, + {"GL_UNPACK_SKIP_VOLUMES_SGIS", 0x8132}, + {"GL_UNPACK_IMAGE_DEPTH_SGIS", 0x8133}, + {"GL_TEXTURE_4D_SGIS", 0x8134}, + {"GL_PROXY_TEXTURE_4D_SGIS", 0x8135}, + {"GL_TEXTURE_4DSIZE_SGIS", 0x8136}, + {"GL_TEXTURE_WRAP_Q_SGIS", 0x8137}, + {"GL_MAX_4D_TEXTURE_SIZE_SGIS", 0x8138}, + {"GL_PIXEL_TEX_GEN_SGIX", 0x8139}, + {"GL_TEXTURE_MIN_LOD", 0x813A}, + {"GL_TEXTURE_MIN_LOD_SGIS", 0x813A}, + {"GL_TEXTURE_MAX_LOD", 0x813B}, + {"GL_TEXTURE_MAX_LOD_SGIS", 0x813B}, + {"GL_TEXTURE_BASE_LEVEL", 0x813C}, + {"GL_TEXTURE_BASE_LEVEL_SGIS", 0x813C}, + {"GL_TEXTURE_MAX_LEVEL", 0x813D}, + {"GL_TEXTURE_MAX_LEVEL_SGIS", 0x813D}, + {"GL_PIXEL_TILE_BEST_ALIGNMENT_SGIX", 0x813E}, + {"GL_PIXEL_TILE_CACHE_INCREMENT_SGIX", 0x813F}, + {"GL_PIXEL_TILE_WIDTH_SGIX", 0x8140}, + {"GL_PIXEL_TILE_HEIGHT_SGIX", 0x8141}, + {"GL_PIXEL_TILE_GRID_WIDTH_SGIX", 0x8142}, + {"GL_PIXEL_TILE_GRID_HEIGHT_SGIX", 0x8143}, + {"GL_PIXEL_TILE_GRID_DEPTH_SGIX", 0x8144}, + {"GL_PIXEL_TILE_CACHE_SIZE_SGIX", 0x8145}, + {"GL_FILTER4_SGIS", 0x8146}, + {"GL_TEXTURE_FILTER4_SIZE_SGIS", 0x8147}, + {"GL_SPRITE_SGIX", 0x8148}, + {"GL_SPRITE_MODE_SGIX", 0x8149}, + {"GL_SPRITE_AXIS_SGIX", 0x814A}, + {"GL_SPRITE_TRANSLATION_SGIX", 0x814B}, + {"GL_SPRITE_AXIAL_SGIX", 0x814C}, + {"GL_SPRITE_OBJECT_ALIGNED_SGIX", 0x814D}, + {"GL_SPRITE_EYE_ALIGNED_SGIX", 0x814E}, + {"GL_TEXTURE_4D_BINDING_SGIS", 0x814F}, + {"GL_IGNORE_BORDER_HP", 0x8150}, + {"GL_CONSTANT_BORDER", 0x8151}, + {"GL_CONSTANT_BORDER_HP", 0x8151}, + {"GL_REPLICATE_BORDER", 0x8153}, + {"GL_REPLICATE_BORDER_HP", 0x8153}, + {"GL_CONVOLUTION_BORDER_COLOR", 0x8154}, + {"GL_CONVOLUTION_BORDER_COLOR_HP", 0x8154}, + {"GL_IMAGE_SCALE_X_HP", 0x8155}, + {"GL_IMAGE_SCALE_Y_HP", 0x8156}, + {"GL_IMAGE_TRANSLATE_X_HP", 0x8157}, + {"GL_IMAGE_TRANSLATE_Y_HP", 0x8158}, + {"GL_IMAGE_ROTATE_ANGLE_HP", 0x8159}, + {"GL_IMAGE_ROTATE_ORIGIN_X_HP", 0x815A}, + {"GL_IMAGE_ROTATE_ORIGIN_Y_HP", 0x815B}, + {"GL_IMAGE_MAG_FILTER_HP", 0x815C}, + {"GL_IMAGE_MIN_FILTER_HP", 0x815D}, + {"GL_IMAGE_CUBIC_WEIGHT_HP", 0x815E}, + {"GL_CUBIC_HP", 0x815F}, + {"GL_AVERAGE_HP", 0x8160}, + {"GL_IMAGE_TRANSFORM_2D_HP", 0x8161}, + {"GL_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP", 0x8162}, + {"GL_PROXY_POST_IMAGE_TRANSFORM_COLOR_TABLE_HP", 0x8163}, + {"GL_OCCLUSION_TEST_HP", 0x8165}, + {"GL_OCCLUSION_TEST_RESULT_HP", 0x8166}, + {"GL_TEXTURE_LIGHTING_MODE_HP", 0x8167}, + {"GL_TEXTURE_POST_SPECULAR_HP", 0x8168}, + {"GL_TEXTURE_PRE_SPECULAR_HP", 0x8169}, + {"GL_LINEAR_CLIPMAP_LINEAR_SGIX", 0x8170}, + {"GL_TEXTURE_CLIPMAP_CENTER_SGIX", 0x8171}, + {"GL_TEXTURE_CLIPMAP_FRAME_SGIX", 0x8172}, + {"GL_TEXTURE_CLIPMAP_OFFSET_SGIX", 0x8173}, + {"GL_TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX", 0x8174}, + {"GL_TEXTURE_CLIPMAP_LOD_OFFSET_SGIX", 0x8175}, + {"GL_TEXTURE_CLIPMAP_DEPTH_SGIX", 0x8176}, + {"GL_MAX_CLIPMAP_DEPTH_SGIX", 0x8177}, + {"GL_MAX_CLIPMAP_VIRTUAL_DEPTH_SGIX", 0x8178}, + {"GL_POST_TEXTURE_FILTER_BIAS_SGIX", 0x8179}, + {"GL_POST_TEXTURE_FILTER_SCALE_SGIX", 0x817A}, + {"GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX", 0x817B}, + {"GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX", 0x817C}, + {"GL_REFERENCE_PLANE_SGIX", 0x817D}, + {"GL_REFERENCE_PLANE_EQUATION_SGIX", 0x817E}, + {"GL_IR_INSTRUMENT1_SGIX", 0x817F}, + {"GL_INSTRUMENT_BUFFER_POINTER_SGIX", 0x8180}, + {"GL_INSTRUMENT_MEASUREMENTS_SGIX", 0x8181}, + {"GL_LIST_PRIORITY_SGIX", 0x8182}, + {"GL_CALLIGRAPHIC_FRAGMENT_SGIX", 0x8183}, + {"GL_PIXEL_TEX_GEN_Q_CEILING_SGIX", 0x8184}, + {"GL_PIXEL_TEX_GEN_Q_ROUND_SGIX", 0x8185}, + {"GL_PIXEL_TEX_GEN_Q_FLOOR_SGIX", 0x8186}, + {"GL_PIXEL_TEX_GEN_ALPHA_REPLACE_SGIX", 0x8187}, + {"GL_PIXEL_TEX_GEN_ALPHA_NO_REPLACE_SGIX", 0x8188}, + {"GL_PIXEL_TEX_GEN_ALPHA_LS_SGIX", 0x8189}, + {"GL_PIXEL_TEX_GEN_ALPHA_MS_SGIX", 0x818A}, + {"GL_FRAMEZOOM_SGIX", 0x818B}, + {"GL_FRAMEZOOM_FACTOR_SGIX", 0x818C}, + {"GL_MAX_FRAMEZOOM_FACTOR_SGIX", 0x818D}, + {"GL_TEXTURE_LOD_BIAS_S_SGIX", 0x818E}, + {"GL_TEXTURE_LOD_BIAS_T_SGIX", 0x818F}, + {"GL_TEXTURE_LOD_BIAS_R_SGIX", 0x8190}, + {"GL_GENERATE_MIPMAP", 0x8191}, + {"GL_GENERATE_MIPMAP_SGIS", 0x8191}, + {"GL_GENERATE_MIPMAP_HINT", 0x8192}, + {"GL_GENERATE_MIPMAP_HINT_SGIS", 0x8192}, + {"GL_GEOMETRY_DEFORMATION_SGIX", 0x8194}, + {"GL_TEXTURE_DEFORMATION_SGIX", 0x8195}, + {"GL_DEFORMATIONS_MASK_SGIX", 0x8196}, + {"GL_MAX_DEFORMATION_ORDER_SGIX", 0x8197}, + {"GL_FOG_OFFSET_SGIX", 0x8198}, + {"GL_FOG_OFFSET_VALUE_SGIX", 0x8199}, + {"GL_TEXTURE_COMPARE_SGIX", 0x819A}, + {"GL_TEXTURE_COMPARE_OPERATOR_SGIX", 0x819B}, + {"GL_TEXTURE_LEQUAL_R_SGIX", 0x819C}, + {"GL_TEXTURE_GEQUAL_R_SGIX", 0x819D}, + {"GL_DEPTH_COMPONENT16", 0x81A5}, + {"GL_DEPTH_COMPONENT16_ARB", 0x81A5}, + {"GL_DEPTH_COMPONENT16_OES", 0x81A5}, + {"GL_DEPTH_COMPONENT16_SGIX", 0x81A5}, + {"GL_DEPTH_COMPONENT24", 0x81A6}, + {"GL_DEPTH_COMPONENT24_ARB", 0x81A6}, + {"GL_DEPTH_COMPONENT24_OES", 0x81A6}, + {"GL_DEPTH_COMPONENT24_SGIX", 0x81A6}, + {"GL_DEPTH_COMPONENT32", 0x81A7}, + {"GL_DEPTH_COMPONENT32_ARB", 0x81A7}, + {"GL_DEPTH_COMPONENT32_OES", 0x81A7}, + {"GL_DEPTH_COMPONENT32_SGIX", 0x81A7}, + {"GL_ARRAY_ELEMENT_LOCK_FIRST_EXT", 0x81A8}, + {"GL_ARRAY_ELEMENT_LOCK_COUNT_EXT", 0x81A9}, + {"GL_CULL_VERTEX_EXT", 0x81AA}, + {"GL_CULL_VERTEX_EYE_POSITION_EXT", 0x81AB}, + {"GL_CULL_VERTEX_OBJECT_POSITION_EXT", 0x81AC}, + {"GL_IUI_V2F_EXT", 0x81AD}, + {"GL_IUI_V3F_EXT", 0x81AE}, + {"GL_IUI_N3F_V2F_EXT", 0x81AF}, + {"GL_IUI_N3F_V3F_EXT", 0x81B0}, + {"GL_T2F_IUI_V2F_EXT", 0x81B1}, + {"GL_T2F_IUI_V3F_EXT", 0x81B2}, + {"GL_T2F_IUI_N3F_V2F_EXT", 0x81B3}, + {"GL_T2F_IUI_N3F_V3F_EXT", 0x81B4}, + {"GL_INDEX_TEST_EXT", 0x81B5}, + {"GL_INDEX_TEST_FUNC_EXT", 0x81B6}, + {"GL_INDEX_TEST_REF_EXT", 0x81B7}, + {"GL_INDEX_MATERIAL_EXT", 0x81B8}, + {"GL_INDEX_MATERIAL_PARAMETER_EXT", 0x81B9}, + {"GL_INDEX_MATERIAL_FACE_EXT", 0x81BA}, + {"GL_YCRCB_422_SGIX", 0x81BB}, + {"GL_YCRCB_444_SGIX", 0x81BC}, + {"GL_WRAP_BORDER_SUN", 0x81D4}, + {"GL_UNPACK_CONSTANT_DATA_SUNX", 0x81D5}, + {"GL_TEXTURE_CONSTANT_DATA_SUNX", 0x81D6}, + {"GL_TRIANGLE_LIST_SUN", 0x81D7}, + {"GL_REPLACEMENT_CODE_SUN", 0x81D8}, + {"GL_GLOBAL_ALPHA_SUN", 0x81D9}, + {"GL_GLOBAL_ALPHA_FACTOR_SUN", 0x81DA}, + {"GL_TEXTURE_COLOR_WRITEMASK_SGIS", 0x81EF}, + {"GL_EYE_DISTANCE_TO_POINT_SGIS", 0x81F0}, + {"GL_OBJECT_DISTANCE_TO_POINT_SGIS", 0x81F1}, + {"GL_EYE_DISTANCE_TO_LINE_SGIS", 0x81F2}, + {"GL_OBJECT_DISTANCE_TO_LINE_SGIS", 0x81F3}, + {"GL_EYE_POINT_SGIS", 0x81F4}, + {"GL_OBJECT_POINT_SGIS", 0x81F5}, + {"GL_EYE_LINE_SGIS", 0x81F6}, + {"GL_OBJECT_LINE_SGIS", 0x81F7}, + {"GL_LIGHT_MODEL_COLOR_CONTROL", 0x81F8}, + {"GL_LIGHT_MODEL_COLOR_CONTROL_EXT", 0x81F8}, + {"GL_SINGLE_COLOR", 0x81F9}, + {"GL_SINGLE_COLOR_EXT", 0x81F9}, + {"GL_SEPARATE_SPECULAR_COLOR", 0x81FA}, + {"GL_SEPARATE_SPECULAR_COLOR_EXT", 0x81FA}, + {"GL_SHARED_TEXTURE_PALETTE_EXT", 0x81FB}, + {"GL_TEXT_FRAGMENT_SHADER_ATI", 0x8200}, + {"GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING", 0x8210}, + {"GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE", 0x8211}, + {"GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT", 0x8211}, + {"GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE", 0x8212}, + {"GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE", 0x8213}, + {"GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE", 0x8214}, + {"GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE", 0x8215}, + {"GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE", 0x8216}, + {"GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE", 0x8217}, + {"GL_FRAMEBUFFER_DEFAULT", 0x8218}, + {"GL_FRAMEBUFFER_UNDEFINED", 0x8219}, + {"GL_FRAMEBUFFER_UNDEFINED_OES", 0x8219}, + {"GL_DEPTH_STENCIL_ATTACHMENT", 0x821A}, + {"GL_MAJOR_VERSION", 0x821B}, + {"GL_MINOR_VERSION", 0x821C}, + {"GL_NUM_EXTENSIONS", 0x821D}, + {"GL_CONTEXT_FLAGS", 0x821E}, + {"GL_BUFFER_IMMUTABLE_STORAGE", 0x821F}, + {"GL_BUFFER_STORAGE_FLAGS", 0x8220}, + {"GL_INDEX", 0x8222}, + {"GL_COMPRESSED_RED", 0x8225}, + {"GL_COMPRESSED_RG", 0x8226}, + {"GL_RG", 0x8227}, + {"GL_RG_EXT", 0x8227}, + {"GL_RG_INTEGER", 0x8228}, + {"GL_R8", 0x8229}, + {"GL_R8_EXT", 0x8229}, + {"GL_R16", 0x822A}, + {"GL_RG8", 0x822B}, + {"GL_RG8_EXT", 0x822B}, + {"GL_RG16", 0x822C}, + {"GL_R16F", 0x822D}, + {"GL_R16F_EXT", 0x822D}, + {"GL_R32F", 0x822E}, + {"GL_RG16F", 0x822F}, + {"GL_RG16F_EXT", 0x822F}, + {"GL_RG32F", 0x8230}, + {"GL_R8I", 0x8231}, + {"GL_R8UI", 0x8232}, + {"GL_R16I", 0x8233}, + {"GL_R16UI", 0x8234}, + {"GL_R32I", 0x8235}, + {"GL_R32UI", 0x8236}, + {"GL_RG8I", 0x8237}, + {"GL_RG8UI", 0x8238}, + {"GL_RG16I", 0x8239}, + {"GL_RG16UI", 0x823A}, + {"GL_RG32I", 0x823B}, + {"GL_RG32UI", 0x823C}, + {"GL_SYNC_CL_EVENT_ARB", 0x8240}, + {"GL_SYNC_CL_EVENT_COMPLETE_ARB", 0x8241}, + {"GL_DEBUG_OUTPUT_SYNCHRONOUS", 0x8242}, + {"GL_DEBUG_OUTPUT_SYNCHRONOUS_ARB", 0x8242}, + {"GL_DEBUG_OUTPUT_SYNCHRONOUS_KHR", 0x8242}, + {"GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH", 0x8243}, + {"GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH_ARB", 0x8243}, + {"GL_DEBUG_NEXT_LOGGED_MESSAGE_LENGTH_KHR", 0x8243}, + {"GL_DEBUG_CALLBACK_FUNCTION", 0x8244}, + {"GL_DEBUG_CALLBACK_FUNCTION_ARB", 0x8244}, + {"GL_DEBUG_CALLBACK_FUNCTION_KHR", 0x8244}, + {"GL_DEBUG_CALLBACK_USER_PARAM", 0x8245}, + {"GL_DEBUG_CALLBACK_USER_PARAM_ARB", 0x8245}, + {"GL_DEBUG_CALLBACK_USER_PARAM_KHR", 0x8245}, + {"GL_DEBUG_SOURCE_API", 0x8246}, + {"GL_DEBUG_SOURCE_API_ARB", 0x8246}, + {"GL_DEBUG_SOURCE_API_KHR", 0x8246}, + {"GL_DEBUG_SOURCE_WINDOW_SYSTEM", 0x8247}, + {"GL_DEBUG_SOURCE_WINDOW_SYSTEM_ARB", 0x8247}, + {"GL_DEBUG_SOURCE_WINDOW_SYSTEM_KHR", 0x8247}, + {"GL_DEBUG_SOURCE_SHADER_COMPILER", 0x8248}, + {"GL_DEBUG_SOURCE_SHADER_COMPILER_ARB", 0x8248}, + {"GL_DEBUG_SOURCE_SHADER_COMPILER_KHR", 0x8248}, + {"GL_DEBUG_SOURCE_THIRD_PARTY", 0x8249}, + {"GL_DEBUG_SOURCE_THIRD_PARTY_ARB", 0x8249}, + {"GL_DEBUG_SOURCE_THIRD_PARTY_KHR", 0x8249}, + {"GL_DEBUG_SOURCE_APPLICATION", 0x824A}, + {"GL_DEBUG_SOURCE_APPLICATION_ARB", 0x824A}, + {"GL_DEBUG_SOURCE_APPLICATION_KHR", 0x824A}, + {"GL_DEBUG_SOURCE_OTHER", 0x824B}, + {"GL_DEBUG_SOURCE_OTHER_ARB", 0x824B}, + {"GL_DEBUG_SOURCE_OTHER_KHR", 0x824B}, + {"GL_DEBUG_TYPE_ERROR", 0x824C}, + {"GL_DEBUG_TYPE_ERROR_ARB", 0x824C}, + {"GL_DEBUG_TYPE_ERROR_KHR", 0x824C}, + {"GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR", 0x824D}, + {"GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_ARB", 0x824D}, + {"GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR_KHR", 0x824D}, + {"GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR", 0x824E}, + {"GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_ARB", 0x824E}, + {"GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR_KHR", 0x824E}, + {"GL_DEBUG_TYPE_PORTABILITY", 0x824F}, + {"GL_DEBUG_TYPE_PORTABILITY_ARB", 0x824F}, + {"GL_DEBUG_TYPE_PORTABILITY_KHR", 0x824F}, + {"GL_DEBUG_TYPE_PERFORMANCE", 0x8250}, + {"GL_DEBUG_TYPE_PERFORMANCE_ARB", 0x8250}, + {"GL_DEBUG_TYPE_PERFORMANCE_KHR", 0x8250}, + {"GL_DEBUG_TYPE_OTHER", 0x8251}, + {"GL_DEBUG_TYPE_OTHER_ARB", 0x8251}, + {"GL_DEBUG_TYPE_OTHER_KHR", 0x8251}, + {"GL_LOSE_CONTEXT_ON_RESET_ARB", 0x8252}, + {"GL_GUILTY_CONTEXT_RESET_ARB", 0x8253}, + {"GL_INNOCENT_CONTEXT_RESET_ARB", 0x8254}, + {"GL_UNKNOWN_CONTEXT_RESET_ARB", 0x8255}, + {"GL_RESET_NOTIFICATION_STRATEGY_ARB", 0x8256}, + {"GL_PROGRAM_BINARY_RETRIEVABLE_HINT", 0x8257}, + {"GL_PROGRAM_SEPARABLE", 0x8258}, + {"GL_PROGRAM_SEPARABLE_EXT", 0x8258}, + {"GL_ACTIVE_PROGRAM", 0x8259}, + {"GL_ACTIVE_PROGRAM_EXT", 0x8259}, + {"GL_PROGRAM_PIPELINE_BINDING", 0x825A}, + {"GL_PROGRAM_PIPELINE_BINDING_EXT", 0x825A}, + {"GL_MAX_VIEWPORTS", 0x825B}, + {"GL_VIEWPORT_SUBPIXEL_BITS", 0x825C}, + {"GL_VIEWPORT_BOUNDS_RANGE", 0x825D}, + {"GL_LAYER_PROVOKING_VERTEX", 0x825E}, + {"GL_VIEWPORT_INDEX_PROVOKING_VERTEX", 0x825F}, + {"GL_UNDEFINED_VERTEX", 0x8260}, + {"GL_NO_RESET_NOTIFICATION_ARB", 0x8261}, + {"GL_MAX_COMPUTE_SHARED_MEMORY_SIZE", 0x8262}, + {"GL_MAX_COMPUTE_UNIFORM_COMPONENTS", 0x8263}, + {"GL_MAX_COMPUTE_ATOMIC_COUNTER_BUFFERS", 0x8264}, + {"GL_MAX_COMPUTE_ATOMIC_COUNTERS", 0x8265}, + {"GL_MAX_COMBINED_COMPUTE_UNIFORM_COMPONENTS", 0x8266}, + {"GL_COMPUTE_LOCAL_WORK_SIZE", 0x8267}, + {"GL_DEBUG_TYPE_MARKER", 0x8268}, + {"GL_DEBUG_TYPE_MARKER_KHR", 0x8268}, + {"GL_DEBUG_TYPE_PUSH_GROUP", 0x8269}, + {"GL_DEBUG_TYPE_PUSH_GROUP_KHR", 0x8269}, + {"GL_DEBUG_TYPE_POP_GROUP", 0x826A}, + {"GL_DEBUG_TYPE_POP_GROUP_KHR", 0x826A}, + {"GL_DEBUG_SEVERITY_NOTIFICATION", 0x826B}, + {"GL_DEBUG_SEVERITY_NOTIFICATION_KHR", 0x826B}, + {"GL_MAX_DEBUG_GROUP_STACK_DEPTH", 0x826C}, + {"GL_MAX_DEBUG_GROUP_STACK_DEPTH_KHR", 0x826C}, + {"GL_DEBUG_GROUP_STACK_DEPTH", 0x826D}, + {"GL_DEBUG_GROUP_STACK_DEPTH_KHR", 0x826D}, + {"GL_MAX_UNIFORM_LOCATIONS", 0x826E}, + {"GL_INTERNALFORMAT_SUPPORTED", 0x826F}, + {"GL_INTERNALFORMAT_PREFERRED", 0x8270}, + {"GL_INTERNALFORMAT_RED_SIZE", 0x8271}, + {"GL_INTERNALFORMAT_GREEN_SIZE", 0x8272}, + {"GL_INTERNALFORMAT_BLUE_SIZE", 0x8273}, + {"GL_INTERNALFORMAT_ALPHA_SIZE", 0x8274}, + {"GL_INTERNALFORMAT_DEPTH_SIZE", 0x8275}, + {"GL_INTERNALFORMAT_STENCIL_SIZE", 0x8276}, + {"GL_INTERNALFORMAT_SHARED_SIZE", 0x8277}, + {"GL_INTERNALFORMAT_RED_TYPE", 0x8278}, + {"GL_INTERNALFORMAT_GREEN_TYPE", 0x8279}, + {"GL_INTERNALFORMAT_BLUE_TYPE", 0x827A}, + {"GL_INTERNALFORMAT_ALPHA_TYPE", 0x827B}, + {"GL_INTERNALFORMAT_DEPTH_TYPE", 0x827C}, + {"GL_INTERNALFORMAT_STENCIL_TYPE", 0x827D}, + {"GL_MAX_WIDTH", 0x827E}, + {"GL_MAX_HEIGHT", 0x827F}, + {"GL_MAX_DEPTH", 0x8280}, + {"GL_MAX_LAYERS", 0x8281}, + {"GL_MAX_COMBINED_DIMENSIONS", 0x8282}, + {"GL_COLOR_COMPONENTS", 0x8283}, + {"GL_DEPTH_COMPONENTS", 0x8284}, + {"GL_STENCIL_COMPONENTS", 0x8285}, + {"GL_COLOR_RENDERABLE", 0x8286}, + {"GL_DEPTH_RENDERABLE", 0x8287}, + {"GL_STENCIL_RENDERABLE", 0x8288}, + {"GL_FRAMEBUFFER_RENDERABLE", 0x8289}, + {"GL_FRAMEBUFFER_RENDERABLE_LAYERED", 0x828A}, + {"GL_FRAMEBUFFER_BLEND", 0x828B}, + {"GL_READ_PIXELS", 0x828C}, + {"GL_READ_PIXELS_FORMAT", 0x828D}, + {"GL_READ_PIXELS_TYPE", 0x828E}, + {"GL_TEXTURE_IMAGE_FORMAT", 0x828F}, + {"GL_TEXTURE_IMAGE_TYPE", 0x8290}, + {"GL_GET_TEXTURE_IMAGE_FORMAT", 0x8291}, + {"GL_GET_TEXTURE_IMAGE_TYPE", 0x8292}, + {"GL_MIPMAP", 0x8293}, + {"GL_MANUAL_GENERATE_MIPMAP", 0x8294}, + {"GL_AUTO_GENERATE_MIPMAP", 0x8295}, + {"GL_COLOR_ENCODING", 0x8296}, + {"GL_SRGB_READ", 0x8297}, + {"GL_SRGB_WRITE", 0x8298}, + {"GL_SRGB_DECODE_ARB", 0x8299}, + {"GL_FILTER", 0x829A}, + {"GL_VERTEX_TEXTURE", 0x829B}, + {"GL_TESS_CONTROL_TEXTURE", 0x829C}, + {"GL_TESS_EVALUATION_TEXTURE", 0x829D}, + {"GL_GEOMETRY_TEXTURE", 0x829E}, + {"GL_FRAGMENT_TEXTURE", 0x829F}, + {"GL_COMPUTE_TEXTURE", 0x82A0}, + {"GL_TEXTURE_SHADOW", 0x82A1}, + {"GL_TEXTURE_GATHER", 0x82A2}, + {"GL_TEXTURE_GATHER_SHADOW", 0x82A3}, + {"GL_SHADER_IMAGE_LOAD", 0x82A4}, + {"GL_SHADER_IMAGE_STORE", 0x82A5}, + {"GL_SHADER_IMAGE_ATOMIC", 0x82A6}, + {"GL_IMAGE_TEXEL_SIZE", 0x82A7}, + {"GL_IMAGE_COMPATIBILITY_CLASS", 0x82A8}, + {"GL_IMAGE_PIXEL_FORMAT", 0x82A9}, + {"GL_IMAGE_PIXEL_TYPE", 0x82AA}, + {"GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_TEST", 0x82AC}, + {"GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_TEST", 0x82AD}, + {"GL_SIMULTANEOUS_TEXTURE_AND_DEPTH_WRITE", 0x82AE}, + {"GL_SIMULTANEOUS_TEXTURE_AND_STENCIL_WRITE", 0x82AF}, + {"GL_TEXTURE_COMPRESSED_BLOCK_WIDTH", 0x82B1}, + {"GL_TEXTURE_COMPRESSED_BLOCK_HEIGHT", 0x82B2}, + {"GL_TEXTURE_COMPRESSED_BLOCK_SIZE", 0x82B3}, + {"GL_CLEAR_BUFFER", 0x82B4}, + {"GL_TEXTURE_VIEW", 0x82B5}, + {"GL_VIEW_COMPATIBILITY_CLASS", 0x82B6}, + {"GL_FULL_SUPPORT", 0x82B7}, + {"GL_CAVEAT_SUPPORT", 0x82B8}, + {"GL_IMAGE_CLASS_4_X_32", 0x82B9}, + {"GL_IMAGE_CLASS_2_X_32", 0x82BA}, + {"GL_IMAGE_CLASS_1_X_32", 0x82BB}, + {"GL_IMAGE_CLASS_4_X_16", 0x82BC}, + {"GL_IMAGE_CLASS_2_X_16", 0x82BD}, + {"GL_IMAGE_CLASS_1_X_16", 0x82BE}, + {"GL_IMAGE_CLASS_4_X_8", 0x82BF}, + {"GL_IMAGE_CLASS_2_X_8", 0x82C0}, + {"GL_IMAGE_CLASS_1_X_8", 0x82C1}, + {"GL_IMAGE_CLASS_11_11_10", 0x82C2}, + {"GL_IMAGE_CLASS_10_10_10_2", 0x82C3}, + {"GL_VIEW_CLASS_128_BITS", 0x82C4}, + {"GL_VIEW_CLASS_96_BITS", 0x82C5}, + {"GL_VIEW_CLASS_64_BITS", 0x82C6}, + {"GL_VIEW_CLASS_48_BITS", 0x82C7}, + {"GL_VIEW_CLASS_32_BITS", 0x82C8}, + {"GL_VIEW_CLASS_24_BITS", 0x82C9}, + {"GL_VIEW_CLASS_16_BITS", 0x82CA}, + {"GL_VIEW_CLASS_8_BITS", 0x82CB}, + {"GL_VIEW_CLASS_S3TC_DXT1_RGB", 0x82CC}, + {"GL_VIEW_CLASS_S3TC_DXT1_RGBA", 0x82CD}, + {"GL_VIEW_CLASS_S3TC_DXT3_RGBA", 0x82CE}, + {"GL_VIEW_CLASS_S3TC_DXT5_RGBA", 0x82CF}, + {"GL_VIEW_CLASS_RGTC1_RED", 0x82D0}, + {"GL_VIEW_CLASS_RGTC2_RG", 0x82D1}, + {"GL_VIEW_CLASS_BPTC_UNORM", 0x82D2}, + {"GL_VIEW_CLASS_BPTC_FLOAT", 0x82D3}, + {"GL_VERTEX_ATTRIB_BINDING", 0x82D4}, + {"GL_VERTEX_ATTRIB_RELATIVE_OFFSET", 0x82D5}, + {"GL_VERTEX_BINDING_DIVISOR", 0x82D6}, + {"GL_VERTEX_BINDING_OFFSET", 0x82D7}, + {"GL_VERTEX_BINDING_STRIDE", 0x82D8}, + {"GL_MAX_VERTEX_ATTRIB_RELATIVE_OFFSET", 0x82D9}, + {"GL_MAX_VERTEX_ATTRIB_BINDINGS", 0x82DA}, + {"GL_TEXTURE_VIEW_MIN_LEVEL", 0x82DB}, + {"GL_TEXTURE_VIEW_NUM_LEVELS", 0x82DC}, + {"GL_TEXTURE_VIEW_MIN_LAYER", 0x82DD}, + {"GL_TEXTURE_VIEW_NUM_LAYERS", 0x82DE}, + {"GL_TEXTURE_IMMUTABLE_LEVELS", 0x82DF}, + {"GL_BUFFER", 0x82E0}, + {"GL_BUFFER_KHR", 0x82E0}, + {"GL_SHADER", 0x82E1}, + {"GL_SHADER_KHR", 0x82E1}, + {"GL_PROGRAM", 0x82E2}, + {"GL_PROGRAM_KHR", 0x82E2}, + {"GL_QUERY", 0x82E3}, + {"GL_QUERY_KHR", 0x82E3}, + {"GL_PROGRAM_PIPELINE", 0x82E4}, + {"GL_MAX_VERTEX_ATTRIB_STRIDE", 0x82E5}, + {"GL_SAMPLER", 0x82E6}, + {"GL_SAMPLER_KHR", 0x82E6}, + {"GL_DISPLAY_LIST", 0x82E7}, + {"GL_MAX_LABEL_LENGTH", 0x82E8}, + {"GL_MAX_LABEL_LENGTH_KHR", 0x82E8}, + {"GL_NUM_SHADING_LANGUAGE_VERSIONS", 0x82E9}, + {"GL_DEPTH_PASS_INSTRUMENT_SGIX", 0x8310}, + {"GL_DEPTH_PASS_INSTRUMENT_COUNTERS_SGIX", 0x8311}, + {"GL_DEPTH_PASS_INSTRUMENT_MAX_SGIX", 0x8312}, + {"GL_FRAGMENTS_INSTRUMENT_SGIX", 0x8313}, + {"GL_FRAGMENTS_INSTRUMENT_COUNTERS_SGIX", 0x8314}, + {"GL_FRAGMENTS_INSTRUMENT_MAX_SGIX", 0x8315}, + {"GL_CONVOLUTION_HINT_SGIX", 0x8316}, + {"GL_YCRCB_SGIX", 0x8318}, + {"GL_YCRCBA_SGIX", 0x8319}, + {"GL_UNPACK_COMPRESSED_SIZE_SGIX", 0x831A}, + {"GL_PACK_MAX_COMPRESSED_SIZE_SGIX", 0x831B}, + {"GL_PACK_COMPRESSED_SIZE_SGIX", 0x831C}, + {"GL_SLIM8U_SGIX", 0x831D}, + {"GL_SLIM10U_SGIX", 0x831E}, + {"GL_SLIM12S_SGIX", 0x831F}, + {"GL_ALPHA_MIN_SGIX", 0x8320}, + {"GL_ALPHA_MAX_SGIX", 0x8321}, + {"GL_SCALEBIAS_HINT_SGIX", 0x8322}, + {"GL_ASYNC_MARKER_SGIX", 0x8329}, + {"GL_PIXEL_TEX_GEN_MODE_SGIX", 0x832B}, + {"GL_ASYNC_HISTOGRAM_SGIX", 0x832C}, + {"GL_MAX_ASYNC_HISTOGRAM_SGIX", 0x832D}, + {"GL_PIXEL_TRANSFORM_2D_EXT", 0x8330}, + {"GL_PIXEL_MAG_FILTER_EXT", 0x8331}, + {"GL_PIXEL_MIN_FILTER_EXT", 0x8332}, + {"GL_PIXEL_CUBIC_WEIGHT_EXT", 0x8333}, + {"GL_CUBIC_EXT", 0x8334}, + {"GL_AVERAGE_EXT", 0x8335}, + {"GL_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT", 0x8336}, + {"GL_MAX_PIXEL_TRANSFORM_2D_STACK_DEPTH_EXT", 0x8337}, + {"GL_PIXEL_TRANSFORM_2D_MATRIX_EXT", 0x8338}, + {"GL_FRAGMENT_MATERIAL_EXT", 0x8349}, + {"GL_FRAGMENT_NORMAL_EXT", 0x834A}, + {"GL_FRAGMENT_COLOR_EXT", 0x834C}, + {"GL_ATTENUATION_EXT", 0x834D}, + {"GL_SHADOW_ATTENUATION_EXT", 0x834E}, + {"GL_TEXTURE_APPLICATION_MODE_EXT", 0x834F}, + {"GL_TEXTURE_LIGHT_EXT", 0x8350}, + {"GL_TEXTURE_MATERIAL_FACE_EXT", 0x8351}, + {"GL_TEXTURE_MATERIAL_PARAMETER_EXT", 0x8352}, + {"GL_PIXEL_TEXTURE_SGIS", 0x8353}, + {"GL_PIXEL_FRAGMENT_RGB_SOURCE_SGIS", 0x8354}, + {"GL_PIXEL_FRAGMENT_ALPHA_SOURCE_SGIS", 0x8355}, + {"GL_PIXEL_GROUP_COLOR_SGIS", 0x8356}, + {"GL_LINE_QUALITY_HINT_SGIX", 0x835B}, + {"GL_ASYNC_TEX_IMAGE_SGIX", 0x835C}, + {"GL_ASYNC_DRAW_PIXELS_SGIX", 0x835D}, + {"GL_ASYNC_READ_PIXELS_SGIX", 0x835E}, + {"GL_MAX_ASYNC_TEX_IMAGE_SGIX", 0x835F}, + {"GL_MAX_ASYNC_DRAW_PIXELS_SGIX", 0x8360}, + {"GL_MAX_ASYNC_READ_PIXELS_SGIX", 0x8361}, + {"GL_UNSIGNED_BYTE_2_3_3_REV", 0x8362}, + {"GL_UNSIGNED_BYTE_2_3_3_REV_EXT", 0x8362}, + {"GL_UNSIGNED_SHORT_5_6_5", 0x8363}, + {"GL_UNSIGNED_SHORT_5_6_5_EXT", 0x8363}, + {"GL_UNSIGNED_SHORT_5_6_5_REV", 0x8364}, + {"GL_UNSIGNED_SHORT_5_6_5_REV_EXT", 0x8364}, + {"GL_UNSIGNED_SHORT_4_4_4_4_REV", 0x8365}, + {"GL_UNSIGNED_SHORT_4_4_4_4_REV_EXT", 0x8365}, + {"GL_UNSIGNED_SHORT_1_5_5_5_REV", 0x8366}, + {"GL_UNSIGNED_SHORT_1_5_5_5_REV_EXT", 0x8366}, + {"GL_UNSIGNED_INT_8_8_8_8_REV", 0x8367}, + {"GL_UNSIGNED_INT_8_8_8_8_REV_EXT", 0x8367}, + {"GL_UNSIGNED_INT_2_10_10_10_REV", 0x8368}, + {"GL_UNSIGNED_INT_2_10_10_10_REV_EXT", 0x8368}, + {"GL_TEXTURE_MAX_CLAMP_S_SGIX", 0x8369}, + {"GL_TEXTURE_MAX_CLAMP_T_SGIX", 0x836A}, + {"GL_TEXTURE_MAX_CLAMP_R_SGIX", 0x836B}, + {"GL_MIRRORED_REPEAT", 0x8370}, + {"GL_MIRRORED_REPEAT_ARB", 0x8370}, + {"GL_MIRRORED_REPEAT_IBM", 0x8370}, + {"GL_MIRRORED_REPEAT_OES", 0x8370}, + {"GL_RGB_S3TC", 0x83A0}, + {"GL_RGB4_S3TC", 0x83A1}, + {"GL_RGBA_S3TC", 0x83A2}, + {"GL_RGBA4_S3TC", 0x83A3}, + {"GL_RGBA_DXT5_S3TC", 0x83A4}, + {"GL_RGBA4_DXT5_S3TC", 0x83A5}, + {"GL_VERTEX_PRECLIP_SGIX", 0x83EE}, + {"GL_VERTEX_PRECLIP_HINT_SGIX", 0x83EF}, + {"GL_COMPRESSED_RGB_S3TC_DXT1_EXT", 0x83F0}, + {"GL_COMPRESSED_RGBA_S3TC_DXT1_EXT", 0x83F1}, + {"GL_COMPRESSED_RGBA_S3TC_DXT3_ANGLE", 0x83F2}, + {"GL_COMPRESSED_RGBA_S3TC_DXT3_EXT", 0x83F2}, + {"GL_COMPRESSED_RGBA_S3TC_DXT5_ANGLE", 0x83F3}, + {"GL_COMPRESSED_RGBA_S3TC_DXT5_EXT", 0x83F3}, + {"GL_PARALLEL_ARRAYS_INTEL", 0x83F4}, + {"GL_VERTEX_ARRAY_PARALLEL_POINTERS_INTEL", 0x83F5}, + {"GL_NORMAL_ARRAY_PARALLEL_POINTERS_INTEL", 0x83F6}, + {"GL_COLOR_ARRAY_PARALLEL_POINTERS_INTEL", 0x83F7}, + {"GL_TEXTURE_COORD_ARRAY_PARALLEL_POINTERS_INTEL", 0x83F8}, + {"GL_TEXTURE_MEMORY_LAYOUT_INTEL", 0x83FF}, + {"GL_FRAGMENT_LIGHTING_SGIX", 0x8400}, + {"GL_FRAGMENT_COLOR_MATERIAL_SGIX", 0x8401}, + {"GL_FRAGMENT_COLOR_MATERIAL_FACE_SGIX", 0x8402}, + {"GL_FRAGMENT_COLOR_MATERIAL_PARAMETER_SGIX", 0x8403}, + {"GL_MAX_FRAGMENT_LIGHTS_SGIX", 0x8404}, + {"GL_MAX_ACTIVE_LIGHTS_SGIX", 0x8405}, + {"GL_CURRENT_RASTER_NORMAL_SGIX", 0x8406}, + {"GL_LIGHT_ENV_MODE_SGIX", 0x8407}, + {"GL_FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX", 0x8408}, + {"GL_FRAGMENT_LIGHT_MODEL_TWO_SIDE_SGIX", 0x8409}, + {"GL_FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX", 0x840A}, + {"GL_FRAGMENT_LIGHT_MODEL_NORMAL_INTERPOLATION_SGIX", 0x840B}, + {"GL_FRAGMENT_LIGHT0_SGIX", 0x840C}, + {"GL_FRAGMENT_LIGHT1_SGIX", 0x840D}, + {"GL_FRAGMENT_LIGHT2_SGIX", 0x840E}, + {"GL_FRAGMENT_LIGHT3_SGIX", 0x840F}, + {"GL_FRAGMENT_LIGHT4_SGIX", 0x8410}, + {"GL_FRAGMENT_LIGHT5_SGIX", 0x8411}, + {"GL_FRAGMENT_LIGHT6_SGIX", 0x8412}, + {"GL_FRAGMENT_LIGHT7_SGIX", 0x8413}, + {"GL_PACK_RESAMPLE_SGIX", 0x842C}, + {"GL_UNPACK_RESAMPLE_SGIX", 0x842D}, + {"GL_RESAMPLE_REPLICATE_SGIX", 0x842E}, + {"GL_RESAMPLE_ZERO_FILL_SGIX", 0x842F}, + {"GL_RESAMPLE_DECIMATE_SGIX", 0x8430}, + {"GL_TANGENT_ARRAY_EXT", 0x8439}, + {"GL_BINORMAL_ARRAY_EXT", 0x843A}, + {"GL_CURRENT_TANGENT_EXT", 0x843B}, + {"GL_CURRENT_BINORMAL_EXT", 0x843C}, + {"GL_TANGENT_ARRAY_TYPE_EXT", 0x843E}, + {"GL_TANGENT_ARRAY_STRIDE_EXT", 0x843F}, + {"GL_BINORMAL_ARRAY_TYPE_EXT", 0x8440}, + {"GL_BINORMAL_ARRAY_STRIDE_EXT", 0x8441}, + {"GL_TANGENT_ARRAY_POINTER_EXT", 0x8442}, + {"GL_BINORMAL_ARRAY_POINTER_EXT", 0x8443}, + {"GL_MAP1_TANGENT_EXT", 0x8444}, + {"GL_MAP2_TANGENT_EXT", 0x8445}, + {"GL_MAP1_BINORMAL_EXT", 0x8446}, + {"GL_MAP2_BINORMAL_EXT", 0x8447}, + {"GL_NEAREST_CLIPMAP_NEAREST_SGIX", 0x844D}, + {"GL_NEAREST_CLIPMAP_LINEAR_SGIX", 0x844E}, + {"GL_LINEAR_CLIPMAP_NEAREST_SGIX", 0x844F}, + {"GL_FOG_COORDINATE_SOURCE", 0x8450}, + {"GL_FOG_COORDINATE_SOURCE_EXT", 0x8450}, + {"GL_FOG_COORD_SRC", 0x8450}, + {"GL_FOG_COORDINATE", 0x8451}, + {"GL_FOG_COORD", 0x8451}, + {"GL_FOG_COORDINATE_EXT", 0x8451}, + {"GL_FRAGMENT_DEPTH", 0x8452}, + {"GL_FRAGMENT_DEPTH_EXT", 0x8452}, + {"GL_CURRENT_FOG_COORDINATE", 0x8453}, + {"GL_CURRENT_FOG_COORD", 0x8453}, + {"GL_CURRENT_FOG_COORDINATE_EXT", 0x8453}, + {"GL_FOG_COORDINATE_ARRAY_TYPE", 0x8454}, + {"GL_FOG_COORDINATE_ARRAY_TYPE_EXT", 0x8454}, + {"GL_FOG_COORD_ARRAY_TYPE", 0x8454}, + {"GL_FOG_COORDINATE_ARRAY_STRIDE", 0x8455}, + {"GL_FOG_COORDINATE_ARRAY_STRIDE_EXT", 0x8455}, + {"GL_FOG_COORD_ARRAY_STRIDE", 0x8455}, + {"GL_FOG_COORDINATE_ARRAY_POINTER", 0x8456}, + {"GL_FOG_COORDINATE_ARRAY_POINTER_EXT", 0x8456}, + {"GL_FOG_COORD_ARRAY_POINTER", 0x8456}, + {"GL_FOG_COORDINATE_ARRAY", 0x8457}, + {"GL_FOG_COORDINATE_ARRAY_EXT", 0x8457}, + {"GL_FOG_COORD_ARRAY", 0x8457}, + {"GL_COLOR_SUM", 0x8458}, + {"GL_COLOR_SUM_ARB", 0x8458}, + {"GL_COLOR_SUM_EXT", 0x8458}, + {"GL_CURRENT_SECONDARY_COLOR", 0x8459}, + {"GL_CURRENT_SECONDARY_COLOR_EXT", 0x8459}, + {"GL_SECONDARY_COLOR_ARRAY_SIZE", 0x845A}, + {"GL_SECONDARY_COLOR_ARRAY_SIZE_EXT", 0x845A}, + {"GL_SECONDARY_COLOR_ARRAY_TYPE", 0x845B}, + {"GL_SECONDARY_COLOR_ARRAY_TYPE_EXT", 0x845B}, + {"GL_SECONDARY_COLOR_ARRAY_STRIDE", 0x845C}, + {"GL_SECONDARY_COLOR_ARRAY_STRIDE_EXT", 0x845C}, + {"GL_SECONDARY_COLOR_ARRAY_POINTER", 0x845D}, + {"GL_SECONDARY_COLOR_ARRAY_POINTER_EXT", 0x845D}, + {"GL_SECONDARY_COLOR_ARRAY", 0x845E}, + {"GL_SECONDARY_COLOR_ARRAY_EXT", 0x845E}, + {"GL_CURRENT_RASTER_SECONDARY_COLOR", 0x845F}, + {"GL_ALIASED_POINT_SIZE_RANGE", 0x846D}, + {"GL_ALIASED_LINE_WIDTH_RANGE", 0x846E}, + {"GL_SCREEN_COORDINATES_REND", 0x8490}, + {"GL_INVERTED_SCREEN_W_REND", 0x8491}, + {"GL_TEXTURE0", 0x84C0}, + {"GL_TEXTURE0_ARB", 0x84C0}, + {"GL_TEXTURE1", 0x84C1}, + {"GL_TEXTURE1_ARB", 0x84C1}, + {"GL_TEXTURE2", 0x84C2}, + {"GL_TEXTURE2_ARB", 0x84C2}, + {"GL_TEXTURE3", 0x84C3}, + {"GL_TEXTURE3_ARB", 0x84C3}, + {"GL_TEXTURE4", 0x84C4}, + {"GL_TEXTURE4_ARB", 0x84C4}, + {"GL_TEXTURE5", 0x84C5}, + {"GL_TEXTURE5_ARB", 0x84C5}, + {"GL_TEXTURE6", 0x84C6}, + {"GL_TEXTURE6_ARB", 0x84C6}, + {"GL_TEXTURE7", 0x84C7}, + {"GL_TEXTURE7_ARB", 0x84C7}, + {"GL_TEXTURE8", 0x84C8}, + {"GL_TEXTURE8_ARB", 0x84C8}, + {"GL_TEXTURE9", 0x84C9}, + {"GL_TEXTURE9_ARB", 0x84C9}, + {"GL_TEXTURE10", 0x84CA}, + {"GL_TEXTURE10_ARB", 0x84CA}, + {"GL_TEXTURE11", 0x84CB}, + {"GL_TEXTURE11_ARB", 0x84CB}, + {"GL_TEXTURE12", 0x84CC}, + {"GL_TEXTURE12_ARB", 0x84CC}, + {"GL_TEXTURE13", 0x84CD}, + {"GL_TEXTURE13_ARB", 0x84CD}, + {"GL_TEXTURE14", 0x84CE}, + {"GL_TEXTURE14_ARB", 0x84CE}, + {"GL_TEXTURE15", 0x84CF}, + {"GL_TEXTURE15_ARB", 0x84CF}, + {"GL_TEXTURE16", 0x84D0}, + {"GL_TEXTURE16_ARB", 0x84D0}, + {"GL_TEXTURE17", 0x84D1}, + {"GL_TEXTURE17_ARB", 0x84D1}, + {"GL_TEXTURE18", 0x84D2}, + {"GL_TEXTURE18_ARB", 0x84D2}, + {"GL_TEXTURE19", 0x84D3}, + {"GL_TEXTURE19_ARB", 0x84D3}, + {"GL_TEXTURE20", 0x84D4}, + {"GL_TEXTURE20_ARB", 0x84D4}, + {"GL_TEXTURE21", 0x84D5}, + {"GL_TEXTURE21_ARB", 0x84D5}, + {"GL_TEXTURE22", 0x84D6}, + {"GL_TEXTURE22_ARB", 0x84D6}, + {"GL_TEXTURE23", 0x84D7}, + {"GL_TEXTURE23_ARB", 0x84D7}, + {"GL_TEXTURE24", 0x84D8}, + {"GL_TEXTURE24_ARB", 0x84D8}, + {"GL_TEXTURE25", 0x84D9}, + {"GL_TEXTURE25_ARB", 0x84D9}, + {"GL_TEXTURE26", 0x84DA}, + {"GL_TEXTURE26_ARB", 0x84DA}, + {"GL_TEXTURE27", 0x84DB}, + {"GL_TEXTURE27_ARB", 0x84DB}, + {"GL_TEXTURE28", 0x84DC}, + {"GL_TEXTURE28_ARB", 0x84DC}, + {"GL_TEXTURE29", 0x84DD}, + {"GL_TEXTURE29_ARB", 0x84DD}, + {"GL_TEXTURE30", 0x84DE}, + {"GL_TEXTURE30_ARB", 0x84DE}, + {"GL_TEXTURE31", 0x84DF}, + {"GL_TEXTURE31_ARB", 0x84DF}, + {"GL_ACTIVE_TEXTURE", 0x84E0}, + {"GL_ACTIVE_TEXTURE_ARB", 0x84E0}, + {"GL_CLIENT_ACTIVE_TEXTURE", 0x84E1}, + {"GL_CLIENT_ACTIVE_TEXTURE_ARB", 0x84E1}, + {"GL_MAX_TEXTURE_UNITS", 0x84E2}, + {"GL_MAX_TEXTURE_UNITS_ARB", 0x84E2}, + {"GL_TRANSPOSE_MODELVIEW_MATRIX", 0x84E3}, + {"GL_TRANSPOSE_MODELVIEW_MATRIX_ARB", 0x84E3}, + {"GL_TRANSPOSE_PROJECTION_MATRIX", 0x84E4}, + {"GL_TRANSPOSE_PROJECTION_MATRIX_ARB", 0x84E4}, + {"GL_TRANSPOSE_TEXTURE_MATRIX", 0x84E5}, + {"GL_TRANSPOSE_TEXTURE_MATRIX_ARB", 0x84E5}, + {"GL_TRANSPOSE_COLOR_MATRIX", 0x84E6}, + {"GL_TRANSPOSE_COLOR_MATRIX_ARB", 0x84E6}, + {"GL_SUBTRACT", 0x84E7}, + {"GL_SUBTRACT_ARB", 0x84E7}, + {"GL_MAX_RENDERBUFFER_SIZE", 0x84E8}, + {"GL_MAX_RENDERBUFFER_SIZE_EXT", 0x84E8}, + {"GL_MAX_RENDERBUFFER_SIZE_OES", 0x84E8}, + {"GL_COMPRESSED_ALPHA", 0x84E9}, + {"GL_COMPRESSED_ALPHA_ARB", 0x84E9}, + {"GL_COMPRESSED_LUMINANCE", 0x84EA}, + {"GL_COMPRESSED_LUMINANCE_ARB", 0x84EA}, + {"GL_COMPRESSED_LUMINANCE_ALPHA", 0x84EB}, + {"GL_COMPRESSED_LUMINANCE_ALPHA_ARB", 0x84EB}, + {"GL_COMPRESSED_INTENSITY", 0x84EC}, + {"GL_COMPRESSED_INTENSITY_ARB", 0x84EC}, + {"GL_COMPRESSED_RGB", 0x84ED}, + {"GL_COMPRESSED_RGB_ARB", 0x84ED}, + {"GL_COMPRESSED_RGBA", 0x84EE}, + {"GL_COMPRESSED_RGBA_ARB", 0x84EE}, + {"GL_TEXTURE_COMPRESSION_HINT", 0x84EF}, + {"GL_TEXTURE_COMPRESSION_HINT_ARB", 0x84EF}, + {"GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_CONTROL_SHADER", 0x84F0}, + {"GL_UNIFORM_BLOCK_REFERENCED_BY_TESS_EVALUATION_SHADER", 0x84F1}, + {"GL_ALL_COMPLETED_NV", 0x84F2}, + {"GL_FENCE_STATUS_NV", 0x84F3}, + {"GL_FENCE_CONDITION_NV", 0x84F4}, + {"GL_TEXTURE_RECTANGLE", 0x84F5}, + {"GL_TEXTURE_RECTANGLE_ARB", 0x84F5}, + {"GL_TEXTURE_RECTANGLE_NV", 0x84F5}, + {"GL_TEXTURE_BINDING_RECTANGLE", 0x84F6}, + {"GL_TEXTURE_BINDING_RECTANGLE_ARB", 0x84F6}, + {"GL_TEXTURE_BINDING_RECTANGLE_NV", 0x84F6}, + {"GL_PROXY_TEXTURE_RECTANGLE", 0x84F7}, + {"GL_PROXY_TEXTURE_RECTANGLE_ARB", 0x84F7}, + {"GL_PROXY_TEXTURE_RECTANGLE_NV", 0x84F7}, + {"GL_MAX_RECTANGLE_TEXTURE_SIZE", 0x84F8}, + {"GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB", 0x84F8}, + {"GL_MAX_RECTANGLE_TEXTURE_SIZE_NV", 0x84F8}, + {"GL_DEPTH_STENCIL", 0x84F9}, + {"GL_DEPTH_STENCIL_EXT", 0x84F9}, + {"GL_DEPTH_STENCIL_NV", 0x84F9}, + {"GL_DEPTH_STENCIL_OES", 0x84F9}, + {"GL_UNSIGNED_INT_24_8", 0x84FA}, + {"GL_UNSIGNED_INT_24_8_EXT", 0x84FA}, + {"GL_UNSIGNED_INT_24_8_NV", 0x84FA}, + {"GL_UNSIGNED_INT_24_8_OES", 0x84FA}, + {"GL_MAX_TEXTURE_LOD_BIAS", 0x84FD}, + {"GL_MAX_TEXTURE_LOD_BIAS_EXT", 0x84FD}, + {"GL_TEXTURE_MAX_ANISOTROPY_EXT", 0x84FE}, + {"GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT", 0x84FF}, + {"GL_TEXTURE_FILTER_CONTROL", 0x8500}, + {"GL_TEXTURE_FILTER_CONTROL_EXT", 0x8500}, + {"GL_TEXTURE_LOD_BIAS", 0x8501}, + {"GL_TEXTURE_LOD_BIAS_EXT", 0x8501}, + {"GL_MODELVIEW1_STACK_DEPTH_EXT", 0x8502}, + {"GL_COMBINE4_NV", 0x8503}, + {"GL_MAX_SHININESS_NV", 0x8504}, + {"GL_MAX_SPOT_EXPONENT_NV", 0x8505}, + {"GL_MODELVIEW1_MATRIX_EXT", 0x8506}, + {"GL_INCR_WRAP", 0x8507}, + {"GL_INCR_WRAP_EXT", 0x8507}, + {"GL_INCR_WRAP_OES", 0x8507}, + {"GL_DECR_WRAP", 0x8508}, + {"GL_DECR_WRAP_EXT", 0x8508}, + {"GL_DECR_WRAP_OES", 0x8508}, + {"GL_VERTEX_WEIGHTING_EXT", 0x8509}, + {"GL_MODELVIEW1_ARB", 0x850A}, + {"GL_MODELVIEW1_EXT", 0x850A}, + {"GL_CURRENT_VERTEX_WEIGHT_EXT", 0x850B}, + {"GL_VERTEX_WEIGHT_ARRAY_EXT", 0x850C}, + {"GL_VERTEX_WEIGHT_ARRAY_SIZE_EXT", 0x850D}, + {"GL_VERTEX_WEIGHT_ARRAY_TYPE_EXT", 0x850E}, + {"GL_VERTEX_WEIGHT_ARRAY_STRIDE_EXT", 0x850F}, + {"GL_VERTEX_WEIGHT_ARRAY_POINTER_EXT", 0x8510}, + {"GL_NORMAL_MAP", 0x8511}, + {"GL_NORMAL_MAP_ARB", 0x8511}, + {"GL_NORMAL_MAP_EXT", 0x8511}, + {"GL_NORMAL_MAP_NV", 0x8511}, + {"GL_NORMAL_MAP_OES", 0x8511}, + {"GL_REFLECTION_MAP", 0x8512}, + {"GL_REFLECTION_MAP_ARB", 0x8512}, + {"GL_REFLECTION_MAP_EXT", 0x8512}, + {"GL_REFLECTION_MAP_NV", 0x8512}, + {"GL_REFLECTION_MAP_OES", 0x8512}, + {"GL_TEXTURE_CUBE_MAP", 0x8513}, + {"GL_TEXTURE_CUBE_MAP_ARB", 0x8513}, + {"GL_TEXTURE_CUBE_MAP_EXT", 0x8513}, + {"GL_TEXTURE_CUBE_MAP_OES", 0x8513}, + {"GL_TEXTURE_BINDING_CUBE_MAP", 0x8514}, + {"GL_TEXTURE_BINDING_CUBE_MAP_ARB", 0x8514}, + {"GL_TEXTURE_BINDING_CUBE_MAP_EXT", 0x8514}, + {"GL_TEXTURE_BINDING_CUBE_MAP_OES", 0x8514}, + {"GL_TEXTURE_CUBE_MAP_POSITIVE_X", 0x8515}, + {"GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB", 0x8515}, + {"GL_TEXTURE_CUBE_MAP_POSITIVE_X_EXT", 0x8515}, + {"GL_TEXTURE_CUBE_MAP_POSITIVE_X_OES", 0x8515}, + {"GL_TEXTURE_CUBE_MAP_NEGATIVE_X", 0x8516}, + {"GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB", 0x8516}, + {"GL_TEXTURE_CUBE_MAP_NEGATIVE_X_EXT", 0x8516}, + {"GL_TEXTURE_CUBE_MAP_NEGATIVE_X_OES", 0x8516}, + {"GL_TEXTURE_CUBE_MAP_POSITIVE_Y", 0x8517}, + {"GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB", 0x8517}, + {"GL_TEXTURE_CUBE_MAP_POSITIVE_Y_EXT", 0x8517}, + {"GL_TEXTURE_CUBE_MAP_POSITIVE_Y_OES", 0x8517}, + {"GL_TEXTURE_CUBE_MAP_NEGATIVE_Y", 0x8518}, + {"GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB", 0x8518}, + {"GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_EXT", 0x8518}, + {"GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_OES", 0x8518}, + {"GL_TEXTURE_CUBE_MAP_POSITIVE_Z", 0x8519}, + {"GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB", 0x8519}, + {"GL_TEXTURE_CUBE_MAP_POSITIVE_Z_EXT", 0x8519}, + {"GL_TEXTURE_CUBE_MAP_POSITIVE_Z_OES", 0x8519}, + {"GL_TEXTURE_CUBE_MAP_NEGATIVE_Z", 0x851A}, + {"GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB", 0x851A}, + {"GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_EXT", 0x851A}, + {"GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_OES", 0x851A}, + {"GL_PROXY_TEXTURE_CUBE_MAP", 0x851B}, + {"GL_PROXY_TEXTURE_CUBE_MAP_ARB", 0x851B}, + {"GL_PROXY_TEXTURE_CUBE_MAP_EXT", 0x851B}, + {"GL_MAX_CUBE_MAP_TEXTURE_SIZE", 0x851C}, + {"GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB", 0x851C}, + {"GL_MAX_CUBE_MAP_TEXTURE_SIZE_EXT", 0x851C}, + {"GL_MAX_CUBE_MAP_TEXTURE_SIZE_OES", 0x851C}, + {"GL_VERTEX_ARRAY_RANGE_APPLE", 0x851D}, + {"GL_VERTEX_ARRAY_RANGE_NV", 0x851D}, + {"GL_VERTEX_ARRAY_RANGE_LENGTH_APPLE", 0x851E}, + {"GL_VERTEX_ARRAY_RANGE_LENGTH_NV", 0x851E}, + {"GL_VERTEX_ARRAY_RANGE_VALID_NV", 0x851F}, + {"GL_VERTEX_ARRAY_STORAGE_HINT_APPLE", 0x851F}, + {"GL_MAX_VERTEX_ARRAY_RANGE_ELEMENT_NV", 0x8520}, + {"GL_VERTEX_ARRAY_RANGE_POINTER_APPLE", 0x8521}, + {"GL_VERTEX_ARRAY_RANGE_POINTER_NV", 0x8521}, + {"GL_REGISTER_COMBINERS_NV", 0x8522}, + {"GL_VARIABLE_A_NV", 0x8523}, + {"GL_VARIABLE_B_NV", 0x8524}, + {"GL_VARIABLE_C_NV", 0x8525}, + {"GL_VARIABLE_D_NV", 0x8526}, + {"GL_VARIABLE_E_NV", 0x8527}, + {"GL_VARIABLE_F_NV", 0x8528}, + {"GL_VARIABLE_G_NV", 0x8529}, + {"GL_CONSTANT_COLOR0_NV", 0x852A}, + {"GL_CONSTANT_COLOR1_NV", 0x852B}, + {"GL_PRIMARY_COLOR_NV", 0x852C}, + {"GL_SECONDARY_COLOR_NV", 0x852D}, + {"GL_SPARE0_NV", 0x852E}, + {"GL_SPARE1_NV", 0x852F}, + {"GL_DISCARD_NV", 0x8530}, + {"GL_E_TIMES_F_NV", 0x8531}, + {"GL_SPARE0_PLUS_SECONDARY_COLOR_NV", 0x8532}, + {"GL_VERTEX_ARRAY_RANGE_WITHOUT_FLUSH_NV", 0x8533}, + {"GL_MULTISAMPLE_FILTER_HINT_NV", 0x8534}, + {"GL_PER_STAGE_CONSTANTS_NV", 0x8535}, + {"GL_UNSIGNED_IDENTITY_NV", 0x8536}, + {"GL_UNSIGNED_INVERT_NV", 0x8537}, + {"GL_EXPAND_NORMAL_NV", 0x8538}, + {"GL_EXPAND_NEGATE_NV", 0x8539}, + {"GL_HALF_BIAS_NORMAL_NV", 0x853A}, + {"GL_HALF_BIAS_NEGATE_NV", 0x853B}, + {"GL_SIGNED_IDENTITY_NV", 0x853C}, + {"GL_SIGNED_NEGATE_NV", 0x853D}, + {"GL_SCALE_BY_TWO_NV", 0x853E}, + {"GL_SCALE_BY_FOUR_NV", 0x853F}, + {"GL_SCALE_BY_ONE_HALF_NV", 0x8540}, + {"GL_BIAS_BY_NEGATIVE_ONE_HALF_NV", 0x8541}, + {"GL_COMBINER_INPUT_NV", 0x8542}, + {"GL_COMBINER_MAPPING_NV", 0x8543}, + {"GL_COMBINER_COMPONENT_USAGE_NV", 0x8544}, + {"GL_COMBINER_AB_DOT_PRODUCT_NV", 0x8545}, + {"GL_COMBINER_CD_DOT_PRODUCT_NV", 0x8546}, + {"GL_COMBINER_MUX_SUM_NV", 0x8547}, + {"GL_COMBINER_SCALE_NV", 0x8548}, + {"GL_COMBINER_BIAS_NV", 0x8549}, + {"GL_COMBINER_AB_OUTPUT_NV", 0x854A}, + {"GL_COMBINER_CD_OUTPUT_NV", 0x854B}, + {"GL_COMBINER_SUM_OUTPUT_NV", 0x854C}, + {"GL_MAX_GENERAL_COMBINERS_NV", 0x854D}, + {"GL_NUM_GENERAL_COMBINERS_NV", 0x854E}, + {"GL_COLOR_SUM_CLAMP_NV", 0x854F}, + {"GL_COMBINER0_NV", 0x8550}, + {"GL_COMBINER1_NV", 0x8551}, + {"GL_COMBINER2_NV", 0x8552}, + {"GL_COMBINER3_NV", 0x8553}, + {"GL_COMBINER4_NV", 0x8554}, + {"GL_COMBINER5_NV", 0x8555}, + {"GL_COMBINER6_NV", 0x8556}, + {"GL_COMBINER7_NV", 0x8557}, + {"GL_PRIMITIVE_RESTART_NV", 0x8558}, + {"GL_PRIMITIVE_RESTART_INDEX_NV", 0x8559}, + {"GL_FOG_DISTANCE_MODE_NV", 0x855A}, + {"GL_EYE_RADIAL_NV", 0x855B}, + {"GL_EYE_PLANE_ABSOLUTE_NV", 0x855C}, + {"GL_EMBOSS_LIGHT_NV", 0x855D}, + {"GL_EMBOSS_CONSTANT_NV", 0x855E}, + {"GL_EMBOSS_MAP_NV", 0x855F}, + {"GL_RED_MIN_CLAMP_INGR", 0x8560}, + {"GL_GREEN_MIN_CLAMP_INGR", 0x8561}, + {"GL_BLUE_MIN_CLAMP_INGR", 0x8562}, + {"GL_ALPHA_MIN_CLAMP_INGR", 0x8563}, + {"GL_RED_MAX_CLAMP_INGR", 0x8564}, + {"GL_GREEN_MAX_CLAMP_INGR", 0x8565}, + {"GL_BLUE_MAX_CLAMP_INGR", 0x8566}, + {"GL_ALPHA_MAX_CLAMP_INGR", 0x8567}, + {"GL_INTERLACE_READ_INGR", 0x8568}, + {"GL_COMBINE", 0x8570}, + {"GL_COMBINE_ARB", 0x8570}, + {"GL_COMBINE_EXT", 0x8570}, + {"GL_COMBINE_RGB", 0x8571}, + {"GL_COMBINE_RGB_ARB", 0x8571}, + {"GL_COMBINE_RGB_EXT", 0x8571}, + {"GL_COMBINE_ALPHA", 0x8572}, + {"GL_COMBINE_ALPHA_ARB", 0x8572}, + {"GL_COMBINE_ALPHA_EXT", 0x8572}, + {"GL_RGB_SCALE", 0x8573}, + {"GL_RGB_SCALE_ARB", 0x8573}, + {"GL_RGB_SCALE_EXT", 0x8573}, + {"GL_ADD_SIGNED", 0x8574}, + {"GL_ADD_SIGNED_ARB", 0x8574}, + {"GL_ADD_SIGNED_EXT", 0x8574}, + {"GL_INTERPOLATE", 0x8575}, + {"GL_INTERPOLATE_ARB", 0x8575}, + {"GL_INTERPOLATE_EXT", 0x8575}, + {"GL_CONSTANT", 0x8576}, + {"GL_CONSTANT_ARB", 0x8576}, + {"GL_CONSTANT_EXT", 0x8576}, + {"GL_PRIMARY_COLOR", 0x8577}, + {"GL_PRIMARY_COLOR_ARB", 0x8577}, + {"GL_PRIMARY_COLOR_EXT", 0x8577}, + {"GL_PREVIOUS", 0x8578}, + {"GL_PREVIOUS_ARB", 0x8578}, + {"GL_PREVIOUS_EXT", 0x8578}, + {"GL_SOURCE0_RGB", 0x8580}, + {"GL_SOURCE0_RGB_ARB", 0x8580}, + {"GL_SOURCE0_RGB_EXT", 0x8580}, + {"GL_SRC0_RGB", 0x8580}, + {"GL_SOURCE1_RGB", 0x8581}, + {"GL_SOURCE1_RGB_ARB", 0x8581}, + {"GL_SOURCE1_RGB_EXT", 0x8581}, + {"GL_SRC1_RGB", 0x8581}, + {"GL_SOURCE2_RGB", 0x8582}, + {"GL_SOURCE2_RGB_ARB", 0x8582}, + {"GL_SOURCE2_RGB_EXT", 0x8582}, + {"GL_SRC2_RGB", 0x8582}, + {"GL_SOURCE3_RGB_NV", 0x8583}, + {"GL_SOURCE0_ALPHA", 0x8588}, + {"GL_SOURCE0_ALPHA_ARB", 0x8588}, + {"GL_SOURCE0_ALPHA_EXT", 0x8588}, + {"GL_SRC0_ALPHA", 0x8588}, + {"GL_SOURCE1_ALPHA", 0x8589}, + {"GL_SOURCE1_ALPHA_ARB", 0x8589}, + {"GL_SOURCE1_ALPHA_EXT", 0x8589}, + {"GL_SRC1_ALPHA", 0x8589}, + {"GL_SOURCE2_ALPHA", 0x858A}, + {"GL_SOURCE2_ALPHA_ARB", 0x858A}, + {"GL_SOURCE2_ALPHA_EXT", 0x858A}, + {"GL_SRC2_ALPHA", 0x858A}, + {"GL_SOURCE3_ALPHA_NV", 0x858B}, + {"GL_OPERAND0_RGB", 0x8590}, + {"GL_OPERAND0_RGB_ARB", 0x8590}, + {"GL_OPERAND0_RGB_EXT", 0x8590}, + {"GL_OPERAND1_RGB", 0x8591}, + {"GL_OPERAND1_RGB_ARB", 0x8591}, + {"GL_OPERAND1_RGB_EXT", 0x8591}, + {"GL_OPERAND2_RGB", 0x8592}, + {"GL_OPERAND2_RGB_ARB", 0x8592}, + {"GL_OPERAND2_RGB_EXT", 0x8592}, + {"GL_OPERAND3_RGB_NV", 0x8593}, + {"GL_OPERAND0_ALPHA", 0x8598}, + {"GL_OPERAND0_ALPHA_ARB", 0x8598}, + {"GL_OPERAND0_ALPHA_EXT", 0x8598}, + {"GL_OPERAND1_ALPHA", 0x8599}, + {"GL_OPERAND1_ALPHA_ARB", 0x8599}, + {"GL_OPERAND1_ALPHA_EXT", 0x8599}, + {"GL_OPERAND2_ALPHA", 0x859A}, + {"GL_OPERAND2_ALPHA_ARB", 0x859A}, + {"GL_OPERAND2_ALPHA_EXT", 0x859A}, + {"GL_OPERAND3_ALPHA_NV", 0x859B}, + {"GL_PACK_SUBSAMPLE_RATE_SGIX", 0x85A0}, + {"GL_UNPACK_SUBSAMPLE_RATE_SGIX", 0x85A1}, + {"GL_PIXEL_SUBSAMPLE_4444_SGIX", 0x85A2}, + {"GL_PIXEL_SUBSAMPLE_2424_SGIX", 0x85A3}, + {"GL_PIXEL_SUBSAMPLE_4242_SGIX", 0x85A4}, + {"GL_PERTURB_EXT", 0x85AE}, + {"GL_TEXTURE_NORMAL_EXT", 0x85AF}, + {"GL_LIGHT_MODEL_SPECULAR_VECTOR_APPLE", 0x85B0}, + {"GL_TRANSFORM_HINT_APPLE", 0x85B1}, + {"GL_UNPACK_CLIENT_STORAGE_APPLE", 0x85B2}, + {"GL_BUFFER_OBJECT_APPLE", 0x85B3}, + {"GL_STORAGE_CLIENT_APPLE", 0x85B4}, + {"GL_VERTEX_ARRAY_BINDING", 0x85B5}, + {"GL_VERTEX_ARRAY_BINDING_APPLE", 0x85B5}, + {"GL_TEXTURE_RANGE_LENGTH_APPLE", 0x85B7}, + {"GL_TEXTURE_RANGE_POINTER_APPLE", 0x85B8}, + {"GL_YCBCR_422_APPLE", 0x85B9}, + {"GL_UNSIGNED_SHORT_8_8_APPLE", 0x85BA}, + {"GL_UNSIGNED_SHORT_8_8_MESA", 0x85BA}, + {"GL_UNSIGNED_SHORT_8_8_REV_APPLE", 0x85BB}, + {"GL_UNSIGNED_SHORT_8_8_REV_MESA", 0x85BB}, + {"GL_TEXTURE_STORAGE_HINT_APPLE", 0x85BC}, + {"GL_STORAGE_PRIVATE_APPLE", 0x85BD}, + {"GL_STORAGE_CACHED_APPLE", 0x85BE}, + {"GL_STORAGE_SHARED_APPLE", 0x85BF}, + {"GL_REPLACEMENT_CODE_ARRAY_SUN", 0x85C0}, + {"GL_REPLACEMENT_CODE_ARRAY_TYPE_SUN", 0x85C1}, + {"GL_REPLACEMENT_CODE_ARRAY_STRIDE_SUN", 0x85C2}, + {"GL_REPLACEMENT_CODE_ARRAY_POINTER_SUN", 0x85C3}, + {"GL_R1UI_V3F_SUN", 0x85C4}, + {"GL_R1UI_C4UB_V3F_SUN", 0x85C5}, + {"GL_R1UI_C3F_V3F_SUN", 0x85C6}, + {"GL_R1UI_N3F_V3F_SUN", 0x85C7}, + {"GL_R1UI_C4F_N3F_V3F_SUN", 0x85C8}, + {"GL_R1UI_T2F_V3F_SUN", 0x85C9}, + {"GL_R1UI_T2F_N3F_V3F_SUN", 0x85CA}, + {"GL_R1UI_T2F_C4F_N3F_V3F_SUN", 0x85CB}, + {"GL_SLICE_ACCUM_SUN", 0x85CC}, + {"GL_QUAD_MESH_SUN", 0x8614}, + {"GL_TRIANGLE_MESH_SUN", 0x8615}, + {"GL_VERTEX_PROGRAM_ARB", 0x8620}, + {"GL_VERTEX_PROGRAM_NV", 0x8620}, + {"GL_VERTEX_STATE_PROGRAM_NV", 0x8621}, + {"GL_VERTEX_ATTRIB_ARRAY_ENABLED", 0x8622}, + {"GL_VERTEX_ATTRIB_ARRAY_ENABLED_ARB", 0x8622}, + {"GL_ATTRIB_ARRAY_SIZE_NV", 0x8623}, + {"GL_VERTEX_ATTRIB_ARRAY_SIZE", 0x8623}, + {"GL_VERTEX_ATTRIB_ARRAY_SIZE_ARB", 0x8623}, + {"GL_ATTRIB_ARRAY_STRIDE_NV", 0x8624}, + {"GL_VERTEX_ATTRIB_ARRAY_STRIDE", 0x8624}, + {"GL_VERTEX_ATTRIB_ARRAY_STRIDE_ARB", 0x8624}, + {"GL_ATTRIB_ARRAY_TYPE_NV", 0x8625}, + {"GL_VERTEX_ATTRIB_ARRAY_TYPE", 0x8625}, + {"GL_VERTEX_ATTRIB_ARRAY_TYPE_ARB", 0x8625}, + {"GL_CURRENT_ATTRIB_NV", 0x8626}, + {"GL_CURRENT_VERTEX_ATTRIB", 0x8626}, + {"GL_CURRENT_VERTEX_ATTRIB_ARB", 0x8626}, + {"GL_PROGRAM_LENGTH_ARB", 0x8627}, + {"GL_PROGRAM_LENGTH_NV", 0x8627}, + {"GL_PROGRAM_STRING_ARB", 0x8628}, + {"GL_PROGRAM_STRING_NV", 0x8628}, + {"GL_MODELVIEW_PROJECTION_NV", 0x8629}, + {"GL_IDENTITY_NV", 0x862A}, + {"GL_INVERSE_NV", 0x862B}, + {"GL_TRANSPOSE_NV", 0x862C}, + {"GL_INVERSE_TRANSPOSE_NV", 0x862D}, + {"GL_MAX_PROGRAM_MATRIX_STACK_DEPTH_ARB", 0x862E}, + {"GL_MAX_TRACK_MATRIX_STACK_DEPTH_NV", 0x862E}, + {"GL_MAX_PROGRAM_MATRICES_ARB", 0x862F}, + {"GL_MAX_TRACK_MATRICES_NV", 0x862F}, + {"GL_MATRIX0_NV", 0x8630}, + {"GL_MATRIX1_NV", 0x8631}, + {"GL_MATRIX2_NV", 0x8632}, + {"GL_MATRIX3_NV", 0x8633}, + {"GL_MATRIX4_NV", 0x8634}, + {"GL_MATRIX5_NV", 0x8635}, + {"GL_MATRIX6_NV", 0x8636}, + {"GL_MATRIX7_NV", 0x8637}, + {"GL_CURRENT_MATRIX_STACK_DEPTH_ARB", 0x8640}, + {"GL_CURRENT_MATRIX_STACK_DEPTH_NV", 0x8640}, + {"GL_CURRENT_MATRIX_ARB", 0x8641}, + {"GL_CURRENT_MATRIX_NV", 0x8641}, + {"GL_VERTEX_PROGRAM_POINT_SIZE", 0x8642}, + {"GL_VERTEX_PROGRAM_POINT_SIZE_ARB", 0x8642}, + {"GL_VERTEX_PROGRAM_POINT_SIZE_NV", 0x8642}, + {"GL_PROGRAM_POINT_SIZE", 0x8642}, + {"GL_PROGRAM_POINT_SIZE_ARB", 0x8642}, + {"GL_PROGRAM_POINT_SIZE_EXT", 0x8642}, + {"GL_VERTEX_PROGRAM_TWO_SIDE", 0x8643}, + {"GL_VERTEX_PROGRAM_TWO_SIDE_ARB", 0x8643}, + {"GL_VERTEX_PROGRAM_TWO_SIDE_NV", 0x8643}, + {"GL_PROGRAM_PARAMETER_NV", 0x8644}, + {"GL_ATTRIB_ARRAY_POINTER_NV", 0x8645}, + {"GL_VERTEX_ATTRIB_ARRAY_POINTER", 0x8645}, + {"GL_VERTEX_ATTRIB_ARRAY_POINTER_ARB", 0x8645}, + {"GL_PROGRAM_TARGET_NV", 0x8646}, + {"GL_PROGRAM_RESIDENT_NV", 0x8647}, + {"GL_TRACK_MATRIX_NV", 0x8648}, + {"GL_TRACK_MATRIX_TRANSFORM_NV", 0x8649}, + {"GL_VERTEX_PROGRAM_BINDING_NV", 0x864A}, + {"GL_PROGRAM_ERROR_POSITION_ARB", 0x864B}, + {"GL_PROGRAM_ERROR_POSITION_NV", 0x864B}, + {"GL_OFFSET_TEXTURE_RECTANGLE_NV", 0x864C}, + {"GL_OFFSET_TEXTURE_RECTANGLE_SCALE_NV", 0x864D}, + {"GL_DOT_PRODUCT_TEXTURE_RECTANGLE_NV", 0x864E}, + {"GL_DEPTH_CLAMP", 0x864F}, + {"GL_DEPTH_CLAMP_NV", 0x864F}, + {"GL_VERTEX_ATTRIB_ARRAY0_NV", 0x8650}, + {"GL_VERTEX_ATTRIB_ARRAY1_NV", 0x8651}, + {"GL_VERTEX_ATTRIB_ARRAY2_NV", 0x8652}, + {"GL_VERTEX_ATTRIB_ARRAY3_NV", 0x8653}, + {"GL_VERTEX_ATTRIB_ARRAY4_NV", 0x8654}, + {"GL_VERTEX_ATTRIB_ARRAY5_NV", 0x8655}, + {"GL_VERTEX_ATTRIB_ARRAY6_NV", 0x8656}, + {"GL_VERTEX_ATTRIB_ARRAY7_NV", 0x8657}, + {"GL_VERTEX_ATTRIB_ARRAY8_NV", 0x8658}, + {"GL_VERTEX_ATTRIB_ARRAY9_NV", 0x8659}, + {"GL_VERTEX_ATTRIB_ARRAY10_NV", 0x865A}, + {"GL_VERTEX_ATTRIB_ARRAY11_NV", 0x865B}, + {"GL_VERTEX_ATTRIB_ARRAY12_NV", 0x865C}, + {"GL_VERTEX_ATTRIB_ARRAY13_NV", 0x865D}, + {"GL_VERTEX_ATTRIB_ARRAY14_NV", 0x865E}, + {"GL_VERTEX_ATTRIB_ARRAY15_NV", 0x865F}, + {"GL_MAP1_VERTEX_ATTRIB0_4_NV", 0x8660}, + {"GL_MAP1_VERTEX_ATTRIB1_4_NV", 0x8661}, + {"GL_MAP1_VERTEX_ATTRIB2_4_NV", 0x8662}, + {"GL_MAP1_VERTEX_ATTRIB3_4_NV", 0x8663}, + {"GL_MAP1_VERTEX_ATTRIB4_4_NV", 0x8664}, + {"GL_MAP1_VERTEX_ATTRIB5_4_NV", 0x8665}, + {"GL_MAP1_VERTEX_ATTRIB6_4_NV", 0x8666}, + {"GL_MAP1_VERTEX_ATTRIB7_4_NV", 0x8667}, + {"GL_MAP1_VERTEX_ATTRIB8_4_NV", 0x8668}, + {"GL_MAP1_VERTEX_ATTRIB9_4_NV", 0x8669}, + {"GL_MAP1_VERTEX_ATTRIB10_4_NV", 0x866A}, + {"GL_MAP1_VERTEX_ATTRIB11_4_NV", 0x866B}, + {"GL_MAP1_VERTEX_ATTRIB12_4_NV", 0x866C}, + {"GL_MAP1_VERTEX_ATTRIB13_4_NV", 0x866D}, + {"GL_MAP1_VERTEX_ATTRIB14_4_NV", 0x866E}, + {"GL_MAP1_VERTEX_ATTRIB15_4_NV", 0x866F}, + {"GL_MAP2_VERTEX_ATTRIB0_4_NV", 0x8670}, + {"GL_MAP2_VERTEX_ATTRIB1_4_NV", 0x8671}, + {"GL_MAP2_VERTEX_ATTRIB2_4_NV", 0x8672}, + {"GL_MAP2_VERTEX_ATTRIB3_4_NV", 0x8673}, + {"GL_MAP2_VERTEX_ATTRIB4_4_NV", 0x8674}, + {"GL_MAP2_VERTEX_ATTRIB5_4_NV", 0x8675}, + {"GL_MAP2_VERTEX_ATTRIB6_4_NV", 0x8676}, + {"GL_MAP2_VERTEX_ATTRIB7_4_NV", 0x8677}, + {"GL_PROGRAM_BINDING_ARB", 0x8677}, + {"GL_MAP2_VERTEX_ATTRIB8_4_NV", 0x8678}, + {"GL_MAP2_VERTEX_ATTRIB9_4_NV", 0x8679}, + {"GL_MAP2_VERTEX_ATTRIB10_4_NV", 0x867A}, + {"GL_MAP2_VERTEX_ATTRIB11_4_NV", 0x867B}, + {"GL_MAP2_VERTEX_ATTRIB12_4_NV", 0x867C}, + {"GL_MAP2_VERTEX_ATTRIB13_4_NV", 0x867D}, + {"GL_MAP2_VERTEX_ATTRIB14_4_NV", 0x867E}, + {"GL_MAP2_VERTEX_ATTRIB15_4_NV", 0x867F}, + {"GL_TEXTURE_COMPRESSED_IMAGE_SIZE", 0x86A0}, + {"GL_TEXTURE_COMPRESSED_IMAGE_SIZE_ARB", 0x86A0}, + {"GL_TEXTURE_COMPRESSED", 0x86A1}, + {"GL_TEXTURE_COMPRESSED_ARB", 0x86A1}, + {"GL_NUM_COMPRESSED_TEXTURE_FORMATS", 0x86A2}, + {"GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB", 0x86A2}, + {"GL_COMPRESSED_TEXTURE_FORMATS", 0x86A3}, + {"GL_COMPRESSED_TEXTURE_FORMATS_ARB", 0x86A3}, + {"GL_MAX_VERTEX_UNITS_ARB", 0x86A4}, + {"GL_MAX_VERTEX_UNITS_OES", 0x86A4}, + {"GL_ACTIVE_VERTEX_UNITS_ARB", 0x86A5}, + {"GL_WEIGHT_SUM_UNITY_ARB", 0x86A6}, + {"GL_VERTEX_BLEND_ARB", 0x86A7}, + {"GL_CURRENT_WEIGHT_ARB", 0x86A8}, + {"GL_WEIGHT_ARRAY_TYPE_ARB", 0x86A9}, + {"GL_WEIGHT_ARRAY_TYPE_OES", 0x86A9}, + {"GL_WEIGHT_ARRAY_STRIDE_ARB", 0x86AA}, + {"GL_WEIGHT_ARRAY_STRIDE_OES", 0x86AA}, + {"GL_WEIGHT_ARRAY_SIZE_ARB", 0x86AB}, + {"GL_WEIGHT_ARRAY_SIZE_OES", 0x86AB}, + {"GL_WEIGHT_ARRAY_POINTER_ARB", 0x86AC}, + {"GL_WEIGHT_ARRAY_POINTER_OES", 0x86AC}, + {"GL_WEIGHT_ARRAY_ARB", 0x86AD}, + {"GL_WEIGHT_ARRAY_OES", 0x86AD}, + {"GL_DOT3_RGB", 0x86AE}, + {"GL_DOT3_RGB_ARB", 0x86AE}, + {"GL_DOT3_RGBA", 0x86AF}, + {"GL_DOT3_RGBA_ARB", 0x86AF}, + {"GL_DOT3_RGBA_IMG", 0x86AF}, + {"GL_COMPRESSED_RGB_FXT1_3DFX", 0x86B0}, + {"GL_COMPRESSED_RGBA_FXT1_3DFX", 0x86B1}, + {"GL_MULTISAMPLE_3DFX", 0x86B2}, + {"GL_SAMPLE_BUFFERS_3DFX", 0x86B3}, + {"GL_SAMPLES_3DFX", 0x86B4}, + {"GL_EVAL_2D_NV", 0x86C0}, + {"GL_EVAL_TRIANGULAR_2D_NV", 0x86C1}, + {"GL_MAP_TESSELLATION_NV", 0x86C2}, + {"GL_MAP_ATTRIB_U_ORDER_NV", 0x86C3}, + {"GL_MAP_ATTRIB_V_ORDER_NV", 0x86C4}, + {"GL_EVAL_FRACTIONAL_TESSELLATION_NV", 0x86C5}, + {"GL_EVAL_VERTEX_ATTRIB0_NV", 0x86C6}, + {"GL_EVAL_VERTEX_ATTRIB1_NV", 0x86C7}, + {"GL_EVAL_VERTEX_ATTRIB2_NV", 0x86C8}, + {"GL_EVAL_VERTEX_ATTRIB3_NV", 0x86C9}, + {"GL_EVAL_VERTEX_ATTRIB4_NV", 0x86CA}, + {"GL_EVAL_VERTEX_ATTRIB5_NV", 0x86CB}, + {"GL_EVAL_VERTEX_ATTRIB6_NV", 0x86CC}, + {"GL_EVAL_VERTEX_ATTRIB7_NV", 0x86CD}, + {"GL_EVAL_VERTEX_ATTRIB8_NV", 0x86CE}, + {"GL_EVAL_VERTEX_ATTRIB9_NV", 0x86CF}, + {"GL_EVAL_VERTEX_ATTRIB10_NV", 0x86D0}, + {"GL_EVAL_VERTEX_ATTRIB11_NV", 0x86D1}, + {"GL_EVAL_VERTEX_ATTRIB12_NV", 0x86D2}, + {"GL_EVAL_VERTEX_ATTRIB13_NV", 0x86D3}, + {"GL_EVAL_VERTEX_ATTRIB14_NV", 0x86D4}, + {"GL_EVAL_VERTEX_ATTRIB15_NV", 0x86D5}, + {"GL_MAX_MAP_TESSELLATION_NV", 0x86D6}, + {"GL_MAX_RATIONAL_EVAL_ORDER_NV", 0x86D7}, + {"GL_MAX_PROGRAM_PATCH_ATTRIBS_NV", 0x86D8}, + {"GL_RGBA_UNSIGNED_DOT_PRODUCT_MAPPING_NV", 0x86D9}, + {"GL_UNSIGNED_INT_S8_S8_8_8_NV", 0x86DA}, + {"GL_UNSIGNED_INT_8_8_S8_S8_REV_NV", 0x86DB}, + {"GL_DSDT_MAG_INTENSITY_NV", 0x86DC}, + {"GL_SHADER_CONSISTENT_NV", 0x86DD}, + {"GL_TEXTURE_SHADER_NV", 0x86DE}, + {"GL_SHADER_OPERATION_NV", 0x86DF}, + {"GL_CULL_MODES_NV", 0x86E0}, + {"GL_OFFSET_TEXTURE_MATRIX_NV", 0x86E1}, + {"GL_OFFSET_TEXTURE_2D_MATRIX_NV", 0x86E1}, + {"GL_OFFSET_TEXTURE_SCALE_NV", 0x86E2}, + {"GL_OFFSET_TEXTURE_2D_SCALE_NV", 0x86E2}, + {"GL_OFFSET_TEXTURE_BIAS_NV", 0x86E3}, + {"GL_OFFSET_TEXTURE_2D_BIAS_NV", 0x86E3}, + {"GL_PREVIOUS_TEXTURE_INPUT_NV", 0x86E4}, + {"GL_CONST_EYE_NV", 0x86E5}, + {"GL_PASS_THROUGH_NV", 0x86E6}, + {"GL_CULL_FRAGMENT_NV", 0x86E7}, + {"GL_OFFSET_TEXTURE_2D_NV", 0x86E8}, + {"GL_DEPENDENT_AR_TEXTURE_2D_NV", 0x86E9}, + {"GL_DEPENDENT_GB_TEXTURE_2D_NV", 0x86EA}, + {"GL_SURFACE_STATE_NV", 0x86EB}, + {"GL_DOT_PRODUCT_NV", 0x86EC}, + {"GL_DOT_PRODUCT_DEPTH_REPLACE_NV", 0x86ED}, + {"GL_DOT_PRODUCT_TEXTURE_2D_NV", 0x86EE}, + {"GL_DOT_PRODUCT_TEXTURE_3D_NV", 0x86EF}, + {"GL_DOT_PRODUCT_TEXTURE_CUBE_MAP_NV", 0x86F0}, + {"GL_DOT_PRODUCT_DIFFUSE_CUBE_MAP_NV", 0x86F1}, + {"GL_DOT_PRODUCT_REFLECT_CUBE_MAP_NV", 0x86F2}, + {"GL_DOT_PRODUCT_CONST_EYE_REFLECT_CUBE_MAP_NV", 0x86F3}, + {"GL_HILO_NV", 0x86F4}, + {"GL_DSDT_NV", 0x86F5}, + {"GL_DSDT_MAG_NV", 0x86F6}, + {"GL_DSDT_MAG_VIB_NV", 0x86F7}, + {"GL_HILO16_NV", 0x86F8}, + {"GL_SIGNED_HILO_NV", 0x86F9}, + {"GL_SIGNED_HILO16_NV", 0x86FA}, + {"GL_SIGNED_RGBA_NV", 0x86FB}, + {"GL_SIGNED_RGBA8_NV", 0x86FC}, + {"GL_SURFACE_REGISTERED_NV", 0x86FD}, + {"GL_SIGNED_RGB_NV", 0x86FE}, + {"GL_SIGNED_RGB8_NV", 0x86FF}, + {"GL_SURFACE_MAPPED_NV", 0x8700}, + {"GL_SIGNED_LUMINANCE_NV", 0x8701}, + {"GL_SIGNED_LUMINANCE8_NV", 0x8702}, + {"GL_SIGNED_LUMINANCE_ALPHA_NV", 0x8703}, + {"GL_SIGNED_LUMINANCE8_ALPHA8_NV", 0x8704}, + {"GL_SIGNED_ALPHA_NV", 0x8705}, + {"GL_SIGNED_ALPHA8_NV", 0x8706}, + {"GL_SIGNED_INTENSITY_NV", 0x8707}, + {"GL_SIGNED_INTENSITY8_NV", 0x8708}, + {"GL_DSDT8_NV", 0x8709}, + {"GL_DSDT8_MAG8_NV", 0x870A}, + {"GL_DSDT8_MAG8_INTENSITY8_NV", 0x870B}, + {"GL_SIGNED_RGB_UNSIGNED_ALPHA_NV", 0x870C}, + {"GL_SIGNED_RGB8_UNSIGNED_ALPHA8_NV", 0x870D}, + {"GL_HI_SCALE_NV", 0x870E}, + {"GL_LO_SCALE_NV", 0x870F}, + {"GL_DS_SCALE_NV", 0x8710}, + {"GL_DT_SCALE_NV", 0x8711}, + {"GL_MAGNITUDE_SCALE_NV", 0x8712}, + {"GL_VIBRANCE_SCALE_NV", 0x8713}, + {"GL_HI_BIAS_NV", 0x8714}, + {"GL_LO_BIAS_NV", 0x8715}, + {"GL_DS_BIAS_NV", 0x8716}, + {"GL_DT_BIAS_NV", 0x8717}, + {"GL_MAGNITUDE_BIAS_NV", 0x8718}, + {"GL_VIBRANCE_BIAS_NV", 0x8719}, + {"GL_TEXTURE_BORDER_VALUES_NV", 0x871A}, + {"GL_TEXTURE_HI_SIZE_NV", 0x871B}, + {"GL_TEXTURE_LO_SIZE_NV", 0x871C}, + {"GL_TEXTURE_DS_SIZE_NV", 0x871D}, + {"GL_TEXTURE_DT_SIZE_NV", 0x871E}, + {"GL_TEXTURE_MAG_SIZE_NV", 0x871F}, + {"GL_MODELVIEW2_ARB", 0x8722}, + {"GL_MODELVIEW3_ARB", 0x8723}, + {"GL_MODELVIEW4_ARB", 0x8724}, + {"GL_MODELVIEW5_ARB", 0x8725}, + {"GL_MODELVIEW6_ARB", 0x8726}, + {"GL_MODELVIEW7_ARB", 0x8727}, + {"GL_MODELVIEW8_ARB", 0x8728}, + {"GL_MODELVIEW9_ARB", 0x8729}, + {"GL_MODELVIEW10_ARB", 0x872A}, + {"GL_MODELVIEW11_ARB", 0x872B}, + {"GL_MODELVIEW12_ARB", 0x872C}, + {"GL_MODELVIEW13_ARB", 0x872D}, + {"GL_MODELVIEW14_ARB", 0x872E}, + {"GL_MODELVIEW15_ARB", 0x872F}, + {"GL_MODELVIEW16_ARB", 0x8730}, + {"GL_MODELVIEW17_ARB", 0x8731}, + {"GL_MODELVIEW18_ARB", 0x8732}, + {"GL_MODELVIEW19_ARB", 0x8733}, + {"GL_MODELVIEW20_ARB", 0x8734}, + {"GL_MODELVIEW21_ARB", 0x8735}, + {"GL_MODELVIEW22_ARB", 0x8736}, + {"GL_MODELVIEW23_ARB", 0x8737}, + {"GL_MODELVIEW24_ARB", 0x8738}, + {"GL_MODELVIEW25_ARB", 0x8739}, + {"GL_MODELVIEW26_ARB", 0x873A}, + {"GL_MODELVIEW27_ARB", 0x873B}, + {"GL_MODELVIEW28_ARB", 0x873C}, + {"GL_MODELVIEW29_ARB", 0x873D}, + {"GL_MODELVIEW30_ARB", 0x873E}, + {"GL_MODELVIEW31_ARB", 0x873F}, + {"GL_DOT3_RGB_EXT", 0x8740}, + {"GL_Z400_BINARY_AMD", 0x8740}, + {"GL_DOT3_RGBA_EXT", 0x8741}, + {"GL_PROGRAM_BINARY_LENGTH_OES", 0x8741}, + {"GL_PROGRAM_BINARY_LENGTH", 0x8741}, + {"GL_MIRROR_CLAMP_ATI", 0x8742}, + {"GL_MIRROR_CLAMP_EXT", 0x8742}, + {"GL_MIRROR_CLAMP_TO_EDGE", 0x8743}, + {"GL_MIRROR_CLAMP_TO_EDGE_ATI", 0x8743}, + {"GL_MIRROR_CLAMP_TO_EDGE_EXT", 0x8743}, + {"GL_MODULATE_ADD_ATI", 0x8744}, + {"GL_MODULATE_SIGNED_ADD_ATI", 0x8745}, + {"GL_MODULATE_SUBTRACT_ATI", 0x8746}, + {"GL_SET_AMD", 0x874A}, + {"GL_REPLACE_VALUE_AMD", 0x874B}, + {"GL_STENCIL_OP_VALUE_AMD", 0x874C}, + {"GL_STENCIL_BACK_OP_VALUE_AMD", 0x874D}, + {"GL_VERTEX_ATTRIB_ARRAY_LONG", 0x874E}, + {"GL_DEPTH_STENCIL_MESA", 0x8750}, + {"GL_UNSIGNED_INT_24_8_MESA", 0x8751}, + {"GL_UNSIGNED_INT_8_24_REV_MESA", 0x8752}, + {"GL_UNSIGNED_SHORT_15_1_MESA", 0x8753}, + {"GL_UNSIGNED_SHORT_1_15_REV_MESA", 0x8754}, + {"GL_TRACE_MASK_MESA", 0x8755}, + {"GL_TRACE_NAME_MESA", 0x8756}, + {"GL_YCBCR_MESA", 0x8757}, + {"GL_PACK_INVERT_MESA", 0x8758}, + {"GL_DEBUG_OBJECT_MESA", 0x8759}, + {"GL_TEXTURE_1D_STACK_MESAX", 0x8759}, + {"GL_DEBUG_PRINT_MESA", 0x875A}, + {"GL_TEXTURE_2D_STACK_MESAX", 0x875A}, + {"GL_DEBUG_ASSERT_MESA", 0x875B}, + {"GL_PROXY_TEXTURE_1D_STACK_MESAX", 0x875B}, + {"GL_PROXY_TEXTURE_2D_STACK_MESAX", 0x875C}, + {"GL_TEXTURE_1D_STACK_BINDING_MESAX", 0x875D}, + {"GL_TEXTURE_2D_STACK_BINDING_MESAX", 0x875E}, + {"GL_STATIC_ATI", 0x8760}, + {"GL_DYNAMIC_ATI", 0x8761}, + {"GL_PRESERVE_ATI", 0x8762}, + {"GL_DISCARD_ATI", 0x8763}, + {"GL_BUFFER_SIZE", 0x8764}, + {"GL_BUFFER_SIZE_ARB", 0x8764}, + {"GL_OBJECT_BUFFER_SIZE_ATI", 0x8764}, + {"GL_BUFFER_USAGE", 0x8765}, + {"GL_BUFFER_USAGE_ARB", 0x8765}, + {"GL_OBJECT_BUFFER_USAGE_ATI", 0x8765}, + {"GL_ARRAY_OBJECT_BUFFER_ATI", 0x8766}, + {"GL_ARRAY_OBJECT_OFFSET_ATI", 0x8767}, + {"GL_ELEMENT_ARRAY_ATI", 0x8768}, + {"GL_ELEMENT_ARRAY_TYPE_ATI", 0x8769}, + {"GL_ELEMENT_ARRAY_POINTER_ATI", 0x876A}, + {"GL_MAX_VERTEX_STREAMS_ATI", 0x876B}, + {"GL_VERTEX_STREAM0_ATI", 0x876C}, + {"GL_VERTEX_STREAM1_ATI", 0x876D}, + {"GL_VERTEX_STREAM2_ATI", 0x876E}, + {"GL_VERTEX_STREAM3_ATI", 0x876F}, + {"GL_VERTEX_STREAM4_ATI", 0x8770}, + {"GL_VERTEX_STREAM5_ATI", 0x8771}, + {"GL_VERTEX_STREAM6_ATI", 0x8772}, + {"GL_VERTEX_STREAM7_ATI", 0x8773}, + {"GL_VERTEX_SOURCE_ATI", 0x8774}, + {"GL_BUMP_ROT_MATRIX_ATI", 0x8775}, + {"GL_BUMP_ROT_MATRIX_SIZE_ATI", 0x8776}, + {"GL_BUMP_NUM_TEX_UNITS_ATI", 0x8777}, + {"GL_BUMP_TEX_UNITS_ATI", 0x8778}, + {"GL_DUDV_ATI", 0x8779}, + {"GL_DU8DV8_ATI", 0x877A}, + {"GL_BUMP_ENVMAP_ATI", 0x877B}, + {"GL_BUMP_TARGET_ATI", 0x877C}, + {"GL_VERTEX_SHADER_EXT", 0x8780}, + {"GL_VERTEX_SHADER_BINDING_EXT", 0x8781}, + {"GL_OP_INDEX_EXT", 0x8782}, + {"GL_OP_NEGATE_EXT", 0x8783}, + {"GL_OP_DOT3_EXT", 0x8784}, + {"GL_OP_DOT4_EXT", 0x8785}, + {"GL_OP_MUL_EXT", 0x8786}, + {"GL_OP_ADD_EXT", 0x8787}, + {"GL_OP_MADD_EXT", 0x8788}, + {"GL_OP_FRAC_EXT", 0x8789}, + {"GL_OP_MAX_EXT", 0x878A}, + {"GL_OP_MIN_EXT", 0x878B}, + {"GL_OP_SET_GE_EXT", 0x878C}, + {"GL_OP_SET_LT_EXT", 0x878D}, + {"GL_OP_CLAMP_EXT", 0x878E}, + {"GL_OP_FLOOR_EXT", 0x878F}, + {"GL_OP_ROUND_EXT", 0x8790}, + {"GL_OP_EXP_BASE_2_EXT", 0x8791}, + {"GL_OP_LOG_BASE_2_EXT", 0x8792}, + {"GL_OP_POWER_EXT", 0x8793}, + {"GL_OP_RECIP_EXT", 0x8794}, + {"GL_OP_RECIP_SQRT_EXT", 0x8795}, + {"GL_OP_SUB_EXT", 0x8796}, + {"GL_OP_CROSS_PRODUCT_EXT", 0x8797}, + {"GL_OP_MULTIPLY_MATRIX_EXT", 0x8798}, + {"GL_OP_MOV_EXT", 0x8799}, + {"GL_OUTPUT_VERTEX_EXT", 0x879A}, + {"GL_OUTPUT_COLOR0_EXT", 0x879B}, + {"GL_OUTPUT_COLOR1_EXT", 0x879C}, + {"GL_OUTPUT_TEXTURE_COORD0_EXT", 0x879D}, + {"GL_OUTPUT_TEXTURE_COORD1_EXT", 0x879E}, + {"GL_OUTPUT_TEXTURE_COORD2_EXT", 0x879F}, + {"GL_OUTPUT_TEXTURE_COORD3_EXT", 0x87A0}, + {"GL_OUTPUT_TEXTURE_COORD4_EXT", 0x87A1}, + {"GL_OUTPUT_TEXTURE_COORD5_EXT", 0x87A2}, + {"GL_OUTPUT_TEXTURE_COORD6_EXT", 0x87A3}, + {"GL_OUTPUT_TEXTURE_COORD7_EXT", 0x87A4}, + {"GL_OUTPUT_TEXTURE_COORD8_EXT", 0x87A5}, + {"GL_OUTPUT_TEXTURE_COORD9_EXT", 0x87A6}, + {"GL_OUTPUT_TEXTURE_COORD10_EXT", 0x87A7}, + {"GL_OUTPUT_TEXTURE_COORD11_EXT", 0x87A8}, + {"GL_OUTPUT_TEXTURE_COORD12_EXT", 0x87A9}, + {"GL_OUTPUT_TEXTURE_COORD13_EXT", 0x87AA}, + {"GL_OUTPUT_TEXTURE_COORD14_EXT", 0x87AB}, + {"GL_OUTPUT_TEXTURE_COORD15_EXT", 0x87AC}, + {"GL_OUTPUT_TEXTURE_COORD16_EXT", 0x87AD}, + {"GL_OUTPUT_TEXTURE_COORD17_EXT", 0x87AE}, + {"GL_OUTPUT_TEXTURE_COORD18_EXT", 0x87AF}, + {"GL_OUTPUT_TEXTURE_COORD19_EXT", 0x87B0}, + {"GL_OUTPUT_TEXTURE_COORD20_EXT", 0x87B1}, + {"GL_OUTPUT_TEXTURE_COORD21_EXT", 0x87B2}, + {"GL_OUTPUT_TEXTURE_COORD22_EXT", 0x87B3}, + {"GL_OUTPUT_TEXTURE_COORD23_EXT", 0x87B4}, + {"GL_OUTPUT_TEXTURE_COORD24_EXT", 0x87B5}, + {"GL_OUTPUT_TEXTURE_COORD25_EXT", 0x87B6}, + {"GL_OUTPUT_TEXTURE_COORD26_EXT", 0x87B7}, + {"GL_OUTPUT_TEXTURE_COORD27_EXT", 0x87B8}, + {"GL_OUTPUT_TEXTURE_COORD28_EXT", 0x87B9}, + {"GL_OUTPUT_TEXTURE_COORD29_EXT", 0x87BA}, + {"GL_OUTPUT_TEXTURE_COORD30_EXT", 0x87BB}, + {"GL_OUTPUT_TEXTURE_COORD31_EXT", 0x87BC}, + {"GL_OUTPUT_FOG_EXT", 0x87BD}, + {"GL_SCALAR_EXT", 0x87BE}, + {"GL_VECTOR_EXT", 0x87BF}, + {"GL_MATRIX_EXT", 0x87C0}, + {"GL_VARIANT_EXT", 0x87C1}, + {"GL_INVARIANT_EXT", 0x87C2}, + {"GL_LOCAL_CONSTANT_EXT", 0x87C3}, + {"GL_LOCAL_EXT", 0x87C4}, + {"GL_MAX_VERTEX_SHADER_INSTRUCTIONS_EXT", 0x87C5}, + {"GL_MAX_VERTEX_SHADER_VARIANTS_EXT", 0x87C6}, + {"GL_MAX_VERTEX_SHADER_INVARIANTS_EXT", 0x87C7}, + {"GL_MAX_VERTEX_SHADER_LOCAL_CONSTANTS_EXT", 0x87C8}, + {"GL_MAX_VERTEX_SHADER_LOCALS_EXT", 0x87C9}, + {"GL_MAX_OPTIMIZED_VERTEX_SHADER_INSTRUCTIONS_EXT", 0x87CA}, + {"GL_MAX_OPTIMIZED_VERTEX_SHADER_VARIANTS_EXT", 0x87CB}, + {"GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCAL_CONSTANTS_EXT", 0x87CC}, + {"GL_MAX_OPTIMIZED_VERTEX_SHADER_INVARIANTS_EXT", 0x87CD}, + {"GL_MAX_OPTIMIZED_VERTEX_SHADER_LOCALS_EXT", 0x87CE}, + {"GL_VERTEX_SHADER_INSTRUCTIONS_EXT", 0x87CF}, + {"GL_VERTEX_SHADER_VARIANTS_EXT", 0x87D0}, + {"GL_VERTEX_SHADER_INVARIANTS_EXT", 0x87D1}, + {"GL_VERTEX_SHADER_LOCAL_CONSTANTS_EXT", 0x87D2}, + {"GL_VERTEX_SHADER_LOCALS_EXT", 0x87D3}, + {"GL_VERTEX_SHADER_OPTIMIZED_EXT", 0x87D4}, + {"GL_X_EXT", 0x87D5}, + {"GL_Y_EXT", 0x87D6}, + {"GL_Z_EXT", 0x87D7}, + {"GL_W_EXT", 0x87D8}, + {"GL_NEGATIVE_X_EXT", 0x87D9}, + {"GL_NEGATIVE_Y_EXT", 0x87DA}, + {"GL_NEGATIVE_Z_EXT", 0x87DB}, + {"GL_NEGATIVE_W_EXT", 0x87DC}, + {"GL_ZERO_EXT", 0x87DD}, + {"GL_ONE_EXT", 0x87DE}, + {"GL_NEGATIVE_ONE_EXT", 0x87DF}, + {"GL_NORMALIZED_RANGE_EXT", 0x87E0}, + {"GL_FULL_RANGE_EXT", 0x87E1}, + {"GL_CURRENT_VERTEX_EXT", 0x87E2}, + {"GL_MVP_MATRIX_EXT", 0x87E3}, + {"GL_VARIANT_VALUE_EXT", 0x87E4}, + {"GL_VARIANT_DATATYPE_EXT", 0x87E5}, + {"GL_VARIANT_ARRAY_STRIDE_EXT", 0x87E6}, + {"GL_VARIANT_ARRAY_TYPE_EXT", 0x87E7}, + {"GL_VARIANT_ARRAY_EXT", 0x87E8}, + {"GL_VARIANT_ARRAY_POINTER_EXT", 0x87E9}, + {"GL_INVARIANT_VALUE_EXT", 0x87EA}, + {"GL_INVARIANT_DATATYPE_EXT", 0x87EB}, + {"GL_LOCAL_CONSTANT_VALUE_EXT", 0x87EC}, + {"GL_LOCAL_CONSTANT_DATATYPE_EXT", 0x87ED}, + {"GL_ATC_RGBA_INTERPOLATED_ALPHA_AMD", 0x87EE}, + {"GL_PN_TRIANGLES_ATI", 0x87F0}, + {"GL_MAX_PN_TRIANGLES_TESSELATION_LEVEL_ATI", 0x87F1}, + {"GL_PN_TRIANGLES_POINT_MODE_ATI", 0x87F2}, + {"GL_PN_TRIANGLES_NORMAL_MODE_ATI", 0x87F3}, + {"GL_PN_TRIANGLES_TESSELATION_LEVEL_ATI", 0x87F4}, + {"GL_PN_TRIANGLES_POINT_MODE_LINEAR_ATI", 0x87F5}, + {"GL_PN_TRIANGLES_POINT_MODE_CUBIC_ATI", 0x87F6}, + {"GL_PN_TRIANGLES_NORMAL_MODE_LINEAR_ATI", 0x87F7}, + {"GL_PN_TRIANGLES_NORMAL_MODE_QUADRATIC_ATI", 0x87F8}, + {"GL_3DC_X_AMD", 0x87F9}, + {"GL_3DC_XY_AMD", 0x87FA}, + {"GL_VBO_FREE_MEMORY_ATI", 0x87FB}, + {"GL_TEXTURE_FREE_MEMORY_ATI", 0x87FC}, + {"GL_RENDERBUFFER_FREE_MEMORY_ATI", 0x87FD}, + {"GL_NUM_PROGRAM_BINARY_FORMATS", 0x87FE}, + {"GL_NUM_PROGRAM_BINARY_FORMATS_OES", 0x87FE}, + {"GL_PROGRAM_BINARY_FORMATS", 0x87FF}, + {"GL_PROGRAM_BINARY_FORMATS_OES", 0x87FF}, + {"GL_STENCIL_BACK_FUNC", 0x8800}, + {"GL_STENCIL_BACK_FUNC_ATI", 0x8800}, + {"GL_STENCIL_BACK_FAIL", 0x8801}, + {"GL_STENCIL_BACK_FAIL_ATI", 0x8801}, + {"GL_STENCIL_BACK_PASS_DEPTH_FAIL", 0x8802}, + {"GL_STENCIL_BACK_PASS_DEPTH_FAIL_ATI", 0x8802}, + {"GL_STENCIL_BACK_PASS_DEPTH_PASS", 0x8803}, + {"GL_STENCIL_BACK_PASS_DEPTH_PASS_ATI", 0x8803}, + {"GL_FRAGMENT_PROGRAM_ARB", 0x8804}, + {"GL_PROGRAM_ALU_INSTRUCTIONS_ARB", 0x8805}, + {"GL_PROGRAM_TEX_INSTRUCTIONS_ARB", 0x8806}, + {"GL_PROGRAM_TEX_INDIRECTIONS_ARB", 0x8807}, + {"GL_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB", 0x8808}, + {"GL_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB", 0x8809}, + {"GL_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB", 0x880A}, + {"GL_MAX_PROGRAM_ALU_INSTRUCTIONS_ARB", 0x880B}, + {"GL_MAX_PROGRAM_TEX_INSTRUCTIONS_ARB", 0x880C}, + {"GL_MAX_PROGRAM_TEX_INDIRECTIONS_ARB", 0x880D}, + {"GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB", 0x880E}, + {"GL_MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB", 0x880F}, + {"GL_MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB", 0x8810}, + {"GL_RGBA32F", 0x8814}, + {"GL_RGBA32F_ARB", 0x8814}, + {"GL_RGBA_FLOAT32_APPLE", 0x8814}, + {"GL_RGBA_FLOAT32_ATI", 0x8814}, + {"GL_RGB32F", 0x8815}, + {"GL_RGB32F_ARB", 0x8815}, + {"GL_RGB_FLOAT32_APPLE", 0x8815}, + {"GL_RGB_FLOAT32_ATI", 0x8815}, + {"GL_ALPHA32F_ARB", 0x8816}, + {"GL_ALPHA_FLOAT32_APPLE", 0x8816}, + {"GL_ALPHA_FLOAT32_ATI", 0x8816}, + {"GL_INTENSITY32F_ARB", 0x8817}, + {"GL_INTENSITY_FLOAT32_APPLE", 0x8817}, + {"GL_INTENSITY_FLOAT32_ATI", 0x8817}, + {"GL_LUMINANCE32F_ARB", 0x8818}, + {"GL_LUMINANCE_FLOAT32_APPLE", 0x8818}, + {"GL_LUMINANCE_FLOAT32_ATI", 0x8818}, + {"GL_LUMINANCE_ALPHA32F_ARB", 0x8819}, + {"GL_LUMINANCE_ALPHA_FLOAT32_APPLE", 0x8819}, + {"GL_LUMINANCE_ALPHA_FLOAT32_ATI", 0x8819}, + {"GL_RGBA16F", 0x881A}, + {"GL_RGBA16F_ARB", 0x881A}, + {"GL_RGBA16F_EXT", 0x881A}, + {"GL_RGBA_FLOAT16_APPLE", 0x881A}, + {"GL_RGBA_FLOAT16_ATI", 0x881A}, + {"GL_RGB16F", 0x881B}, + {"GL_RGB16F_ARB", 0x881B}, + {"GL_RGB16F_EXT", 0x881B}, + {"GL_RGB_FLOAT16_APPLE", 0x881B}, + {"GL_RGB_FLOAT16_ATI", 0x881B}, + {"GL_ALPHA16F_ARB", 0x881C}, + {"GL_ALPHA_FLOAT16_APPLE", 0x881C}, + {"GL_ALPHA_FLOAT16_ATI", 0x881C}, + {"GL_INTENSITY16F_ARB", 0x881D}, + {"GL_INTENSITY_FLOAT16_APPLE", 0x881D}, + {"GL_INTENSITY_FLOAT16_ATI", 0x881D}, + {"GL_LUMINANCE16F_ARB", 0x881E}, + {"GL_LUMINANCE_FLOAT16_APPLE", 0x881E}, + {"GL_LUMINANCE_FLOAT16_ATI", 0x881E}, + {"GL_LUMINANCE_ALPHA16F_ARB", 0x881F}, + {"GL_LUMINANCE_ALPHA_FLOAT16_APPLE", 0x881F}, + {"GL_LUMINANCE_ALPHA_FLOAT16_ATI", 0x881F}, + {"GL_RGBA_FLOAT_MODE_ARB", 0x8820}, + {"GL_RGBA_FLOAT_MODE_ATI", 0x8820}, + {"GL_WRITEONLY_RENDERING_QCOM", 0x8823}, + {"GL_MAX_DRAW_BUFFERS", 0x8824}, + {"GL_MAX_DRAW_BUFFERS_ARB", 0x8824}, + {"GL_MAX_DRAW_BUFFERS_ATI", 0x8824}, + {"GL_MAX_DRAW_BUFFERS_EXT", 0x8824}, + {"GL_MAX_DRAW_BUFFERS_NV", 0x8824}, + {"GL_DRAW_BUFFER0", 0x8825}, + {"GL_DRAW_BUFFER0_ARB", 0x8825}, + {"GL_DRAW_BUFFER0_ATI", 0x8825}, + {"GL_DRAW_BUFFER0_EXT", 0x8825}, + {"GL_DRAW_BUFFER0_NV", 0x8825}, + {"GL_DRAW_BUFFER1", 0x8826}, + {"GL_DRAW_BUFFER1_ARB", 0x8826}, + {"GL_DRAW_BUFFER1_ATI", 0x8826}, + {"GL_DRAW_BUFFER1_EXT", 0x8826}, + {"GL_DRAW_BUFFER1_NV", 0x8826}, + {"GL_DRAW_BUFFER2", 0x8827}, + {"GL_DRAW_BUFFER2_ARB", 0x8827}, + {"GL_DRAW_BUFFER2_ATI", 0x8827}, + {"GL_DRAW_BUFFER2_EXT", 0x8827}, + {"GL_DRAW_BUFFER2_NV", 0x8827}, + {"GL_DRAW_BUFFER3", 0x8828}, + {"GL_DRAW_BUFFER3_ARB", 0x8828}, + {"GL_DRAW_BUFFER3_ATI", 0x8828}, + {"GL_DRAW_BUFFER3_EXT", 0x8828}, + {"GL_DRAW_BUFFER3_NV", 0x8828}, + {"GL_DRAW_BUFFER4", 0x8829}, + {"GL_DRAW_BUFFER4_ARB", 0x8829}, + {"GL_DRAW_BUFFER4_ATI", 0x8829}, + {"GL_DRAW_BUFFER4_EXT", 0x8829}, + {"GL_DRAW_BUFFER4_NV", 0x8829}, + {"GL_DRAW_BUFFER5", 0x882A}, + {"GL_DRAW_BUFFER5_ARB", 0x882A}, + {"GL_DRAW_BUFFER5_ATI", 0x882A}, + {"GL_DRAW_BUFFER5_EXT", 0x882A}, + {"GL_DRAW_BUFFER5_NV", 0x882A}, + {"GL_DRAW_BUFFER6", 0x882B}, + {"GL_DRAW_BUFFER6_ARB", 0x882B}, + {"GL_DRAW_BUFFER6_ATI", 0x882B}, + {"GL_DRAW_BUFFER6_EXT", 0x882B}, + {"GL_DRAW_BUFFER6_NV", 0x882B}, + {"GL_DRAW_BUFFER7", 0x882C}, + {"GL_DRAW_BUFFER7_ARB", 0x882C}, + {"GL_DRAW_BUFFER7_ATI", 0x882C}, + {"GL_DRAW_BUFFER7_EXT", 0x882C}, + {"GL_DRAW_BUFFER7_NV", 0x882C}, + {"GL_DRAW_BUFFER8", 0x882D}, + {"GL_DRAW_BUFFER8_ARB", 0x882D}, + {"GL_DRAW_BUFFER8_ATI", 0x882D}, + {"GL_DRAW_BUFFER8_EXT", 0x882D}, + {"GL_DRAW_BUFFER8_NV", 0x882D}, + {"GL_DRAW_BUFFER9", 0x882E}, + {"GL_DRAW_BUFFER9_ARB", 0x882E}, + {"GL_DRAW_BUFFER9_ATI", 0x882E}, + {"GL_DRAW_BUFFER9_EXT", 0x882E}, + {"GL_DRAW_BUFFER9_NV", 0x882E}, + {"GL_DRAW_BUFFER10", 0x882F}, + {"GL_DRAW_BUFFER10_ARB", 0x882F}, + {"GL_DRAW_BUFFER10_ATI", 0x882F}, + {"GL_DRAW_BUFFER10_EXT", 0x882F}, + {"GL_DRAW_BUFFER10_NV", 0x882F}, + {"GL_DRAW_BUFFER11", 0x8830}, + {"GL_DRAW_BUFFER11_ARB", 0x8830}, + {"GL_DRAW_BUFFER11_ATI", 0x8830}, + {"GL_DRAW_BUFFER11_EXT", 0x8830}, + {"GL_DRAW_BUFFER11_NV", 0x8830}, + {"GL_DRAW_BUFFER12", 0x8831}, + {"GL_DRAW_BUFFER12_ARB", 0x8831}, + {"GL_DRAW_BUFFER12_ATI", 0x8831}, + {"GL_DRAW_BUFFER12_EXT", 0x8831}, + {"GL_DRAW_BUFFER12_NV", 0x8831}, + {"GL_DRAW_BUFFER13", 0x8832}, + {"GL_DRAW_BUFFER13_ARB", 0x8832}, + {"GL_DRAW_BUFFER13_ATI", 0x8832}, + {"GL_DRAW_BUFFER13_EXT", 0x8832}, + {"GL_DRAW_BUFFER13_NV", 0x8832}, + {"GL_DRAW_BUFFER14", 0x8833}, + {"GL_DRAW_BUFFER14_ARB", 0x8833}, + {"GL_DRAW_BUFFER14_ATI", 0x8833}, + {"GL_DRAW_BUFFER14_EXT", 0x8833}, + {"GL_DRAW_BUFFER14_NV", 0x8833}, + {"GL_DRAW_BUFFER15", 0x8834}, + {"GL_DRAW_BUFFER15_ARB", 0x8834}, + {"GL_DRAW_BUFFER15_ATI", 0x8834}, + {"GL_DRAW_BUFFER15_EXT", 0x8834}, + {"GL_DRAW_BUFFER15_NV", 0x8834}, + {"GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI", 0x8835}, + {"GL_BLEND_EQUATION_ALPHA", 0x883D}, + {"GL_BLEND_EQUATION_ALPHA_EXT", 0x883D}, + {"GL_BLEND_EQUATION_ALPHA_OES", 0x883D}, + {"GL_SUBSAMPLE_DISTANCE_AMD", 0x883F}, + {"GL_MATRIX_PALETTE_ARB", 0x8840}, + {"GL_MATRIX_PALETTE_OES", 0x8840}, + {"GL_MAX_MATRIX_PALETTE_STACK_DEPTH_ARB", 0x8841}, + {"GL_MAX_PALETTE_MATRICES_ARB", 0x8842}, + {"GL_MAX_PALETTE_MATRICES_OES", 0x8842}, + {"GL_CURRENT_PALETTE_MATRIX_ARB", 0x8843}, + {"GL_CURRENT_PALETTE_MATRIX_OES", 0x8843}, + {"GL_MATRIX_INDEX_ARRAY_ARB", 0x8844}, + {"GL_MATRIX_INDEX_ARRAY_OES", 0x8844}, + {"GL_CURRENT_MATRIX_INDEX_ARB", 0x8845}, + {"GL_MATRIX_INDEX_ARRAY_SIZE_ARB", 0x8846}, + {"GL_MATRIX_INDEX_ARRAY_SIZE_OES", 0x8846}, + {"GL_MATRIX_INDEX_ARRAY_TYPE_ARB", 0x8847}, + {"GL_MATRIX_INDEX_ARRAY_TYPE_OES", 0x8847}, + {"GL_MATRIX_INDEX_ARRAY_STRIDE_ARB", 0x8848}, + {"GL_MATRIX_INDEX_ARRAY_STRIDE_OES", 0x8848}, + {"GL_MATRIX_INDEX_ARRAY_POINTER_ARB", 0x8849}, + {"GL_MATRIX_INDEX_ARRAY_POINTER_OES", 0x8849}, + {"GL_TEXTURE_DEPTH_SIZE", 0x884A}, + {"GL_TEXTURE_DEPTH_SIZE_ARB", 0x884A}, + {"GL_DEPTH_TEXTURE_MODE", 0x884B}, + {"GL_DEPTH_TEXTURE_MODE_ARB", 0x884B}, + {"GL_TEXTURE_COMPARE_MODE", 0x884C}, + {"GL_TEXTURE_COMPARE_MODE_ARB", 0x884C}, + {"GL_TEXTURE_COMPARE_MODE_EXT", 0x884C}, + {"GL_TEXTURE_COMPARE_FUNC", 0x884D}, + {"GL_TEXTURE_COMPARE_FUNC_ARB", 0x884D}, + {"GL_TEXTURE_COMPARE_FUNC_EXT", 0x884D}, + {"GL_COMPARE_R_TO_TEXTURE", 0x884E}, + {"GL_COMPARE_R_TO_TEXTURE_ARB", 0x884E}, + {"GL_COMPARE_REF_DEPTH_TO_TEXTURE_EXT", 0x884E}, + {"GL_COMPARE_REF_TO_TEXTURE", 0x884E}, + {"GL_COMPARE_REF_TO_TEXTURE_EXT", 0x884E}, + {"GL_TEXTURE_CUBE_MAP_SEAMLESS", 0x884F}, + {"GL_OFFSET_PROJECTIVE_TEXTURE_2D_NV", 0x8850}, + {"GL_OFFSET_PROJECTIVE_TEXTURE_2D_SCALE_NV", 0x8851}, + {"GL_OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_NV", 0x8852}, + {"GL_OFFSET_PROJECTIVE_TEXTURE_RECTANGLE_SCALE_NV", 0x8853}, + {"GL_OFFSET_HILO_TEXTURE_2D_NV", 0x8854}, + {"GL_OFFSET_HILO_TEXTURE_RECTANGLE_NV", 0x8855}, + {"GL_OFFSET_HILO_PROJECTIVE_TEXTURE_2D_NV", 0x8856}, + {"GL_OFFSET_HILO_PROJECTIVE_TEXTURE_RECTANGLE_NV", 0x8857}, + {"GL_DEPENDENT_HILO_TEXTURE_2D_NV", 0x8858}, + {"GL_DEPENDENT_RGB_TEXTURE_3D_NV", 0x8859}, + {"GL_DEPENDENT_RGB_TEXTURE_CUBE_MAP_NV", 0x885A}, + {"GL_DOT_PRODUCT_PASS_THROUGH_NV", 0x885B}, + {"GL_DOT_PRODUCT_TEXTURE_1D_NV", 0x885C}, + {"GL_DOT_PRODUCT_AFFINE_DEPTH_REPLACE_NV", 0x885D}, + {"GL_HILO8_NV", 0x885E}, + {"GL_SIGNED_HILO8_NV", 0x885F}, + {"GL_FORCE_BLUE_TO_ONE_NV", 0x8860}, + {"GL_POINT_SPRITE", 0x8861}, + {"GL_POINT_SPRITE_ARB", 0x8861}, + {"GL_POINT_SPRITE_NV", 0x8861}, + {"GL_POINT_SPRITE_OES", 0x8861}, + {"GL_COORD_REPLACE", 0x8862}, + {"GL_COORD_REPLACE_ARB", 0x8862}, + {"GL_COORD_REPLACE_NV", 0x8862}, + {"GL_COORD_REPLACE_OES", 0x8862}, + {"GL_POINT_SPRITE_R_MODE_NV", 0x8863}, + {"GL_PIXEL_COUNTER_BITS_NV", 0x8864}, + {"GL_QUERY_COUNTER_BITS", 0x8864}, + {"GL_QUERY_COUNTER_BITS_ARB", 0x8864}, + {"GL_QUERY_COUNTER_BITS_EXT", 0x8864}, + {"GL_CURRENT_OCCLUSION_QUERY_ID_NV", 0x8865}, + {"GL_CURRENT_QUERY", 0x8865}, + {"GL_CURRENT_QUERY_ARB", 0x8865}, + {"GL_CURRENT_QUERY_EXT", 0x8865}, + {"GL_PIXEL_COUNT_NV", 0x8866}, + {"GL_QUERY_RESULT", 0x8866}, + {"GL_QUERY_RESULT_ARB", 0x8866}, + {"GL_QUERY_RESULT_EXT", 0x8866}, + {"GL_PIXEL_COUNT_AVAILABLE_NV", 0x8867}, + {"GL_QUERY_RESULT_AVAILABLE", 0x8867}, + {"GL_QUERY_RESULT_AVAILABLE_ARB", 0x8867}, + {"GL_QUERY_RESULT_AVAILABLE_EXT", 0x8867}, + {"GL_MAX_FRAGMENT_PROGRAM_LOCAL_PARAMETERS_NV", 0x8868}, + {"GL_MAX_VERTEX_ATTRIBS", 0x8869}, + {"GL_MAX_VERTEX_ATTRIBS_ARB", 0x8869}, + {"GL_VERTEX_ATTRIB_ARRAY_NORMALIZED", 0x886A}, + {"GL_VERTEX_ATTRIB_ARRAY_NORMALIZED_ARB", 0x886A}, + {"GL_MAX_TESS_CONTROL_INPUT_COMPONENTS", 0x886C}, + {"GL_MAX_TESS_EVALUATION_INPUT_COMPONENTS", 0x886D}, + {"GL_DEPTH_STENCIL_TO_RGBA_NV", 0x886E}, + {"GL_DEPTH_STENCIL_TO_BGRA_NV", 0x886F}, + {"GL_FRAGMENT_PROGRAM_NV", 0x8870}, + {"GL_MAX_TEXTURE_COORDS", 0x8871}, + {"GL_MAX_TEXTURE_COORDS_ARB", 0x8871}, + {"GL_MAX_TEXTURE_COORDS_NV", 0x8871}, + {"GL_MAX_TEXTURE_IMAGE_UNITS", 0x8872}, + {"GL_MAX_TEXTURE_IMAGE_UNITS_ARB", 0x8872}, + {"GL_MAX_TEXTURE_IMAGE_UNITS_NV", 0x8872}, + {"GL_FRAGMENT_PROGRAM_BINDING_NV", 0x8873}, + {"GL_PROGRAM_ERROR_STRING_ARB", 0x8874}, + {"GL_PROGRAM_ERROR_STRING_NV", 0x8874}, + {"GL_PROGRAM_FORMAT_ASCII_ARB", 0x8875}, + {"GL_PROGRAM_FORMAT_ARB", 0x8876}, + {"GL_WRITE_PIXEL_DATA_RANGE_NV", 0x8878}, + {"GL_READ_PIXEL_DATA_RANGE_NV", 0x8879}, + {"GL_WRITE_PIXEL_DATA_RANGE_LENGTH_NV", 0x887A}, + {"GL_READ_PIXEL_DATA_RANGE_LENGTH_NV", 0x887B}, + {"GL_WRITE_PIXEL_DATA_RANGE_POINTER_NV", 0x887C}, + {"GL_READ_PIXEL_DATA_RANGE_POINTER_NV", 0x887D}, + {"GL_GEOMETRY_SHADER_INVOCATIONS", 0x887F}, + {"GL_FLOAT_R_NV", 0x8880}, + {"GL_FLOAT_RG_NV", 0x8881}, + {"GL_FLOAT_RGB_NV", 0x8882}, + {"GL_FLOAT_RGBA_NV", 0x8883}, + {"GL_FLOAT_R16_NV", 0x8884}, + {"GL_FLOAT_R32_NV", 0x8885}, + {"GL_FLOAT_RG16_NV", 0x8886}, + {"GL_FLOAT_RG32_NV", 0x8887}, + {"GL_FLOAT_RGB16_NV", 0x8888}, + {"GL_FLOAT_RGB32_NV", 0x8889}, + {"GL_FLOAT_RGBA16_NV", 0x888A}, + {"GL_FLOAT_RGBA32_NV", 0x888B}, + {"GL_TEXTURE_FLOAT_COMPONENTS_NV", 0x888C}, + {"GL_FLOAT_CLEAR_COLOR_VALUE_NV", 0x888D}, + {"GL_FLOAT_RGBA_MODE_NV", 0x888E}, + {"GL_TEXTURE_UNSIGNED_REMAP_MODE_NV", 0x888F}, + {"GL_DEPTH_BOUNDS_TEST_EXT", 0x8890}, + {"GL_DEPTH_BOUNDS_EXT", 0x8891}, + {"GL_ARRAY_BUFFER", 0x8892}, + {"GL_ARRAY_BUFFER_ARB", 0x8892}, + {"GL_ELEMENT_ARRAY_BUFFER", 0x8893}, + {"GL_ELEMENT_ARRAY_BUFFER_ARB", 0x8893}, + {"GL_ARRAY_BUFFER_BINDING", 0x8894}, + {"GL_ARRAY_BUFFER_BINDING_ARB", 0x8894}, + {"GL_ELEMENT_ARRAY_BUFFER_BINDING", 0x8895}, + {"GL_ELEMENT_ARRAY_BUFFER_BINDING_ARB", 0x8895}, + {"GL_VERTEX_ARRAY_BUFFER_BINDING", 0x8896}, + {"GL_VERTEX_ARRAY_BUFFER_BINDING_ARB", 0x8896}, + {"GL_NORMAL_ARRAY_BUFFER_BINDING", 0x8897}, + {"GL_NORMAL_ARRAY_BUFFER_BINDING_ARB", 0x8897}, + {"GL_COLOR_ARRAY_BUFFER_BINDING", 0x8898}, + {"GL_COLOR_ARRAY_BUFFER_BINDING_ARB", 0x8898}, + {"GL_INDEX_ARRAY_BUFFER_BINDING", 0x8899}, + {"GL_INDEX_ARRAY_BUFFER_BINDING_ARB", 0x8899}, + {"GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING", 0x889A}, + {"GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING_ARB", 0x889A}, + {"GL_EDGE_FLAG_ARRAY_BUFFER_BINDING", 0x889B}, + {"GL_EDGE_FLAG_ARRAY_BUFFER_BINDING_ARB", 0x889B}, + {"GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING", 0x889C}, + {"GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING_ARB", 0x889C}, + {"GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING_ARB", 0x889D}, + {"GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING", 0x889D}, + {"GL_FOG_COORD_ARRAY_BUFFER_BINDING", 0x889D}, + {"GL_WEIGHT_ARRAY_BUFFER_BINDING", 0x889E}, + {"GL_WEIGHT_ARRAY_BUFFER_BINDING_ARB", 0x889E}, + {"GL_WEIGHT_ARRAY_BUFFER_BINDING_OES", 0x889E}, + {"GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING", 0x889F}, + {"GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING_ARB", 0x889F}, + {"GL_PROGRAM_INSTRUCTIONS_ARB", 0x88A0}, + {"GL_MAX_PROGRAM_INSTRUCTIONS_ARB", 0x88A1}, + {"GL_PROGRAM_NATIVE_INSTRUCTIONS_ARB", 0x88A2}, + {"GL_MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB", 0x88A3}, + {"GL_PROGRAM_TEMPORARIES_ARB", 0x88A4}, + {"GL_MAX_PROGRAM_TEMPORARIES_ARB", 0x88A5}, + {"GL_PROGRAM_NATIVE_TEMPORARIES_ARB", 0x88A6}, + {"GL_MAX_PROGRAM_NATIVE_TEMPORARIES_ARB", 0x88A7}, + {"GL_PROGRAM_PARAMETERS_ARB", 0x88A8}, + {"GL_MAX_PROGRAM_PARAMETERS_ARB", 0x88A9}, + {"GL_PROGRAM_NATIVE_PARAMETERS_ARB", 0x88AA}, + {"GL_MAX_PROGRAM_NATIVE_PARAMETERS_ARB", 0x88AB}, + {"GL_PROGRAM_ATTRIBS_ARB", 0x88AC}, + {"GL_MAX_PROGRAM_ATTRIBS_ARB", 0x88AD}, + {"GL_PROGRAM_NATIVE_ATTRIBS_ARB", 0x88AE}, + {"GL_MAX_PROGRAM_NATIVE_ATTRIBS_ARB", 0x88AF}, + {"GL_PROGRAM_ADDRESS_REGISTERS_ARB", 0x88B0}, + {"GL_MAX_PROGRAM_ADDRESS_REGISTERS_ARB", 0x88B1}, + {"GL_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB", 0x88B2}, + {"GL_MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB", 0x88B3}, + {"GL_MAX_PROGRAM_LOCAL_PARAMETERS_ARB", 0x88B4}, + {"GL_MAX_PROGRAM_ENV_PARAMETERS_ARB", 0x88B5}, + {"GL_PROGRAM_UNDER_NATIVE_LIMITS_ARB", 0x88B6}, + {"GL_TRANSPOSE_CURRENT_MATRIX_ARB", 0x88B7}, + {"GL_READ_ONLY", 0x88B8}, + {"GL_READ_ONLY_ARB", 0x88B8}, + {"GL_WRITE_ONLY", 0x88B9}, + {"GL_WRITE_ONLY_ARB", 0x88B9}, + {"GL_WRITE_ONLY_OES", 0x88B9}, + {"GL_READ_WRITE", 0x88BA}, + {"GL_READ_WRITE_ARB", 0x88BA}, + {"GL_BUFFER_ACCESS", 0x88BB}, + {"GL_BUFFER_ACCESS_ARB", 0x88BB}, + {"GL_BUFFER_ACCESS_OES", 0x88BB}, + {"GL_BUFFER_MAPPED", 0x88BC}, + {"GL_BUFFER_MAPPED_ARB", 0x88BC}, + {"GL_BUFFER_MAPPED_OES", 0x88BC}, + {"GL_BUFFER_MAP_POINTER", 0x88BD}, + {"GL_BUFFER_MAP_POINTER_ARB", 0x88BD}, + {"GL_BUFFER_MAP_POINTER_OES", 0x88BD}, + {"GL_WRITE_DISCARD_NV", 0x88BE}, + {"GL_TIME_ELAPSED", 0x88BF}, + {"GL_TIME_ELAPSED_EXT", 0x88BF}, + {"GL_MATRIX0_ARB", 0x88C0}, + {"GL_MATRIX1_ARB", 0x88C1}, + {"GL_MATRIX2_ARB", 0x88C2}, + {"GL_MATRIX3_ARB", 0x88C3}, + {"GL_MATRIX4_ARB", 0x88C4}, + {"GL_MATRIX5_ARB", 0x88C5}, + {"GL_MATRIX6_ARB", 0x88C6}, + {"GL_MATRIX7_ARB", 0x88C7}, + {"GL_MATRIX8_ARB", 0x88C8}, + {"GL_MATRIX9_ARB", 0x88C9}, + {"GL_MATRIX10_ARB", 0x88CA}, + {"GL_MATRIX11_ARB", 0x88CB}, + {"GL_MATRIX12_ARB", 0x88CC}, + {"GL_MATRIX13_ARB", 0x88CD}, + {"GL_MATRIX14_ARB", 0x88CE}, + {"GL_MATRIX15_ARB", 0x88CF}, + {"GL_MATRIX16_ARB", 0x88D0}, + {"GL_MATRIX17_ARB", 0x88D1}, + {"GL_MATRIX18_ARB", 0x88D2}, + {"GL_MATRIX19_ARB", 0x88D3}, + {"GL_MATRIX20_ARB", 0x88D4}, + {"GL_MATRIX21_ARB", 0x88D5}, + {"GL_MATRIX22_ARB", 0x88D6}, + {"GL_MATRIX23_ARB", 0x88D7}, + {"GL_MATRIX24_ARB", 0x88D8}, + {"GL_MATRIX25_ARB", 0x88D9}, + {"GL_MATRIX26_ARB", 0x88DA}, + {"GL_MATRIX27_ARB", 0x88DB}, + {"GL_MATRIX28_ARB", 0x88DC}, + {"GL_MATRIX29_ARB", 0x88DD}, + {"GL_MATRIX30_ARB", 0x88DE}, + {"GL_MATRIX31_ARB", 0x88DF}, + {"GL_STREAM_DRAW", 0x88E0}, + {"GL_STREAM_DRAW_ARB", 0x88E0}, + {"GL_STREAM_READ", 0x88E1}, + {"GL_STREAM_READ_ARB", 0x88E1}, + {"GL_STREAM_COPY", 0x88E2}, + {"GL_STREAM_COPY_ARB", 0x88E2}, + {"GL_STATIC_DRAW", 0x88E4}, + {"GL_STATIC_DRAW_ARB", 0x88E4}, + {"GL_STATIC_READ", 0x88E5}, + {"GL_STATIC_READ_ARB", 0x88E5}, + {"GL_STATIC_COPY", 0x88E6}, + {"GL_STATIC_COPY_ARB", 0x88E6}, + {"GL_DYNAMIC_DRAW", 0x88E8}, + {"GL_DYNAMIC_DRAW_ARB", 0x88E8}, + {"GL_DYNAMIC_READ", 0x88E9}, + {"GL_DYNAMIC_READ_ARB", 0x88E9}, + {"GL_DYNAMIC_COPY", 0x88EA}, + {"GL_DYNAMIC_COPY_ARB", 0x88EA}, + {"GL_PIXEL_PACK_BUFFER", 0x88EB}, + {"GL_PIXEL_PACK_BUFFER_ARB", 0x88EB}, + {"GL_PIXEL_PACK_BUFFER_EXT", 0x88EB}, + {"GL_PIXEL_UNPACK_BUFFER", 0x88EC}, + {"GL_PIXEL_UNPACK_BUFFER_ARB", 0x88EC}, + {"GL_PIXEL_UNPACK_BUFFER_EXT", 0x88EC}, + {"GL_PIXEL_PACK_BUFFER_BINDING", 0x88ED}, + {"GL_PIXEL_PACK_BUFFER_BINDING_ARB", 0x88ED}, + {"GL_PIXEL_PACK_BUFFER_BINDING_EXT", 0x88ED}, + {"GL_ETC1_SRGB8_NV", 0x88EE}, + {"GL_PIXEL_UNPACK_BUFFER_BINDING", 0x88EF}, + {"GL_PIXEL_UNPACK_BUFFER_BINDING_ARB", 0x88EF}, + {"GL_PIXEL_UNPACK_BUFFER_BINDING_EXT", 0x88EF}, + {"GL_DEPTH24_STENCIL8", 0x88F0}, + {"GL_DEPTH24_STENCIL8_EXT", 0x88F0}, + {"GL_DEPTH24_STENCIL8_OES", 0x88F0}, + {"GL_TEXTURE_STENCIL_SIZE", 0x88F1}, + {"GL_TEXTURE_STENCIL_SIZE_EXT", 0x88F1}, + {"GL_STENCIL_TAG_BITS_EXT", 0x88F2}, + {"GL_STENCIL_CLEAR_TAG_VALUE_EXT", 0x88F3}, + {"GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV", 0x88F4}, + {"GL_MAX_PROGRAM_CALL_DEPTH_NV", 0x88F5}, + {"GL_MAX_PROGRAM_IF_DEPTH_NV", 0x88F6}, + {"GL_MAX_PROGRAM_LOOP_DEPTH_NV", 0x88F7}, + {"GL_MAX_PROGRAM_LOOP_COUNT_NV", 0x88F8}, + {"GL_SRC1_COLOR", 0x88F9}, + {"GL_ONE_MINUS_SRC1_COLOR", 0x88FA}, + {"GL_ONE_MINUS_SRC1_ALPHA", 0x88FB}, + {"GL_MAX_DUAL_SOURCE_DRAW_BUFFERS", 0x88FC}, + {"GL_VERTEX_ATTRIB_ARRAY_INTEGER", 0x88FD}, + {"GL_VERTEX_ATTRIB_ARRAY_INTEGER_EXT", 0x88FD}, + {"GL_VERTEX_ATTRIB_ARRAY_INTEGER_NV", 0x88FD}, + {"GL_VERTEX_ATTRIB_ARRAY_DIVISOR", 0x88FE}, + {"GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ANGLE", 0x88FE}, + {"GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ARB", 0x88FE}, + {"GL_VERTEX_ATTRIB_ARRAY_DIVISOR_NV", 0x88FE}, + {"GL_MAX_ARRAY_TEXTURE_LAYERS", 0x88FF}, + {"GL_MAX_ARRAY_TEXTURE_LAYERS_EXT", 0x88FF}, + {"GL_MIN_PROGRAM_TEXEL_OFFSET", 0x8904}, + {"GL_MIN_PROGRAM_TEXEL_OFFSET_EXT", 0x8904}, + {"GL_MIN_PROGRAM_TEXEL_OFFSET_NV", 0x8904}, + {"GL_MAX_PROGRAM_TEXEL_OFFSET", 0x8905}, + {"GL_MAX_PROGRAM_TEXEL_OFFSET_EXT", 0x8905}, + {"GL_MAX_PROGRAM_TEXEL_OFFSET_NV", 0x8905}, + {"GL_PROGRAM_ATTRIB_COMPONENTS_NV", 0x8906}, + {"GL_PROGRAM_RESULT_COMPONENTS_NV", 0x8907}, + {"GL_MAX_PROGRAM_ATTRIB_COMPONENTS_NV", 0x8908}, + {"GL_MAX_PROGRAM_RESULT_COMPONENTS_NV", 0x8909}, + {"GL_STENCIL_TEST_TWO_SIDE_EXT", 0x8910}, + {"GL_ACTIVE_STENCIL_FACE_EXT", 0x8911}, + {"GL_MIRROR_CLAMP_TO_BORDER_EXT", 0x8912}, + {"GL_SAMPLES_PASSED", 0x8914}, + {"GL_SAMPLES_PASSED_ARB", 0x8914}, + {"GL_GEOMETRY_VERTICES_OUT", 0x8916}, + {"GL_GEOMETRY_INPUT_TYPE", 0x8917}, + {"GL_GEOMETRY_OUTPUT_TYPE", 0x8918}, + {"GL_SAMPLER_BINDING", 0x8919}, + {"GL_CLAMP_VERTEX_COLOR", 0x891A}, + {"GL_CLAMP_VERTEX_COLOR_ARB", 0x891A}, + {"GL_CLAMP_FRAGMENT_COLOR", 0x891B}, + {"GL_CLAMP_FRAGMENT_COLOR_ARB", 0x891B}, + {"GL_CLAMP_READ_COLOR", 0x891C}, + {"GL_CLAMP_READ_COLOR_ARB", 0x891C}, + {"GL_FIXED_ONLY", 0x891D}, + {"GL_FIXED_ONLY_ARB", 0x891D}, + {"GL_TESS_CONTROL_PROGRAM_NV", 0x891E}, + {"GL_TESS_EVALUATION_PROGRAM_NV", 0x891F}, + {"GL_FRAGMENT_SHADER_ATI", 0x8920}, + {"GL_REG_0_ATI", 0x8921}, + {"GL_REG_1_ATI", 0x8922}, + {"GL_REG_2_ATI", 0x8923}, + {"GL_REG_3_ATI", 0x8924}, + {"GL_REG_4_ATI", 0x8925}, + {"GL_REG_5_ATI", 0x8926}, + {"GL_REG_6_ATI", 0x8927}, + {"GL_REG_7_ATI", 0x8928}, + {"GL_REG_8_ATI", 0x8929}, + {"GL_REG_9_ATI", 0x892A}, + {"GL_REG_10_ATI", 0x892B}, + {"GL_REG_11_ATI", 0x892C}, + {"GL_REG_12_ATI", 0x892D}, + {"GL_REG_13_ATI", 0x892E}, + {"GL_REG_14_ATI", 0x892F}, + {"GL_REG_15_ATI", 0x8930}, + {"GL_REG_16_ATI", 0x8931}, + {"GL_REG_17_ATI", 0x8932}, + {"GL_REG_18_ATI", 0x8933}, + {"GL_REG_19_ATI", 0x8934}, + {"GL_REG_20_ATI", 0x8935}, + {"GL_REG_21_ATI", 0x8936}, + {"GL_REG_22_ATI", 0x8937}, + {"GL_REG_23_ATI", 0x8938}, + {"GL_REG_24_ATI", 0x8939}, + {"GL_REG_25_ATI", 0x893A}, + {"GL_REG_26_ATI", 0x893B}, + {"GL_REG_27_ATI", 0x893C}, + {"GL_REG_28_ATI", 0x893D}, + {"GL_REG_29_ATI", 0x893E}, + {"GL_REG_30_ATI", 0x893F}, + {"GL_REG_31_ATI", 0x8940}, + {"GL_CON_0_ATI", 0x8941}, + {"GL_CON_1_ATI", 0x8942}, + {"GL_CON_2_ATI", 0x8943}, + {"GL_CON_3_ATI", 0x8944}, + {"GL_CON_4_ATI", 0x8945}, + {"GL_CON_5_ATI", 0x8946}, + {"GL_CON_6_ATI", 0x8947}, + {"GL_CON_7_ATI", 0x8948}, + {"GL_CON_8_ATI", 0x8949}, + {"GL_CON_9_ATI", 0x894A}, + {"GL_CON_10_ATI", 0x894B}, + {"GL_CON_11_ATI", 0x894C}, + {"GL_CON_12_ATI", 0x894D}, + {"GL_CON_13_ATI", 0x894E}, + {"GL_CON_14_ATI", 0x894F}, + {"GL_CON_15_ATI", 0x8950}, + {"GL_CON_16_ATI", 0x8951}, + {"GL_CON_17_ATI", 0x8952}, + {"GL_CON_18_ATI", 0x8953}, + {"GL_CON_19_ATI", 0x8954}, + {"GL_CON_20_ATI", 0x8955}, + {"GL_CON_21_ATI", 0x8956}, + {"GL_CON_22_ATI", 0x8957}, + {"GL_CON_23_ATI", 0x8958}, + {"GL_CON_24_ATI", 0x8959}, + {"GL_CON_25_ATI", 0x895A}, + {"GL_CON_26_ATI", 0x895B}, + {"GL_CON_27_ATI", 0x895C}, + {"GL_CON_28_ATI", 0x895D}, + {"GL_CON_29_ATI", 0x895E}, + {"GL_CON_30_ATI", 0x895F}, + {"GL_CON_31_ATI", 0x8960}, + {"GL_MOV_ATI", 0x8961}, + {"GL_ADD_ATI", 0x8963}, + {"GL_MUL_ATI", 0x8964}, + {"GL_SUB_ATI", 0x8965}, + {"GL_DOT3_ATI", 0x8966}, + {"GL_DOT4_ATI", 0x8967}, + {"GL_MAD_ATI", 0x8968}, + {"GL_LERP_ATI", 0x8969}, + {"GL_CND_ATI", 0x896A}, + {"GL_CND0_ATI", 0x896B}, + {"GL_DOT2_ADD_ATI", 0x896C}, + {"GL_SECONDARY_INTERPOLATOR_ATI", 0x896D}, + {"GL_NUM_FRAGMENT_REGISTERS_ATI", 0x896E}, + {"GL_NUM_FRAGMENT_CONSTANTS_ATI", 0x896F}, + {"GL_NUM_PASSES_ATI", 0x8970}, + {"GL_NUM_INSTRUCTIONS_PER_PASS_ATI", 0x8971}, + {"GL_NUM_INSTRUCTIONS_TOTAL_ATI", 0x8972}, + {"GL_NUM_INPUT_INTERPOLATOR_COMPONENTS_ATI", 0x8973}, + {"GL_NUM_LOOPBACK_COMPONENTS_ATI", 0x8974}, + {"GL_COLOR_ALPHA_PAIRING_ATI", 0x8975}, + {"GL_SWIZZLE_STR_ATI", 0x8976}, + {"GL_SWIZZLE_STQ_ATI", 0x8977}, + {"GL_SWIZZLE_STR_DR_ATI", 0x8978}, + {"GL_SWIZZLE_STQ_DQ_ATI", 0x8979}, + {"GL_SWIZZLE_STRQ_ATI", 0x897A}, + {"GL_SWIZZLE_STRQ_DQ_ATI", 0x897B}, + {"GL_INTERLACE_OML", 0x8980}, + {"GL_INTERLACE_READ_OML", 0x8981}, + {"GL_FORMAT_SUBSAMPLE_24_24_OML", 0x8982}, + {"GL_FORMAT_SUBSAMPLE_244_244_OML", 0x8983}, + {"GL_PACK_RESAMPLE_OML", 0x8984}, + {"GL_UNPACK_RESAMPLE_OML", 0x8985}, + {"GL_RESAMPLE_REPLICATE_OML", 0x8986}, + {"GL_RESAMPLE_ZERO_FILL_OML", 0x8987}, + {"GL_RESAMPLE_AVERAGE_OML", 0x8988}, + {"GL_RESAMPLE_DECIMATE_OML", 0x8989}, + {"GL_POINT_SIZE_ARRAY_TYPE_OES", 0x898A}, + {"GL_POINT_SIZE_ARRAY_STRIDE_OES", 0x898B}, + {"GL_POINT_SIZE_ARRAY_POINTER_OES", 0x898C}, + {"GL_MODELVIEW_MATRIX_FLOAT_AS_INT_BITS_OES", 0x898D}, + {"GL_PROJECTION_MATRIX_FLOAT_AS_INT_BITS_OES", 0x898E}, + {"GL_TEXTURE_MATRIX_FLOAT_AS_INT_BITS_OES", 0x898F}, + {"GL_VERTEX_ATTRIB_MAP1_APPLE", 0x8A00}, + {"GL_VERTEX_ATTRIB_MAP2_APPLE", 0x8A01}, + {"GL_VERTEX_ATTRIB_MAP1_SIZE_APPLE", 0x8A02}, + {"GL_VERTEX_ATTRIB_MAP1_COEFF_APPLE", 0x8A03}, + {"GL_VERTEX_ATTRIB_MAP1_ORDER_APPLE", 0x8A04}, + {"GL_VERTEX_ATTRIB_MAP1_DOMAIN_APPLE", 0x8A05}, + {"GL_VERTEX_ATTRIB_MAP2_SIZE_APPLE", 0x8A06}, + {"GL_VERTEX_ATTRIB_MAP2_COEFF_APPLE", 0x8A07}, + {"GL_VERTEX_ATTRIB_MAP2_ORDER_APPLE", 0x8A08}, + {"GL_VERTEX_ATTRIB_MAP2_DOMAIN_APPLE", 0x8A09}, + {"GL_DRAW_PIXELS_APPLE", 0x8A0A}, + {"GL_FENCE_APPLE", 0x8A0B}, + {"GL_ELEMENT_ARRAY_APPLE", 0x8A0C}, + {"GL_ELEMENT_ARRAY_TYPE_APPLE", 0x8A0D}, + {"GL_ELEMENT_ARRAY_POINTER_APPLE", 0x8A0E}, + {"GL_COLOR_FLOAT_APPLE", 0x8A0F}, + {"GL_UNIFORM_BUFFER", 0x8A11}, + {"GL_BUFFER_SERIALIZED_MODIFY_APPLE", 0x8A12}, + {"GL_BUFFER_FLUSHING_UNMAP_APPLE", 0x8A13}, + {"GL_AUX_DEPTH_STENCIL_APPLE", 0x8A14}, + {"GL_PACK_ROW_BYTES_APPLE", 0x8A15}, + {"GL_UNPACK_ROW_BYTES_APPLE", 0x8A16}, + {"GL_RELEASED_APPLE", 0x8A19}, + {"GL_VOLATILE_APPLE", 0x8A1A}, + {"GL_RETAINED_APPLE", 0x8A1B}, + {"GL_UNDEFINED_APPLE", 0x8A1C}, + {"GL_PURGEABLE_APPLE", 0x8A1D}, + {"GL_RGB_422_APPLE", 0x8A1F}, + {"GL_UNIFORM_BUFFER_BINDING", 0x8A28}, + {"GL_UNIFORM_BUFFER_START", 0x8A29}, + {"GL_UNIFORM_BUFFER_SIZE", 0x8A2A}, + {"GL_MAX_VERTEX_UNIFORM_BLOCKS", 0x8A2B}, + {"GL_MAX_GEOMETRY_UNIFORM_BLOCKS", 0x8A2C}, + {"GL_MAX_FRAGMENT_UNIFORM_BLOCKS", 0x8A2D}, + {"GL_MAX_COMBINED_UNIFORM_BLOCKS", 0x8A2E}, + {"GL_MAX_UNIFORM_BUFFER_BINDINGS", 0x8A2F}, + {"GL_MAX_UNIFORM_BLOCK_SIZE", 0x8A30}, + {"GL_MAX_COMBINED_VERTEX_UNIFORM_COMPONENTS", 0x8A31}, + {"GL_MAX_COMBINED_GEOMETRY_UNIFORM_COMPONENTS", 0x8A32}, + {"GL_MAX_COMBINED_FRAGMENT_UNIFORM_COMPONENTS", 0x8A33}, + {"GL_UNIFORM_BUFFER_OFFSET_ALIGNMENT", 0x8A34}, + {"GL_ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH", 0x8A35}, + {"GL_ACTIVE_UNIFORM_BLOCKS", 0x8A36}, + {"GL_UNIFORM_TYPE", 0x8A37}, + {"GL_UNIFORM_SIZE", 0x8A38}, + {"GL_UNIFORM_NAME_LENGTH", 0x8A39}, + {"GL_UNIFORM_BLOCK_INDEX", 0x8A3A}, + {"GL_UNIFORM_OFFSET", 0x8A3B}, + {"GL_UNIFORM_ARRAY_STRIDE", 0x8A3C}, + {"GL_UNIFORM_MATRIX_STRIDE", 0x8A3D}, + {"GL_UNIFORM_IS_ROW_MAJOR", 0x8A3E}, + {"GL_UNIFORM_BLOCK_BINDING", 0x8A3F}, + {"GL_UNIFORM_BLOCK_DATA_SIZE", 0x8A40}, + {"GL_UNIFORM_BLOCK_NAME_LENGTH", 0x8A41}, + {"GL_UNIFORM_BLOCK_ACTIVE_UNIFORMS", 0x8A42}, + {"GL_UNIFORM_BLOCK_ACTIVE_UNIFORM_INDICES", 0x8A43}, + {"GL_UNIFORM_BLOCK_REFERENCED_BY_VERTEX_SHADER", 0x8A44}, + {"GL_UNIFORM_BLOCK_REFERENCED_BY_GEOMETRY_SHADER", 0x8A45}, + {"GL_UNIFORM_BLOCK_REFERENCED_BY_FRAGMENT_SHADER", 0x8A46}, + {"GL_TEXTURE_SRGB_DECODE_EXT", 0x8A48}, + {"GL_DECODE_EXT", 0x8A49}, + {"GL_SKIP_DECODE_EXT", 0x8A4A}, + {"GL_PROGRAM_PIPELINE_OBJECT_EXT", 0x8A4F}, + {"GL_FRAGMENT_SHADER_DISCARDS_SAMPLES_EXT", 0x8A52}, + {"GL_SYNC_OBJECT_APPLE", 0x8A53}, + {"GL_FRAGMENT_SHADER", 0x8B30}, + {"GL_FRAGMENT_SHADER_ARB", 0x8B30}, + {"GL_VERTEX_SHADER", 0x8B31}, + {"GL_VERTEX_SHADER_ARB", 0x8B31}, + {"GL_PROGRAM_OBJECT_ARB", 0x8B40}, + {"GL_PROGRAM_OBJECT_EXT", 0x8B40}, + {"GL_SHADER_OBJECT_ARB", 0x8B48}, + {"GL_SHADER_OBJECT_EXT", 0x8B48}, + {"GL_MAX_FRAGMENT_UNIFORM_COMPONENTS", 0x8B49}, + {"GL_MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB", 0x8B49}, + {"GL_MAX_VERTEX_UNIFORM_COMPONENTS", 0x8B4A}, + {"GL_MAX_VERTEX_UNIFORM_COMPONENTS_ARB", 0x8B4A}, + {"GL_MAX_VARYING_FLOATS", 0x8B4B}, + {"GL_MAX_VARYING_COMPONENTS", 0x8B4B}, + {"GL_MAX_VARYING_COMPONENTS_EXT", 0x8B4B}, + {"GL_MAX_VARYING_FLOATS_ARB", 0x8B4B}, + {"GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS", 0x8B4C}, + {"GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB", 0x8B4C}, + {"GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS", 0x8B4D}, + {"GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS_ARB", 0x8B4D}, + {"GL_OBJECT_TYPE_ARB", 0x8B4E}, + {"GL_SHADER_TYPE", 0x8B4F}, + {"GL_OBJECT_SUBTYPE_ARB", 0x8B4F}, + {"GL_FLOAT_VEC2", 0x8B50}, + {"GL_FLOAT_VEC2_ARB", 0x8B50}, + {"GL_FLOAT_VEC3", 0x8B51}, + {"GL_FLOAT_VEC3_ARB", 0x8B51}, + {"GL_FLOAT_VEC4", 0x8B52}, + {"GL_FLOAT_VEC4_ARB", 0x8B52}, + {"GL_INT_VEC2", 0x8B53}, + {"GL_INT_VEC2_ARB", 0x8B53}, + {"GL_INT_VEC3", 0x8B54}, + {"GL_INT_VEC3_ARB", 0x8B54}, + {"GL_INT_VEC4", 0x8B55}, + {"GL_INT_VEC4_ARB", 0x8B55}, + {"GL_BOOL", 0x8B56}, + {"GL_BOOL_ARB", 0x8B56}, + {"GL_BOOL_VEC2", 0x8B57}, + {"GL_BOOL_VEC2_ARB", 0x8B57}, + {"GL_BOOL_VEC3", 0x8B58}, + {"GL_BOOL_VEC3_ARB", 0x8B58}, + {"GL_BOOL_VEC4", 0x8B59}, + {"GL_BOOL_VEC4_ARB", 0x8B59}, + {"GL_FLOAT_MAT2", 0x8B5A}, + {"GL_FLOAT_MAT2_ARB", 0x8B5A}, + {"GL_FLOAT_MAT3", 0x8B5B}, + {"GL_FLOAT_MAT3_ARB", 0x8B5B}, + {"GL_FLOAT_MAT4", 0x8B5C}, + {"GL_FLOAT_MAT4_ARB", 0x8B5C}, + {"GL_SAMPLER_1D", 0x8B5D}, + {"GL_SAMPLER_1D_ARB", 0x8B5D}, + {"GL_SAMPLER_2D", 0x8B5E}, + {"GL_SAMPLER_2D_ARB", 0x8B5E}, + {"GL_SAMPLER_3D", 0x8B5F}, + {"GL_SAMPLER_3D_ARB", 0x8B5F}, + {"GL_SAMPLER_3D_OES", 0x8B5F}, + {"GL_SAMPLER_CUBE", 0x8B60}, + {"GL_SAMPLER_CUBE_ARB", 0x8B60}, + {"GL_SAMPLER_1D_SHADOW", 0x8B61}, + {"GL_SAMPLER_1D_SHADOW_ARB", 0x8B61}, + {"GL_SAMPLER_2D_SHADOW", 0x8B62}, + {"GL_SAMPLER_2D_SHADOW_ARB", 0x8B62}, + {"GL_SAMPLER_2D_SHADOW_EXT", 0x8B62}, + {"GL_SAMPLER_2D_RECT", 0x8B63}, + {"GL_SAMPLER_2D_RECT_ARB", 0x8B63}, + {"GL_SAMPLER_2D_RECT_SHADOW", 0x8B64}, + {"GL_SAMPLER_2D_RECT_SHADOW_ARB", 0x8B64}, + {"GL_FLOAT_MAT2x3", 0x8B65}, + {"GL_FLOAT_MAT2x4", 0x8B66}, + {"GL_FLOAT_MAT3x2", 0x8B67}, + {"GL_FLOAT_MAT3x4", 0x8B68}, + {"GL_FLOAT_MAT4x2", 0x8B69}, + {"GL_FLOAT_MAT4x3", 0x8B6A}, + {"GL_DELETE_STATUS", 0x8B80}, + {"GL_OBJECT_DELETE_STATUS_ARB", 0x8B80}, + {"GL_COMPILE_STATUS", 0x8B81}, + {"GL_OBJECT_COMPILE_STATUS_ARB", 0x8B81}, + {"GL_LINK_STATUS", 0x8B82}, + {"GL_OBJECT_LINK_STATUS_ARB", 0x8B82}, + {"GL_VALIDATE_STATUS", 0x8B83}, + {"GL_OBJECT_VALIDATE_STATUS_ARB", 0x8B83}, + {"GL_INFO_LOG_LENGTH", 0x8B84}, + {"GL_OBJECT_INFO_LOG_LENGTH_ARB", 0x8B84}, + {"GL_ATTACHED_SHADERS", 0x8B85}, + {"GL_OBJECT_ATTACHED_OBJECTS_ARB", 0x8B85}, + {"GL_ACTIVE_UNIFORMS", 0x8B86}, + {"GL_OBJECT_ACTIVE_UNIFORMS_ARB", 0x8B86}, + {"GL_ACTIVE_UNIFORM_MAX_LENGTH", 0x8B87}, + {"GL_OBJECT_ACTIVE_UNIFORM_MAX_LENGTH_ARB", 0x8B87}, + {"GL_SHADER_SOURCE_LENGTH", 0x8B88}, + {"GL_OBJECT_SHADER_SOURCE_LENGTH_ARB", 0x8B88}, + {"GL_ACTIVE_ATTRIBUTES", 0x8B89}, + {"GL_OBJECT_ACTIVE_ATTRIBUTES_ARB", 0x8B89}, + {"GL_ACTIVE_ATTRIBUTE_MAX_LENGTH", 0x8B8A}, + {"GL_OBJECT_ACTIVE_ATTRIBUTE_MAX_LENGTH_ARB", 0x8B8A}, + {"GL_FRAGMENT_SHADER_DERIVATIVE_HINT", 0x8B8B}, + {"GL_FRAGMENT_SHADER_DERIVATIVE_HINT_ARB", 0x8B8B}, + {"GL_FRAGMENT_SHADER_DERIVATIVE_HINT_OES", 0x8B8B}, + {"GL_SHADING_LANGUAGE_VERSION", 0x8B8C}, + {"GL_SHADING_LANGUAGE_VERSION_ARB", 0x8B8C}, + {"GL_CURRENT_PROGRAM", 0x8B8D}, + {"GL_ACTIVE_PROGRAM_EXT", 0x8B8D}, + {"GL_PALETTE4_RGB8_OES", 0x8B90}, + {"GL_PALETTE4_RGBA8_OES", 0x8B91}, + {"GL_PALETTE4_R5_G6_B5_OES", 0x8B92}, + {"GL_PALETTE4_RGBA4_OES", 0x8B93}, + {"GL_PALETTE4_RGB5_A1_OES", 0x8B94}, + {"GL_PALETTE8_RGB8_OES", 0x8B95}, + {"GL_PALETTE8_RGBA8_OES", 0x8B96}, + {"GL_PALETTE8_R5_G6_B5_OES", 0x8B97}, + {"GL_PALETTE8_RGBA4_OES", 0x8B98}, + {"GL_PALETTE8_RGB5_A1_OES", 0x8B99}, + {"GL_IMPLEMENTATION_COLOR_READ_TYPE", 0x8B9A}, + {"GL_IMPLEMENTATION_COLOR_READ_TYPE_OES", 0x8B9A}, + {"GL_IMPLEMENTATION_COLOR_READ_FORMAT", 0x8B9B}, + {"GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES", 0x8B9B}, + {"GL_POINT_SIZE_ARRAY_OES", 0x8B9C}, + {"GL_TEXTURE_CROP_RECT_OES", 0x8B9D}, + {"GL_MATRIX_INDEX_ARRAY_BUFFER_BINDING_OES", 0x8B9E}, + {"GL_POINT_SIZE_ARRAY_BUFFER_BINDING_OES", 0x8B9F}, + {"GL_FRAGMENT_PROGRAM_POSITION_MESA", 0x8BB0}, + {"GL_FRAGMENT_PROGRAM_CALLBACK_MESA", 0x8BB1}, + {"GL_FRAGMENT_PROGRAM_CALLBACK_FUNC_MESA", 0x8BB2}, + {"GL_FRAGMENT_PROGRAM_CALLBACK_DATA_MESA", 0x8BB3}, + {"GL_VERTEX_PROGRAM_CALLBACK_MESA", 0x8BB4}, + {"GL_VERTEX_PROGRAM_POSITION_MESA", 0x8BB4}, + {"GL_VERTEX_PROGRAM_CALLBACK_FUNC_MESA", 0x8BB6}, + {"GL_VERTEX_PROGRAM_CALLBACK_DATA_MESA", 0x8BB7}, + {"GL_COUNTER_TYPE_AMD", 0x8BC0}, + {"GL_COUNTER_RANGE_AMD", 0x8BC1}, + {"GL_UNSIGNED_INT64_AMD", 0x8BC2}, + {"GL_PERCENTAGE_AMD", 0x8BC3}, + {"GL_PERFMON_RESULT_AVAILABLE_AMD", 0x8BC4}, + {"GL_PERFMON_RESULT_SIZE_AMD", 0x8BC5}, + {"GL_PERFMON_RESULT_AMD", 0x8BC6}, + {"GL_TEXTURE_WIDTH_QCOM", 0x8BD2}, + {"GL_TEXTURE_HEIGHT_QCOM", 0x8BD3}, + {"GL_TEXTURE_DEPTH_QCOM", 0x8BD4}, + {"GL_TEXTURE_INTERNAL_FORMAT_QCOM", 0x8BD5}, + {"GL_TEXTURE_FORMAT_QCOM", 0x8BD6}, + {"GL_TEXTURE_TYPE_QCOM", 0x8BD7}, + {"GL_TEXTURE_IMAGE_VALID_QCOM", 0x8BD8}, + {"GL_TEXTURE_NUM_LEVELS_QCOM", 0x8BD9}, + {"GL_TEXTURE_TARGET_QCOM", 0x8BDA}, + {"GL_TEXTURE_OBJECT_VALID_QCOM", 0x8BDB}, + {"GL_STATE_RESTORE", 0x8BDC}, + {"GL_COMPRESSED_RGB_PVRTC_4BPPV1_IMG", 0x8C00}, + {"GL_COMPRESSED_RGB_PVRTC_2BPPV1_IMG", 0x8C01}, + {"GL_COMPRESSED_RGBA_PVRTC_4BPPV1_IMG", 0x8C02}, + {"GL_COMPRESSED_RGBA_PVRTC_2BPPV1_IMG", 0x8C03}, + {"GL_MODULATE_COLOR_IMG", 0x8C04}, + {"GL_RECIP_ADD_SIGNED_ALPHA_IMG", 0x8C05}, + {"GL_TEXTURE_ALPHA_MODULATE_IMG", 0x8C06}, + {"GL_FACTOR_ALPHA_MODULATE_IMG", 0x8C07}, + {"GL_FRAGMENT_ALPHA_MODULATE_IMG", 0x8C08}, + {"GL_ADD_BLEND_IMG", 0x8C09}, + {"GL_SGX_BINARY_IMG", 0x8C0A}, + {"GL_TEXTURE_RED_TYPE", 0x8C10}, + {"GL_TEXTURE_RED_TYPE_ARB", 0x8C10}, + {"GL_TEXTURE_GREEN_TYPE", 0x8C11}, + {"GL_TEXTURE_GREEN_TYPE_ARB", 0x8C11}, + {"GL_TEXTURE_BLUE_TYPE", 0x8C12}, + {"GL_TEXTURE_BLUE_TYPE_ARB", 0x8C12}, + {"GL_TEXTURE_ALPHA_TYPE", 0x8C13}, + {"GL_TEXTURE_ALPHA_TYPE_ARB", 0x8C13}, + {"GL_TEXTURE_LUMINANCE_TYPE", 0x8C14}, + {"GL_TEXTURE_LUMINANCE_TYPE_ARB", 0x8C14}, + {"GL_TEXTURE_INTENSITY_TYPE", 0x8C15}, + {"GL_TEXTURE_INTENSITY_TYPE_ARB", 0x8C15}, + {"GL_TEXTURE_DEPTH_TYPE", 0x8C16}, + {"GL_TEXTURE_DEPTH_TYPE_ARB", 0x8C16}, + {"GL_UNSIGNED_NORMALIZED", 0x8C17}, + {"GL_UNSIGNED_NORMALIZED_ARB", 0x8C17}, + {"GL_UNSIGNED_NORMALIZED_EXT", 0x8C17}, + {"GL_TEXTURE_1D_ARRAY", 0x8C18}, + {"GL_TEXTURE_1D_ARRAY_EXT", 0x8C18}, + {"GL_PROXY_TEXTURE_1D_ARRAY", 0x8C19}, + {"GL_PROXY_TEXTURE_1D_ARRAY_EXT", 0x8C19}, + {"GL_TEXTURE_2D_ARRAY", 0x8C1A}, + {"GL_TEXTURE_2D_ARRAY_EXT", 0x8C1A}, + {"GL_PROXY_TEXTURE_2D_ARRAY", 0x8C1B}, + {"GL_PROXY_TEXTURE_2D_ARRAY_EXT", 0x8C1B}, + {"GL_TEXTURE_BINDING_1D_ARRAY", 0x8C1C}, + {"GL_TEXTURE_BINDING_1D_ARRAY_EXT", 0x8C1C}, + {"GL_TEXTURE_BINDING_2D_ARRAY", 0x8C1D}, + {"GL_TEXTURE_BINDING_2D_ARRAY_EXT", 0x8C1D}, + {"GL_GEOMETRY_PROGRAM_NV", 0x8C26}, + {"GL_MAX_PROGRAM_OUTPUT_VERTICES_NV", 0x8C27}, + {"GL_MAX_PROGRAM_TOTAL_OUTPUT_COMPONENTS_NV", 0x8C28}, + {"GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS", 0x8C29}, + {"GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_ARB", 0x8C29}, + {"GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_EXT", 0x8C29}, + {"GL_TEXTURE_BUFFER", 0x8C2A}, + {"GL_TEXTURE_BUFFER_ARB", 0x8C2A}, + {"GL_TEXTURE_BUFFER_EXT", 0x8C2A}, + {"GL_MAX_TEXTURE_BUFFER_SIZE", 0x8C2B}, + {"GL_MAX_TEXTURE_BUFFER_SIZE_ARB", 0x8C2B}, + {"GL_MAX_TEXTURE_BUFFER_SIZE_EXT", 0x8C2B}, + {"GL_TEXTURE_BINDING_BUFFER", 0x8C2C}, + {"GL_TEXTURE_BINDING_BUFFER_ARB", 0x8C2C}, + {"GL_TEXTURE_BINDING_BUFFER_EXT", 0x8C2C}, + {"GL_TEXTURE_BUFFER_DATA_STORE_BINDING", 0x8C2D}, + {"GL_TEXTURE_BUFFER_DATA_STORE_BINDING_ARB", 0x8C2D}, + {"GL_TEXTURE_BUFFER_DATA_STORE_BINDING_EXT", 0x8C2D}, + {"GL_TEXTURE_BUFFER_FORMAT_ARB", 0x8C2E}, + {"GL_TEXTURE_BUFFER_FORMAT_EXT", 0x8C2E}, + {"GL_ANY_SAMPLES_PASSED", 0x8C2F}, + {"GL_ANY_SAMPLES_PASSED_EXT", 0x8C2F}, + {"GL_SAMPLE_SHADING", 0x8C36}, + {"GL_SAMPLE_SHADING_ARB", 0x8C36}, + {"GL_MIN_SAMPLE_SHADING_VALUE", 0x8C37}, + {"GL_MIN_SAMPLE_SHADING_VALUE_ARB", 0x8C37}, + {"GL_R11F_G11F_B10F", 0x8C3A}, + {"GL_R11F_G11F_B10F_EXT", 0x8C3A}, + {"GL_UNSIGNED_INT_10F_11F_11F_REV", 0x8C3B}, + {"GL_UNSIGNED_INT_10F_11F_11F_REV_EXT", 0x8C3B}, + {"GL_RGBA_SIGNED_COMPONENTS_EXT", 0x8C3C}, + {"GL_RGB9_E5", 0x8C3D}, + {"GL_RGB9_E5_EXT", 0x8C3D}, + {"GL_UNSIGNED_INT_5_9_9_9_REV", 0x8C3E}, + {"GL_UNSIGNED_INT_5_9_9_9_REV_EXT", 0x8C3E}, + {"GL_TEXTURE_SHARED_SIZE", 0x8C3F}, + {"GL_TEXTURE_SHARED_SIZE_EXT", 0x8C3F}, + {"GL_SRGB", 0x8C40}, + {"GL_SRGB_EXT", 0x8C40}, + {"GL_SRGB8", 0x8C41}, + {"GL_SRGB8_EXT", 0x8C41}, + {"GL_SRGB8_NV", 0x8C41}, + {"GL_SRGB_ALPHA", 0x8C42}, + {"GL_SRGB_ALPHA_EXT", 0x8C42}, + {"GL_SRGB8_ALPHA8", 0x8C43}, + {"GL_SRGB8_ALPHA8_EXT", 0x8C43}, + {"GL_SLUMINANCE_ALPHA", 0x8C44}, + {"GL_SLUMINANCE_ALPHA_EXT", 0x8C44}, + {"GL_SLUMINANCE_ALPHA_NV", 0x8C44}, + {"GL_SLUMINANCE8_ALPHA8", 0x8C45}, + {"GL_SLUMINANCE8_ALPHA8_EXT", 0x8C45}, + {"GL_SLUMINANCE8_ALPHA8_NV", 0x8C45}, + {"GL_SLUMINANCE", 0x8C46}, + {"GL_SLUMINANCE_EXT", 0x8C46}, + {"GL_SLUMINANCE_NV", 0x8C46}, + {"GL_SLUMINANCE8", 0x8C47}, + {"GL_SLUMINANCE8_EXT", 0x8C47}, + {"GL_SLUMINANCE8_NV", 0x8C47}, + {"GL_COMPRESSED_SRGB", 0x8C48}, + {"GL_COMPRESSED_SRGB_EXT", 0x8C48}, + {"GL_COMPRESSED_SRGB_ALPHA", 0x8C49}, + {"GL_COMPRESSED_SRGB_ALPHA_EXT", 0x8C49}, + {"GL_COMPRESSED_SLUMINANCE", 0x8C4A}, + {"GL_COMPRESSED_SLUMINANCE_EXT", 0x8C4A}, + {"GL_COMPRESSED_SLUMINANCE_ALPHA", 0x8C4B}, + {"GL_COMPRESSED_SLUMINANCE_ALPHA_EXT", 0x8C4B}, + {"GL_COMPRESSED_SRGB_S3TC_DXT1_EXT", 0x8C4C}, + {"GL_COMPRESSED_SRGB_S3TC_DXT1_NV", 0x8C4C}, + {"GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT", 0x8C4D}, + {"GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT1_NV", 0x8C4D}, + {"GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT", 0x8C4E}, + {"GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT3_NV", 0x8C4E}, + {"GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT", 0x8C4F}, + {"GL_COMPRESSED_SRGB_ALPHA_S3TC_DXT5_NV", 0x8C4F}, + {"GL_COMPRESSED_LUMINANCE_LATC1_EXT", 0x8C70}, + {"GL_COMPRESSED_SIGNED_LUMINANCE_LATC1_EXT", 0x8C71}, + {"GL_COMPRESSED_LUMINANCE_ALPHA_LATC2_EXT", 0x8C72}, + {"GL_COMPRESSED_SIGNED_LUMINANCE_ALPHA_LATC2_EXT", 0x8C73}, + {"GL_TESS_CONTROL_PROGRAM_PARAMETER_BUFFER_NV", 0x8C74}, + {"GL_TESS_EVALUATION_PROGRAM_PARAMETER_BUFFER_NV", 0x8C75}, + {"GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH", 0x8C76}, + {"GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH_EXT", 0x8C76}, + {"GL_BACK_PRIMARY_COLOR_NV", 0x8C77}, + {"GL_BACK_SECONDARY_COLOR_NV", 0x8C78}, + {"GL_TEXTURE_COORD_NV", 0x8C79}, + {"GL_CLIP_DISTANCE_NV", 0x8C7A}, + {"GL_VERTEX_ID_NV", 0x8C7B}, + {"GL_PRIMITIVE_ID_NV", 0x8C7C}, + {"GL_GENERIC_ATTRIB_NV", 0x8C7D}, + {"GL_TRANSFORM_FEEDBACK_ATTRIBS_NV", 0x8C7E}, + {"GL_TRANSFORM_FEEDBACK_BUFFER_MODE", 0x8C7F}, + {"GL_TRANSFORM_FEEDBACK_BUFFER_MODE_EXT", 0x8C7F}, + {"GL_TRANSFORM_FEEDBACK_BUFFER_MODE_NV", 0x8C7F}, + {"GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS", 0x8C80}, + {"GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_EXT", 0x8C80}, + {"GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_NV", 0x8C80}, + {"GL_ACTIVE_VARYINGS_NV", 0x8C81}, + {"GL_ACTIVE_VARYING_MAX_LENGTH_NV", 0x8C82}, + {"GL_TRANSFORM_FEEDBACK_VARYINGS", 0x8C83}, + {"GL_TRANSFORM_FEEDBACK_VARYINGS_EXT", 0x8C83}, + {"GL_TRANSFORM_FEEDBACK_VARYINGS_NV", 0x8C83}, + {"GL_TRANSFORM_FEEDBACK_BUFFER_START", 0x8C84}, + {"GL_TRANSFORM_FEEDBACK_BUFFER_START_EXT", 0x8C84}, + {"GL_TRANSFORM_FEEDBACK_BUFFER_START_NV", 0x8C84}, + {"GL_TRANSFORM_FEEDBACK_BUFFER_SIZE", 0x8C85}, + {"GL_TRANSFORM_FEEDBACK_BUFFER_SIZE_EXT", 0x8C85}, + {"GL_TRANSFORM_FEEDBACK_BUFFER_SIZE_NV", 0x8C85}, + {"GL_TRANSFORM_FEEDBACK_RECORD_NV", 0x8C86}, + {"GL_PRIMITIVES_GENERATED", 0x8C87}, + {"GL_PRIMITIVES_GENERATED_EXT", 0x8C87}, + {"GL_PRIMITIVES_GENERATED_NV", 0x8C87}, + {"GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN", 0x8C88}, + {"GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_EXT", 0x8C88}, + {"GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_NV", 0x8C88}, + {"GL_RASTERIZER_DISCARD", 0x8C89}, + {"GL_RASTERIZER_DISCARD_EXT", 0x8C89}, + {"GL_RASTERIZER_DISCARD_NV", 0x8C89}, + {"GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS", 0x8C8A}, + {"GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS_EXT", 0x8C8A}, + {"GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS_NV", 0x8C8A}, + {"GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS", 0x8C8B}, + {"GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_EXT", 0x8C8B}, + {"GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_NV", 0x8C8B}, + {"GL_INTERLEAVED_ATTRIBS", 0x8C8C}, + {"GL_INTERLEAVED_ATTRIBS_EXT", 0x8C8C}, + {"GL_INTERLEAVED_ATTRIBS_NV", 0x8C8C}, + {"GL_SEPARATE_ATTRIBS", 0x8C8D}, + {"GL_SEPARATE_ATTRIBS_EXT", 0x8C8D}, + {"GL_SEPARATE_ATTRIBS_NV", 0x8C8D}, + {"GL_TRANSFORM_FEEDBACK_BUFFER", 0x8C8E}, + {"GL_TRANSFORM_FEEDBACK_BUFFER_EXT", 0x8C8E}, + {"GL_TRANSFORM_FEEDBACK_BUFFER_NV", 0x8C8E}, + {"GL_TRANSFORM_FEEDBACK_BUFFER_BINDING", 0x8C8F}, + {"GL_TRANSFORM_FEEDBACK_BUFFER_BINDING_EXT", 0x8C8F}, + {"GL_TRANSFORM_FEEDBACK_BUFFER_BINDING_NV", 0x8C8F}, + {"GL_ATC_RGB_AMD", 0x8C92}, + {"GL_ATC_RGBA_EXPLICIT_ALPHA_AMD", 0x8C93}, + {"GL_POINT_SPRITE_COORD_ORIGIN", 0x8CA0}, + {"GL_LOWER_LEFT", 0x8CA1}, + {"GL_UPPER_LEFT", 0x8CA2}, + {"GL_STENCIL_BACK_REF", 0x8CA3}, + {"GL_STENCIL_BACK_VALUE_MASK", 0x8CA4}, + {"GL_STENCIL_BACK_WRITEMASK", 0x8CA5}, + {"GL_DRAW_FRAMEBUFFER_BINDING", 0x8CA6}, + {"GL_DRAW_FRAMEBUFFER_BINDING_EXT", 0x8CA6}, + {"GL_DRAW_FRAMEBUFFER_BINDING_NV", 0x8CA6}, + {"GL_FRAMEBUFFER_BINDING", 0x8CA6}, + {"GL_FRAMEBUFFER_BINDING_ANGLE", 0x8CA6}, + {"GL_FRAMEBUFFER_BINDING_EXT", 0x8CA6}, + {"GL_FRAMEBUFFER_BINDING_OES", 0x8CA6}, + {"GL_RENDERBUFFER_BINDING", 0x8CA7}, + {"GL_RENDERBUFFER_BINDING_ANGLE", 0x8CA7}, + {"GL_RENDERBUFFER_BINDING_EXT", 0x8CA7}, + {"GL_RENDERBUFFER_BINDING_OES", 0x8CA7}, + {"GL_READ_FRAMEBUFFER", 0x8CA8}, + {"GL_READ_FRAMEBUFFER_ANGLE", 0x8CA8}, + {"GL_READ_FRAMEBUFFER_EXT", 0x8CA8}, + {"GL_READ_FRAMEBUFFER_NV", 0x8CA8}, + {"GL_DRAW_FRAMEBUFFER", 0x8CA9}, + {"GL_DRAW_FRAMEBUFFER_ANGLE", 0x8CA9}, + {"GL_DRAW_FRAMEBUFFER_EXT", 0x8CA9}, + {"GL_DRAW_FRAMEBUFFER_NV", 0x8CA9}, + {"GL_READ_FRAMEBUFFER_BINDING", 0x8CAA}, + {"GL_READ_FRAMEBUFFER_BINDING_EXT", 0x8CAA}, + {"GL_READ_FRAMEBUFFER_BINDING_NV", 0x8CAA}, + {"GL_RENDERBUFFER_COVERAGE_SAMPLES_NV", 0x8CAB}, + {"GL_RENDERBUFFER_SAMPLES", 0x8CAB}, + {"GL_RENDERBUFFER_SAMPLES_ANGLE", 0x8CAB}, + {"GL_RENDERBUFFER_SAMPLES_EXT", 0x8CAB}, + {"GL_RENDERBUFFER_SAMPLES_NV", 0x8CAB}, + {"GL_DEPTH_COMPONENT32F", 0x8CAC}, + {"GL_DEPTH32F_STENCIL8", 0x8CAD}, + {"GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE", 0x8CD0}, + {"GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_EXT", 0x8CD0}, + {"GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_OES", 0x8CD0}, + {"GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME", 0x8CD1}, + {"GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_EXT", 0x8CD1}, + {"GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_OES", 0x8CD1}, + {"GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL", 0x8CD2}, + {"GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_EXT", 0x8CD2}, + {"GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_OES", 0x8CD2}, + {"GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE", 0x8CD3}, + {"GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_EXT", 0x8CD3}, + {"GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_OES", 0x8CD3}, + {"GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_EXT", 0x8CD4}, + {"GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_OES", 0x8CD4}, + {"GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER", 0x8CD4}, + {"GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT", 0x8CD4}, + {"GL_FRAMEBUFFER_COMPLETE", 0x8CD5}, + {"GL_FRAMEBUFFER_COMPLETE_EXT", 0x8CD5}, + {"GL_FRAMEBUFFER_COMPLETE_OES", 0x8CD5}, + {"GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT", 0x8CD6}, + {"GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_EXT", 0x8CD6}, + {"GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_OES", 0x8CD6}, + {"GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT", 0x8CD7}, + {"GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_EXT", 0x8CD7}, + {"GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_OES", 0x8CD7}, + {"GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS", 0x8CD9}, + {"GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_EXT", 0x8CD9}, + {"GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_OES", 0x8CD9}, + {"GL_FRAMEBUFFER_INCOMPLETE_FORMATS_EXT", 0x8CDA}, + {"GL_FRAMEBUFFER_INCOMPLETE_FORMATS_OES", 0x8CDA}, + {"GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER", 0x8CDB}, + {"GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_EXT", 0x8CDB}, + {"GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_OES", 0x8CDB}, + {"GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER", 0x8CDC}, + {"GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER_EXT", 0x8CDC}, + {"GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER_OES", 0x8CDC}, + {"GL_FRAMEBUFFER_UNSUPPORTED", 0x8CDD}, + {"GL_FRAMEBUFFER_UNSUPPORTED_EXT", 0x8CDD}, + {"GL_FRAMEBUFFER_UNSUPPORTED_OES", 0x8CDD}, + {"GL_MAX_COLOR_ATTACHMENTS", 0x8CDF}, + {"GL_MAX_COLOR_ATTACHMENTS_EXT", 0x8CDF}, + {"GL_MAX_COLOR_ATTACHMENTS_NV", 0x8CDF}, + {"GL_COLOR_ATTACHMENT0", 0x8CE0}, + {"GL_COLOR_ATTACHMENT0_EXT", 0x8CE0}, + {"GL_COLOR_ATTACHMENT0_NV", 0x8CE0}, + {"GL_COLOR_ATTACHMENT0_OES", 0x8CE0}, + {"GL_COLOR_ATTACHMENT1", 0x8CE1}, + {"GL_COLOR_ATTACHMENT1_EXT", 0x8CE1}, + {"GL_COLOR_ATTACHMENT1_NV", 0x8CE1}, + {"GL_COLOR_ATTACHMENT2", 0x8CE2}, + {"GL_COLOR_ATTACHMENT2_EXT", 0x8CE2}, + {"GL_COLOR_ATTACHMENT2_NV", 0x8CE2}, + {"GL_COLOR_ATTACHMENT3", 0x8CE3}, + {"GL_COLOR_ATTACHMENT3_EXT", 0x8CE3}, + {"GL_COLOR_ATTACHMENT3_NV", 0x8CE3}, + {"GL_COLOR_ATTACHMENT4", 0x8CE4}, + {"GL_COLOR_ATTACHMENT4_EXT", 0x8CE4}, + {"GL_COLOR_ATTACHMENT4_NV", 0x8CE4}, + {"GL_COLOR_ATTACHMENT5", 0x8CE5}, + {"GL_COLOR_ATTACHMENT5_EXT", 0x8CE5}, + {"GL_COLOR_ATTACHMENT5_NV", 0x8CE5}, + {"GL_COLOR_ATTACHMENT6", 0x8CE6}, + {"GL_COLOR_ATTACHMENT6_EXT", 0x8CE6}, + {"GL_COLOR_ATTACHMENT6_NV", 0x8CE6}, + {"GL_COLOR_ATTACHMENT7", 0x8CE7}, + {"GL_COLOR_ATTACHMENT7_EXT", 0x8CE7}, + {"GL_COLOR_ATTACHMENT7_NV", 0x8CE7}, + {"GL_COLOR_ATTACHMENT8", 0x8CE8}, + {"GL_COLOR_ATTACHMENT8_EXT", 0x8CE8}, + {"GL_COLOR_ATTACHMENT8_NV", 0x8CE8}, + {"GL_COLOR_ATTACHMENT9", 0x8CE9}, + {"GL_COLOR_ATTACHMENT9_EXT", 0x8CE9}, + {"GL_COLOR_ATTACHMENT9_NV", 0x8CE9}, + {"GL_COLOR_ATTACHMENT10", 0x8CEA}, + {"GL_COLOR_ATTACHMENT10_EXT", 0x8CEA}, + {"GL_COLOR_ATTACHMENT10_NV", 0x8CEA}, + {"GL_COLOR_ATTACHMENT11", 0x8CEB}, + {"GL_COLOR_ATTACHMENT11_EXT", 0x8CEB}, + {"GL_COLOR_ATTACHMENT11_NV", 0x8CEB}, + {"GL_COLOR_ATTACHMENT12", 0x8CEC}, + {"GL_COLOR_ATTACHMENT12_EXT", 0x8CEC}, + {"GL_COLOR_ATTACHMENT12_NV", 0x8CEC}, + {"GL_COLOR_ATTACHMENT13", 0x8CED}, + {"GL_COLOR_ATTACHMENT13_EXT", 0x8CED}, + {"GL_COLOR_ATTACHMENT13_NV", 0x8CED}, + {"GL_COLOR_ATTACHMENT14", 0x8CEE}, + {"GL_COLOR_ATTACHMENT14_EXT", 0x8CEE}, + {"GL_COLOR_ATTACHMENT14_NV", 0x8CEE}, + {"GL_COLOR_ATTACHMENT15", 0x8CEF}, + {"GL_COLOR_ATTACHMENT15_EXT", 0x8CEF}, + {"GL_COLOR_ATTACHMENT15_NV", 0x8CEF}, + {"GL_DEPTH_ATTACHMENT", 0x8D00}, + {"GL_DEPTH_ATTACHMENT_EXT", 0x8D00}, + {"GL_DEPTH_ATTACHMENT_OES", 0x8D00}, + {"GL_STENCIL_ATTACHMENT", 0x8D20}, + {"GL_STENCIL_ATTACHMENT_EXT", 0x8D20}, + {"GL_STENCIL_ATTACHMENT_OES", 0x8D20}, + {"GL_FRAMEBUFFER", 0x8D40}, + {"GL_FRAMEBUFFER_EXT", 0x8D40}, + {"GL_FRAMEBUFFER_OES", 0x8D40}, + {"GL_RENDERBUFFER", 0x8D41}, + {"GL_RENDERBUFFER_EXT", 0x8D41}, + {"GL_RENDERBUFFER_OES", 0x8D41}, + {"GL_RENDERBUFFER_WIDTH", 0x8D42}, + {"GL_RENDERBUFFER_WIDTH_EXT", 0x8D42}, + {"GL_RENDERBUFFER_WIDTH_OES", 0x8D42}, + {"GL_RENDERBUFFER_HEIGHT", 0x8D43}, + {"GL_RENDERBUFFER_HEIGHT_EXT", 0x8D43}, + {"GL_RENDERBUFFER_HEIGHT_OES", 0x8D43}, + {"GL_RENDERBUFFER_INTERNAL_FORMAT", 0x8D44}, + {"GL_RENDERBUFFER_INTERNAL_FORMAT_EXT", 0x8D44}, + {"GL_RENDERBUFFER_INTERNAL_FORMAT_OES", 0x8D44}, + {"GL_STENCIL_INDEX1", 0x8D46}, + {"GL_STENCIL_INDEX1_EXT", 0x8D46}, + {"GL_STENCIL_INDEX1_OES", 0x8D46}, + {"GL_STENCIL_INDEX4", 0x8D47}, + {"GL_STENCIL_INDEX4_EXT", 0x8D47}, + {"GL_STENCIL_INDEX4_OES", 0x8D47}, + {"GL_STENCIL_INDEX8", 0x8D48}, + {"GL_STENCIL_INDEX8_EXT", 0x8D48}, + {"GL_STENCIL_INDEX8_OES", 0x8D48}, + {"GL_STENCIL_INDEX16", 0x8D49}, + {"GL_STENCIL_INDEX16_EXT", 0x8D49}, + {"GL_RENDERBUFFER_RED_SIZE", 0x8D50}, + {"GL_RENDERBUFFER_RED_SIZE_EXT", 0x8D50}, + {"GL_RENDERBUFFER_RED_SIZE_OES", 0x8D50}, + {"GL_RENDERBUFFER_GREEN_SIZE", 0x8D51}, + {"GL_RENDERBUFFER_GREEN_SIZE_EXT", 0x8D51}, + {"GL_RENDERBUFFER_GREEN_SIZE_OES", 0x8D51}, + {"GL_RENDERBUFFER_BLUE_SIZE", 0x8D52}, + {"GL_RENDERBUFFER_BLUE_SIZE_EXT", 0x8D52}, + {"GL_RENDERBUFFER_BLUE_SIZE_OES", 0x8D52}, + {"GL_RENDERBUFFER_ALPHA_SIZE", 0x8D53}, + {"GL_RENDERBUFFER_ALPHA_SIZE_EXT", 0x8D53}, + {"GL_RENDERBUFFER_ALPHA_SIZE_OES", 0x8D53}, + {"GL_RENDERBUFFER_DEPTH_SIZE", 0x8D54}, + {"GL_RENDERBUFFER_DEPTH_SIZE_EXT", 0x8D54}, + {"GL_RENDERBUFFER_DEPTH_SIZE_OES", 0x8D54}, + {"GL_RENDERBUFFER_STENCIL_SIZE", 0x8D55}, + {"GL_RENDERBUFFER_STENCIL_SIZE_EXT", 0x8D55}, + {"GL_RENDERBUFFER_STENCIL_SIZE_OES", 0x8D55}, + {"GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE", 0x8D56}, + {"GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_ANGLE", 0x8D56}, + {"GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT", 0x8D56}, + {"GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_NV", 0x8D56}, + {"GL_MAX_SAMPLES", 0x8D57}, + {"GL_MAX_SAMPLES_ANGLE", 0x8D57}, + {"GL_MAX_SAMPLES_EXT", 0x8D57}, + {"GL_MAX_SAMPLES_NV", 0x8D57}, + {"GL_TEXTURE_GEN_STR_OES", 0x8D60}, + {"GL_HALF_FLOAT_OES", 0x8D61}, + {"GL_RGB565_OES", 0x8D62}, + {"GL_RGB565", 0x8D62}, + {"GL_ETC1_RGB8_OES", 0x8D64}, + {"GL_TEXTURE_EXTERNAL_OES", 0x8D65}, + {"GL_SAMPLER_EXTERNAL_OES", 0x8D66}, + {"GL_TEXTURE_BINDING_EXTERNAL_OES", 0x8D67}, + {"GL_REQUIRED_TEXTURE_IMAGE_UNITS_OES", 0x8D68}, + {"GL_PRIMITIVE_RESTART_FIXED_INDEX", 0x8D69}, + {"GL_ANY_SAMPLES_PASSED_CONSERVATIVE", 0x8D6A}, + {"GL_ANY_SAMPLES_PASSED_CONSERVATIVE_EXT", 0x8D6A}, + {"GL_MAX_ELEMENT_INDEX", 0x8D6B}, + {"GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_SAMPLES_EXT", 0x8D6C}, + {"GL_RGBA32UI", 0x8D70}, + {"GL_RGBA32UI_EXT", 0x8D70}, + {"GL_RGB32UI", 0x8D71}, + {"GL_RGB32UI_EXT", 0x8D71}, + {"GL_ALPHA32UI_EXT", 0x8D72}, + {"GL_INTENSITY32UI_EXT", 0x8D73}, + {"GL_LUMINANCE32UI_EXT", 0x8D74}, + {"GL_LUMINANCE_ALPHA32UI_EXT", 0x8D75}, + {"GL_RGBA16UI", 0x8D76}, + {"GL_RGBA16UI_EXT", 0x8D76}, + {"GL_RGB16UI", 0x8D77}, + {"GL_RGB16UI_EXT", 0x8D77}, + {"GL_ALPHA16UI_EXT", 0x8D78}, + {"GL_INTENSITY16UI_EXT", 0x8D79}, + {"GL_LUMINANCE16UI_EXT", 0x8D7A}, + {"GL_LUMINANCE_ALPHA16UI_EXT", 0x8D7B}, + {"GL_RGBA8UI", 0x8D7C}, + {"GL_RGBA8UI_EXT", 0x8D7C}, + {"GL_RGB8UI", 0x8D7D}, + {"GL_RGB8UI_EXT", 0x8D7D}, + {"GL_ALPHA8UI_EXT", 0x8D7E}, + {"GL_INTENSITY8UI_EXT", 0x8D7F}, + {"GL_LUMINANCE8UI_EXT", 0x8D80}, + {"GL_LUMINANCE_ALPHA8UI_EXT", 0x8D81}, + {"GL_RGBA32I", 0x8D82}, + {"GL_RGBA32I_EXT", 0x8D82}, + {"GL_RGB32I", 0x8D83}, + {"GL_RGB32I_EXT", 0x8D83}, + {"GL_ALPHA32I_EXT", 0x8D84}, + {"GL_INTENSITY32I_EXT", 0x8D85}, + {"GL_LUMINANCE32I_EXT", 0x8D86}, + {"GL_LUMINANCE_ALPHA32I_EXT", 0x8D87}, + {"GL_RGBA16I", 0x8D88}, + {"GL_RGBA16I_EXT", 0x8D88}, + {"GL_RGB16I", 0x8D89}, + {"GL_RGB16I_EXT", 0x8D89}, + {"GL_ALPHA16I_EXT", 0x8D8A}, + {"GL_INTENSITY16I_EXT", 0x8D8B}, + {"GL_LUMINANCE16I_EXT", 0x8D8C}, + {"GL_LUMINANCE_ALPHA16I_EXT", 0x8D8D}, + {"GL_RGBA8I", 0x8D8E}, + {"GL_RGBA8I_EXT", 0x8D8E}, + {"GL_RGB8I", 0x8D8F}, + {"GL_RGB8I_EXT", 0x8D8F}, + {"GL_ALPHA8I_EXT", 0x8D90}, + {"GL_INTENSITY8I_EXT", 0x8D91}, + {"GL_LUMINANCE8I_EXT", 0x8D92}, + {"GL_LUMINANCE_ALPHA8I_EXT", 0x8D93}, + {"GL_RED_INTEGER", 0x8D94}, + {"GL_RED_INTEGER_EXT", 0x8D94}, + {"GL_GREEN_INTEGER", 0x8D95}, + {"GL_GREEN_INTEGER_EXT", 0x8D95}, + {"GL_BLUE_INTEGER", 0x8D96}, + {"GL_BLUE_INTEGER_EXT", 0x8D96}, + {"GL_ALPHA_INTEGER", 0x8D97}, + {"GL_ALPHA_INTEGER_EXT", 0x8D97}, + {"GL_RGB_INTEGER", 0x8D98}, + {"GL_RGB_INTEGER_EXT", 0x8D98}, + {"GL_RGBA_INTEGER", 0x8D99}, + {"GL_RGBA_INTEGER_EXT", 0x8D99}, + {"GL_BGR_INTEGER", 0x8D9A}, + {"GL_BGR_INTEGER_EXT", 0x8D9A}, + {"GL_BGRA_INTEGER", 0x8D9B}, + {"GL_BGRA_INTEGER_EXT", 0x8D9B}, + {"GL_LUMINANCE_INTEGER_EXT", 0x8D9C}, + {"GL_LUMINANCE_ALPHA_INTEGER_EXT", 0x8D9D}, + {"GL_RGBA_INTEGER_MODE_EXT", 0x8D9E}, + {"GL_INT_2_10_10_10_REV", 0x8D9F}, + {"GL_MAX_PROGRAM_PARAMETER_BUFFER_BINDINGS_NV", 0x8DA0}, + {"GL_MAX_PROGRAM_PARAMETER_BUFFER_SIZE_NV", 0x8DA1}, + {"GL_VERTEX_PROGRAM_PARAMETER_BUFFER_NV", 0x8DA2}, + {"GL_GEOMETRY_PROGRAM_PARAMETER_BUFFER_NV", 0x8DA3}, + {"GL_FRAGMENT_PROGRAM_PARAMETER_BUFFER_NV", 0x8DA4}, + {"GL_MAX_PROGRAM_GENERIC_ATTRIBS_NV", 0x8DA5}, + {"GL_MAX_PROGRAM_GENERIC_RESULTS_NV", 0x8DA6}, + {"GL_FRAMEBUFFER_ATTACHMENT_LAYERED", 0x8DA7}, + {"GL_FRAMEBUFFER_ATTACHMENT_LAYERED_ARB", 0x8DA7}, + {"GL_FRAMEBUFFER_ATTACHMENT_LAYERED_EXT", 0x8DA7}, + {"GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS", 0x8DA8}, + {"GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_ARB", 0x8DA8}, + {"GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_EXT", 0x8DA8}, + {"GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_ARB", 0x8DA9}, + {"GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_EXT", 0x8DA9}, + {"GL_LAYER_NV", 0x8DAA}, + {"GL_DEPTH_COMPONENT32F_NV", 0x8DAB}, + {"GL_DEPTH32F_STENCIL8_NV", 0x8DAC}, + {"GL_FLOAT_32_UNSIGNED_INT_24_8_REV", 0x8DAD}, + {"GL_FLOAT_32_UNSIGNED_INT_24_8_REV_NV", 0x8DAD}, + {"GL_SHADER_INCLUDE_ARB", 0x8DAE}, + {"GL_DEPTH_BUFFER_FLOAT_MODE_NV", 0x8DAF}, + {"GL_FRAMEBUFFER_SRGB", 0x8DB9}, + {"GL_FRAMEBUFFER_SRGB_EXT", 0x8DB9}, + {"GL_FRAMEBUFFER_SRGB_CAPABLE_EXT", 0x8DBA}, + {"GL_COMPRESSED_RED_RGTC1", 0x8DBB}, + {"GL_COMPRESSED_RED_RGTC1_EXT", 0x8DBB}, + {"GL_COMPRESSED_SIGNED_RED_RGTC1", 0x8DBC}, + {"GL_COMPRESSED_SIGNED_RED_RGTC1_EXT", 0x8DBC}, + {"GL_COMPRESSED_RED_GREEN_RGTC2_EXT", 0x8DBD}, + {"GL_COMPRESSED_RG_RGTC2", 0x8DBD}, + {"GL_COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT", 0x8DBE}, + {"GL_COMPRESSED_SIGNED_RG_RGTC2", 0x8DBE}, + {"GL_SAMPLER_1D_ARRAY", 0x8DC0}, + {"GL_SAMPLER_1D_ARRAY_EXT", 0x8DC0}, + {"GL_SAMPLER_2D_ARRAY", 0x8DC1}, + {"GL_SAMPLER_2D_ARRAY_EXT", 0x8DC1}, + {"GL_SAMPLER_BUFFER", 0x8DC2}, + {"GL_SAMPLER_BUFFER_EXT", 0x8DC2}, + {"GL_SAMPLER_1D_ARRAY_SHADOW", 0x8DC3}, + {"GL_SAMPLER_1D_ARRAY_SHADOW_EXT", 0x8DC3}, + {"GL_SAMPLER_2D_ARRAY_SHADOW", 0x8DC4}, + {"GL_SAMPLER_2D_ARRAY_SHADOW_EXT", 0x8DC4}, + {"GL_SAMPLER_2D_ARRAY_SHADOW_NV", 0x8DC4}, + {"GL_SAMPLER_CUBE_SHADOW", 0x8DC5}, + {"GL_SAMPLER_CUBE_SHADOW_EXT", 0x8DC5}, + {"GL_SAMPLER_CUBE_SHADOW_NV", 0x8DC5}, + {"GL_UNSIGNED_INT_VEC2", 0x8DC6}, + {"GL_UNSIGNED_INT_VEC2_EXT", 0x8DC6}, + {"GL_UNSIGNED_INT_VEC3", 0x8DC7}, + {"GL_UNSIGNED_INT_VEC3_EXT", 0x8DC7}, + {"GL_UNSIGNED_INT_VEC4", 0x8DC8}, + {"GL_UNSIGNED_INT_VEC4_EXT", 0x8DC8}, + {"GL_INT_SAMPLER_1D", 0x8DC9}, + {"GL_INT_SAMPLER_1D_EXT", 0x8DC9}, + {"GL_INT_SAMPLER_2D", 0x8DCA}, + {"GL_INT_SAMPLER_2D_EXT", 0x8DCA}, + {"GL_INT_SAMPLER_3D", 0x8DCB}, + {"GL_INT_SAMPLER_3D_EXT", 0x8DCB}, + {"GL_INT_SAMPLER_CUBE", 0x8DCC}, + {"GL_INT_SAMPLER_CUBE_EXT", 0x8DCC}, + {"GL_INT_SAMPLER_2D_RECT", 0x8DCD}, + {"GL_INT_SAMPLER_2D_RECT_EXT", 0x8DCD}, + {"GL_INT_SAMPLER_1D_ARRAY", 0x8DCE}, + {"GL_INT_SAMPLER_1D_ARRAY_EXT", 0x8DCE}, + {"GL_INT_SAMPLER_2D_ARRAY", 0x8DCF}, + {"GL_INT_SAMPLER_2D_ARRAY_EXT", 0x8DCF}, + {"GL_INT_SAMPLER_BUFFER", 0x8DD0}, + {"GL_INT_SAMPLER_BUFFER_EXT", 0x8DD0}, + {"GL_UNSIGNED_INT_SAMPLER_1D", 0x8DD1}, + {"GL_UNSIGNED_INT_SAMPLER_1D_EXT", 0x8DD1}, + {"GL_UNSIGNED_INT_SAMPLER_2D", 0x8DD2}, + {"GL_UNSIGNED_INT_SAMPLER_2D_EXT", 0x8DD2}, + {"GL_UNSIGNED_INT_SAMPLER_3D", 0x8DD3}, + {"GL_UNSIGNED_INT_SAMPLER_3D_EXT", 0x8DD3}, + {"GL_UNSIGNED_INT_SAMPLER_CUBE", 0x8DD4}, + {"GL_UNSIGNED_INT_SAMPLER_CUBE_EXT", 0x8DD4}, + {"GL_UNSIGNED_INT_SAMPLER_2D_RECT", 0x8DD5}, + {"GL_UNSIGNED_INT_SAMPLER_2D_RECT_EXT", 0x8DD5}, + {"GL_UNSIGNED_INT_SAMPLER_1D_ARRAY", 0x8DD6}, + {"GL_UNSIGNED_INT_SAMPLER_1D_ARRAY_EXT", 0x8DD6}, + {"GL_UNSIGNED_INT_SAMPLER_2D_ARRAY", 0x8DD7}, + {"GL_UNSIGNED_INT_SAMPLER_2D_ARRAY_EXT", 0x8DD7}, + {"GL_UNSIGNED_INT_SAMPLER_BUFFER", 0x8DD8}, + {"GL_UNSIGNED_INT_SAMPLER_BUFFER_EXT", 0x8DD8}, + {"GL_GEOMETRY_SHADER", 0x8DD9}, + {"GL_GEOMETRY_SHADER_ARB", 0x8DD9}, + {"GL_GEOMETRY_SHADER_EXT", 0x8DD9}, + {"GL_GEOMETRY_VERTICES_OUT_ARB", 0x8DDA}, + {"GL_GEOMETRY_VERTICES_OUT_EXT", 0x8DDA}, + {"GL_GEOMETRY_INPUT_TYPE_ARB", 0x8DDB}, + {"GL_GEOMETRY_INPUT_TYPE_EXT", 0x8DDB}, + {"GL_GEOMETRY_OUTPUT_TYPE_ARB", 0x8DDC}, + {"GL_GEOMETRY_OUTPUT_TYPE_EXT", 0x8DDC}, + {"GL_MAX_GEOMETRY_VARYING_COMPONENTS_ARB", 0x8DDD}, + {"GL_MAX_GEOMETRY_VARYING_COMPONENTS_EXT", 0x8DDD}, + {"GL_MAX_VERTEX_VARYING_COMPONENTS_ARB", 0x8DDE}, + {"GL_MAX_VERTEX_VARYING_COMPONENTS_EXT", 0x8DDE}, + {"GL_MAX_GEOMETRY_UNIFORM_COMPONENTS", 0x8DDF}, + {"GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_ARB", 0x8DDF}, + {"GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_EXT", 0x8DDF}, + {"GL_MAX_GEOMETRY_OUTPUT_VERTICES", 0x8DE0}, + {"GL_MAX_GEOMETRY_OUTPUT_VERTICES_ARB", 0x8DE0}, + {"GL_MAX_GEOMETRY_OUTPUT_VERTICES_EXT", 0x8DE0}, + {"GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS", 0x8DE1}, + {"GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_ARB", 0x8DE1}, + {"GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_EXT", 0x8DE1}, + {"GL_MAX_VERTEX_BINDABLE_UNIFORMS_EXT", 0x8DE2}, + {"GL_MAX_FRAGMENT_BINDABLE_UNIFORMS_EXT", 0x8DE3}, + {"GL_MAX_GEOMETRY_BINDABLE_UNIFORMS_EXT", 0x8DE4}, + {"GL_ACTIVE_SUBROUTINES", 0x8DE5}, + {"GL_ACTIVE_SUBROUTINE_UNIFORMS", 0x8DE6}, + {"GL_MAX_SUBROUTINES", 0x8DE7}, + {"GL_MAX_SUBROUTINE_UNIFORM_LOCATIONS", 0x8DE8}, + {"GL_NAMED_STRING_LENGTH_ARB", 0x8DE9}, + {"GL_NAMED_STRING_TYPE_ARB", 0x8DEA}, + {"GL_MAX_BINDABLE_UNIFORM_SIZE_EXT", 0x8DED}, + {"GL_UNIFORM_BUFFER_EXT", 0x8DEE}, + {"GL_UNIFORM_BUFFER_BINDING_EXT", 0x8DEF}, + {"GL_LOW_FLOAT", 0x8DF0}, + {"GL_MEDIUM_FLOAT", 0x8DF1}, + {"GL_HIGH_FLOAT", 0x8DF2}, + {"GL_LOW_INT", 0x8DF3}, + {"GL_MEDIUM_INT", 0x8DF4}, + {"GL_HIGH_INT", 0x8DF5}, + {"GL_UNSIGNED_INT_10_10_10_2_OES", 0x8DF6}, + {"GL_INT_10_10_10_2_OES", 0x8DF7}, + {"GL_SHADER_BINARY_FORMATS", 0x8DF8}, + {"GL_NUM_SHADER_BINARY_FORMATS", 0x8DF9}, + {"GL_SHADER_COMPILER", 0x8DFA}, + {"GL_MAX_VERTEX_UNIFORM_VECTORS", 0x8DFB}, + {"GL_MAX_VARYING_VECTORS", 0x8DFC}, + {"GL_MAX_FRAGMENT_UNIFORM_VECTORS", 0x8DFD}, + {"GL_RENDERBUFFER_COLOR_SAMPLES_NV", 0x8E10}, + {"GL_MAX_MULTISAMPLE_COVERAGE_MODES_NV", 0x8E11}, + {"GL_MULTISAMPLE_COVERAGE_MODES_NV", 0x8E12}, + {"GL_QUERY_WAIT", 0x8E13}, + {"GL_QUERY_WAIT_NV", 0x8E13}, + {"GL_QUERY_NO_WAIT", 0x8E14}, + {"GL_QUERY_NO_WAIT_NV", 0x8E14}, + {"GL_QUERY_BY_REGION_WAIT", 0x8E15}, + {"GL_QUERY_BY_REGION_WAIT_NV", 0x8E15}, + {"GL_QUERY_BY_REGION_NO_WAIT", 0x8E16}, + {"GL_QUERY_BY_REGION_NO_WAIT_NV", 0x8E16}, + {"GL_MAX_COMBINED_TESS_CONTROL_UNIFORM_COMPONENTS", 0x8E1E}, + {"GL_MAX_COMBINED_TESS_EVALUATION_UNIFORM_COMPONENTS", 0x8E1F}, + {"GL_COLOR_SAMPLES_NV", 0x8E20}, + {"GL_TRANSFORM_FEEDBACK", 0x8E22}, + {"GL_TRANSFORM_FEEDBACK_NV", 0x8E22}, + {"GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED", 0x8E23}, + {"GL_TRANSFORM_FEEDBACK_PAUSED", 0x8E23}, + {"GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED_NV", 0x8E23}, + {"GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE", 0x8E24}, + {"GL_TRANSFORM_FEEDBACK_ACTIVE", 0x8E24}, + {"GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE_NV", 0x8E24}, + {"GL_TRANSFORM_FEEDBACK_BINDING", 0x8E25}, + {"GL_TRANSFORM_FEEDBACK_BINDING_NV", 0x8E25}, + {"GL_FRAME_NV", 0x8E26}, + {"GL_FIELDS_NV", 0x8E27}, + {"GL_CURRENT_TIME_NV", 0x8E28}, + {"GL_TIMESTAMP", 0x8E28}, + {"GL_TIMESTAMP_EXT", 0x8E28}, + {"GL_NUM_FILL_STREAMS_NV", 0x8E29}, + {"GL_PRESENT_TIME_NV", 0x8E2A}, + {"GL_PRESENT_DURATION_NV", 0x8E2B}, + {"GL_DEPTH_COMPONENT16_NONLINEAR_NV", 0x8E2C}, + {"GL_PROGRAM_MATRIX_EXT", 0x8E2D}, + {"GL_TRANSPOSE_PROGRAM_MATRIX_EXT", 0x8E2E}, + {"GL_PROGRAM_MATRIX_STACK_DEPTH_EXT", 0x8E2F}, + {"GL_TEXTURE_SWIZZLE_R", 0x8E42}, + {"GL_TEXTURE_SWIZZLE_R_EXT", 0x8E42}, + {"GL_TEXTURE_SWIZZLE_G", 0x8E43}, + {"GL_TEXTURE_SWIZZLE_G_EXT", 0x8E43}, + {"GL_TEXTURE_SWIZZLE_B", 0x8E44}, + {"GL_TEXTURE_SWIZZLE_B_EXT", 0x8E44}, + {"GL_TEXTURE_SWIZZLE_A", 0x8E45}, + {"GL_TEXTURE_SWIZZLE_A_EXT", 0x8E45}, + {"GL_TEXTURE_SWIZZLE_RGBA", 0x8E46}, + {"GL_TEXTURE_SWIZZLE_RGBA_EXT", 0x8E46}, + {"GL_ACTIVE_SUBROUTINE_UNIFORM_LOCATIONS", 0x8E47}, + {"GL_ACTIVE_SUBROUTINE_MAX_LENGTH", 0x8E48}, + {"GL_ACTIVE_SUBROUTINE_UNIFORM_MAX_LENGTH", 0x8E49}, + {"GL_NUM_COMPATIBLE_SUBROUTINES", 0x8E4A}, + {"GL_COMPATIBLE_SUBROUTINES", 0x8E4B}, + {"GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION", 0x8E4C}, + {"GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION_EXT", 0x8E4C}, + {"GL_FIRST_VERTEX_CONVENTION", 0x8E4D}, + {"GL_FIRST_VERTEX_CONVENTION_EXT", 0x8E4D}, + {"GL_LAST_VERTEX_CONVENTION", 0x8E4E}, + {"GL_LAST_VERTEX_CONVENTION_EXT", 0x8E4E}, + {"GL_PROVOKING_VERTEX", 0x8E4F}, + {"GL_PROVOKING_VERTEX_EXT", 0x8E4F}, + {"GL_SAMPLE_POSITION", 0x8E50}, + {"GL_SAMPLE_POSITION_NV", 0x8E50}, + {"GL_SAMPLE_MASK", 0x8E51}, + {"GL_SAMPLE_MASK_NV", 0x8E51}, + {"GL_SAMPLE_MASK_VALUE", 0x8E52}, + {"GL_SAMPLE_MASK_VALUE_NV", 0x8E52}, + {"GL_TEXTURE_BINDING_RENDERBUFFER_NV", 0x8E53}, + {"GL_TEXTURE_RENDERBUFFER_DATA_STORE_BINDING_NV", 0x8E54}, + {"GL_TEXTURE_RENDERBUFFER_NV", 0x8E55}, + {"GL_SAMPLER_RENDERBUFFER_NV", 0x8E56}, + {"GL_INT_SAMPLER_RENDERBUFFER_NV", 0x8E57}, + {"GL_UNSIGNED_INT_SAMPLER_RENDERBUFFER_NV", 0x8E58}, + {"GL_MAX_SAMPLE_MASK_WORDS", 0x8E59}, + {"GL_MAX_SAMPLE_MASK_WORDS_NV", 0x8E59}, + {"GL_MAX_GEOMETRY_PROGRAM_INVOCATIONS_NV", 0x8E5A}, + {"GL_MAX_GEOMETRY_SHADER_INVOCATIONS", 0x8E5A}, + {"GL_MIN_FRAGMENT_INTERPOLATION_OFFSET", 0x8E5B}, + {"GL_MIN_FRAGMENT_INTERPOLATION_OFFSET_NV", 0x8E5B}, + {"GL_MAX_FRAGMENT_INTERPOLATION_OFFSET", 0x8E5C}, + {"GL_MAX_FRAGMENT_INTERPOLATION_OFFSET_NV", 0x8E5C}, + {"GL_FRAGMENT_INTERPOLATION_OFFSET_BITS", 0x8E5D}, + {"GL_FRAGMENT_PROGRAM_INTERPOLATION_OFFSET_BITS_NV", 0x8E5D}, + {"GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET", 0x8E5E}, + {"GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET_ARB", 0x8E5E}, + {"GL_MIN_PROGRAM_TEXTURE_GATHER_OFFSET_NV", 0x8E5E}, + {"GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET", 0x8E5F}, + {"GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_ARB", 0x8E5F}, + {"GL_MAX_PROGRAM_TEXTURE_GATHER_OFFSET_NV", 0x8E5F}, + {"GL_MAX_TRANSFORM_FEEDBACK_BUFFERS", 0x8E70}, + {"GL_MAX_VERTEX_STREAMS", 0x8E71}, + {"GL_PATCH_VERTICES", 0x8E72}, + {"GL_PATCH_DEFAULT_INNER_LEVEL", 0x8E73}, + {"GL_PATCH_DEFAULT_OUTER_LEVEL", 0x8E74}, + {"GL_TESS_CONTROL_OUTPUT_VERTICES", 0x8E75}, + {"GL_TESS_GEN_MODE", 0x8E76}, + {"GL_TESS_GEN_SPACING", 0x8E77}, + {"GL_TESS_GEN_VERTEX_ORDER", 0x8E78}, + {"GL_TESS_GEN_POINT_MODE", 0x8E79}, + {"GL_ISOLINES", 0x8E7A}, + {"GL_FRACTIONAL_ODD", 0x8E7B}, + {"GL_FRACTIONAL_EVEN", 0x8E7C}, + {"GL_MAX_PATCH_VERTICES", 0x8E7D}, + {"GL_MAX_TESS_GEN_LEVEL", 0x8E7E}, + {"GL_MAX_TESS_CONTROL_UNIFORM_COMPONENTS", 0x8E7F}, + {"GL_MAX_TESS_EVALUATION_UNIFORM_COMPONENTS", 0x8E80}, + {"GL_MAX_TESS_CONTROL_TEXTURE_IMAGE_UNITS", 0x8E81}, + {"GL_MAX_TESS_EVALUATION_TEXTURE_IMAGE_UNITS", 0x8E82}, + {"GL_MAX_TESS_CONTROL_OUTPUT_COMPONENTS", 0x8E83}, + {"GL_MAX_TESS_PATCH_COMPONENTS", 0x8E84}, + {"GL_MAX_TESS_CONTROL_TOTAL_OUTPUT_COMPONENTS", 0x8E85}, + {"GL_MAX_TESS_EVALUATION_OUTPUT_COMPONENTS", 0x8E86}, + {"GL_TESS_EVALUATION_SHADER", 0x8E87}, + {"GL_TESS_CONTROL_SHADER", 0x8E88}, + {"GL_MAX_TESS_CONTROL_UNIFORM_BLOCKS", 0x8E89}, + {"GL_MAX_TESS_EVALUATION_UNIFORM_BLOCKS", 0x8E8A}, + {"GL_COMPRESSED_RGBA_BPTC_UNORM_ARB", 0x8E8C}, + {"GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_ARB", 0x8E8D}, + {"GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_ARB", 0x8E8E}, + {"GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_ARB", 0x8E8F}, + {"GL_COVERAGE_COMPONENT_NV", 0x8ED0}, + {"GL_COVERAGE_COMPONENT4_NV", 0x8ED1}, + {"GL_COVERAGE_ATTACHMENT_NV", 0x8ED2}, + {"GL_COVERAGE_BUFFERS_NV", 0x8ED3}, + {"GL_COVERAGE_SAMPLES_NV", 0x8ED4}, + {"GL_COVERAGE_ALL_FRAGMENTS_NV", 0x8ED5}, + {"GL_COVERAGE_EDGE_FRAGMENTS_NV", 0x8ED6}, + {"GL_COVERAGE_AUTOMATIC_NV", 0x8ED7}, + {"GL_BUFFER_GPU_ADDRESS_NV", 0x8F1D}, + {"GL_VERTEX_ATTRIB_ARRAY_UNIFIED_NV", 0x8F1E}, + {"GL_ELEMENT_ARRAY_UNIFIED_NV", 0x8F1F}, + {"GL_VERTEX_ATTRIB_ARRAY_ADDRESS_NV", 0x8F20}, + {"GL_VERTEX_ARRAY_ADDRESS_NV", 0x8F21}, + {"GL_NORMAL_ARRAY_ADDRESS_NV", 0x8F22}, + {"GL_COLOR_ARRAY_ADDRESS_NV", 0x8F23}, + {"GL_INDEX_ARRAY_ADDRESS_NV", 0x8F24}, + {"GL_TEXTURE_COORD_ARRAY_ADDRESS_NV", 0x8F25}, + {"GL_EDGE_FLAG_ARRAY_ADDRESS_NV", 0x8F26}, + {"GL_SECONDARY_COLOR_ARRAY_ADDRESS_NV", 0x8F27}, + {"GL_FOG_COORD_ARRAY_ADDRESS_NV", 0x8F28}, + {"GL_ELEMENT_ARRAY_ADDRESS_NV", 0x8F29}, + {"GL_VERTEX_ATTRIB_ARRAY_LENGTH_NV", 0x8F2A}, + {"GL_VERTEX_ARRAY_LENGTH_NV", 0x8F2B}, + {"GL_NORMAL_ARRAY_LENGTH_NV", 0x8F2C}, + {"GL_COLOR_ARRAY_LENGTH_NV", 0x8F2D}, + {"GL_INDEX_ARRAY_LENGTH_NV", 0x8F2E}, + {"GL_TEXTURE_COORD_ARRAY_LENGTH_NV", 0x8F2F}, + {"GL_EDGE_FLAG_ARRAY_LENGTH_NV", 0x8F30}, + {"GL_SECONDARY_COLOR_ARRAY_LENGTH_NV", 0x8F31}, + {"GL_FOG_COORD_ARRAY_LENGTH_NV", 0x8F32}, + {"GL_ELEMENT_ARRAY_LENGTH_NV", 0x8F33}, + {"GL_GPU_ADDRESS_NV", 0x8F34}, + {"GL_MAX_SHADER_BUFFER_ADDRESS_NV", 0x8F35}, + {"GL_COPY_READ_BUFFER", 0x8F36}, + {"GL_COPY_READ_BUFFER_BINDING", 0x8F36}, + {"GL_COPY_WRITE_BUFFER", 0x8F37}, + {"GL_COPY_WRITE_BUFFER_BINDING", 0x8F37}, + {"GL_MAX_IMAGE_UNITS", 0x8F38}, + {"GL_MAX_IMAGE_UNITS_EXT", 0x8F38}, + {"GL_MAX_COMBINED_IMAGE_UNITS_AND_FRAGMENT_OUTPUTS", 0x8F39}, + {"GL_MAX_COMBINED_IMAGE_UNITS_AND_FRAGMENT_OUTPUTS_EXT", 0x8F39}, + {"GL_MAX_COMBINED_SHADER_OUTPUT_RESOURCES", 0x8F39}, + {"GL_IMAGE_BINDING_NAME", 0x8F3A}, + {"GL_IMAGE_BINDING_NAME_EXT", 0x8F3A}, + {"GL_IMAGE_BINDING_LEVEL", 0x8F3B}, + {"GL_IMAGE_BINDING_LEVEL_EXT", 0x8F3B}, + {"GL_IMAGE_BINDING_LAYERED", 0x8F3C}, + {"GL_IMAGE_BINDING_LAYERED_EXT", 0x8F3C}, + {"GL_IMAGE_BINDING_LAYER", 0x8F3D}, + {"GL_IMAGE_BINDING_LAYER_EXT", 0x8F3D}, + {"GL_IMAGE_BINDING_ACCESS", 0x8F3E}, + {"GL_IMAGE_BINDING_ACCESS_EXT", 0x8F3E}, + {"GL_DRAW_INDIRECT_BUFFER", 0x8F3F}, + {"GL_DRAW_INDIRECT_UNIFIED_NV", 0x8F40}, + {"GL_DRAW_INDIRECT_ADDRESS_NV", 0x8F41}, + {"GL_DRAW_INDIRECT_LENGTH_NV", 0x8F42}, + {"GL_DRAW_INDIRECT_BUFFER_BINDING", 0x8F43}, + {"GL_MAX_PROGRAM_SUBROUTINE_PARAMETERS_NV", 0x8F44}, + {"GL_MAX_PROGRAM_SUBROUTINE_NUM_NV", 0x8F45}, + {"GL_DOUBLE_MAT2", 0x8F46}, + {"GL_DOUBLE_MAT2_EXT", 0x8F46}, + {"GL_DOUBLE_MAT3", 0x8F47}, + {"GL_DOUBLE_MAT3_EXT", 0x8F47}, + {"GL_DOUBLE_MAT4", 0x8F48}, + {"GL_DOUBLE_MAT4_EXT", 0x8F48}, + {"GL_DOUBLE_MAT2x3", 0x8F49}, + {"GL_DOUBLE_MAT2x3_EXT", 0x8F49}, + {"GL_DOUBLE_MAT2x4", 0x8F4A}, + {"GL_DOUBLE_MAT2x4_EXT", 0x8F4A}, + {"GL_DOUBLE_MAT3x2", 0x8F4B}, + {"GL_DOUBLE_MAT3x2_EXT", 0x8F4B}, + {"GL_DOUBLE_MAT3x4", 0x8F4C}, + {"GL_DOUBLE_MAT3x4_EXT", 0x8F4C}, + {"GL_DOUBLE_MAT4x2", 0x8F4D}, + {"GL_DOUBLE_MAT4x2_EXT", 0x8F4D}, + {"GL_DOUBLE_MAT4x3", 0x8F4E}, + {"GL_DOUBLE_MAT4x3_EXT", 0x8F4E}, + {"GL_MALI_SHADER_BINARY_ARM", 0x8F60}, + {"GL_MALI_PROGRAM_BINARY_ARM", 0x8F61}, + {"GL_RED_SNORM", 0x8F90}, + {"GL_RG_SNORM", 0x8F91}, + {"GL_RGB_SNORM", 0x8F92}, + {"GL_RGBA_SNORM", 0x8F93}, + {"GL_R8_SNORM", 0x8F94}, + {"GL_RG8_SNORM", 0x8F95}, + {"GL_RGB8_SNORM", 0x8F96}, + {"GL_RGBA8_SNORM", 0x8F97}, + {"GL_R16_SNORM", 0x8F98}, + {"GL_RG16_SNORM", 0x8F99}, + {"GL_RGB16_SNORM", 0x8F9A}, + {"GL_RGBA16_SNORM", 0x8F9B}, + {"GL_SIGNED_NORMALIZED", 0x8F9C}, + {"GL_PRIMITIVE_RESTART", 0x8F9D}, + {"GL_PRIMITIVE_RESTART_INDEX", 0x8F9E}, + {"GL_MAX_PROGRAM_TEXTURE_GATHER_COMPONENTS_ARB", 0x8F9F}, + {"GL_PERFMON_GLOBAL_MODE_QCOM", 0x8FA0}, + {"GL_BINNING_CONTROL_HINT_QCOM", 0x8FB0}, + {"GL_CPU_OPTIMIZED_QCOM", 0x8FB1}, + {"GL_GPU_OPTIMIZED_QCOM", 0x8FB2}, + {"GL_RENDER_DIRECT_TO_FRAMEBUFFER_QCOM", 0x8FB3}, + {"GL_GPU_DISJOINT_EXT", 0x8FBB}, + {"GL_SHADER_BINARY_VIV", 0x8FC4}, + {"GL_INT8_NV", 0x8FE0}, + {"GL_INT8_VEC2_NV", 0x8FE1}, + {"GL_INT8_VEC3_NV", 0x8FE2}, + {"GL_INT8_VEC4_NV", 0x8FE3}, + {"GL_INT16_NV", 0x8FE4}, + {"GL_INT16_VEC2_NV", 0x8FE5}, + {"GL_INT16_VEC3_NV", 0x8FE6}, + {"GL_INT16_VEC4_NV", 0x8FE7}, + {"GL_INT64_VEC2_NV", 0x8FE9}, + {"GL_INT64_VEC3_NV", 0x8FEA}, + {"GL_INT64_VEC4_NV", 0x8FEB}, + {"GL_UNSIGNED_INT8_NV", 0x8FEC}, + {"GL_UNSIGNED_INT8_VEC2_NV", 0x8FED}, + {"GL_UNSIGNED_INT8_VEC3_NV", 0x8FEE}, + {"GL_UNSIGNED_INT8_VEC4_NV", 0x8FEF}, + {"GL_UNSIGNED_INT16_NV", 0x8FF0}, + {"GL_UNSIGNED_INT16_VEC2_NV", 0x8FF1}, + {"GL_UNSIGNED_INT16_VEC3_NV", 0x8FF2}, + {"GL_UNSIGNED_INT16_VEC4_NV", 0x8FF3}, + {"GL_UNSIGNED_INT64_VEC2_NV", 0x8FF5}, + {"GL_UNSIGNED_INT64_VEC3_NV", 0x8FF6}, + {"GL_UNSIGNED_INT64_VEC4_NV", 0x8FF7}, + {"GL_FLOAT16_NV", 0x8FF8}, + {"GL_FLOAT16_VEC2_NV", 0x8FF9}, + {"GL_FLOAT16_VEC3_NV", 0x8FFA}, + {"GL_FLOAT16_VEC4_NV", 0x8FFB}, + {"GL_DOUBLE_VEC2", 0x8FFC}, + {"GL_DOUBLE_VEC2_EXT", 0x8FFC}, + {"GL_DOUBLE_VEC3", 0x8FFD}, + {"GL_DOUBLE_VEC3_EXT", 0x8FFD}, + {"GL_DOUBLE_VEC4", 0x8FFE}, + {"GL_DOUBLE_VEC4_EXT", 0x8FFE}, + {"GL_SAMPLER_BUFFER_AMD", 0x9001}, + {"GL_INT_SAMPLER_BUFFER_AMD", 0x9002}, + {"GL_UNSIGNED_INT_SAMPLER_BUFFER_AMD", 0x9003}, + {"GL_TESSELLATION_MODE_AMD", 0x9004}, + {"GL_TESSELLATION_FACTOR_AMD", 0x9005}, + {"GL_DISCRETE_AMD", 0x9006}, + {"GL_CONTINUOUS_AMD", 0x9007}, + {"GL_TEXTURE_CUBE_MAP_ARRAY", 0x9009}, + {"GL_TEXTURE_CUBE_MAP_ARRAY_ARB", 0x9009}, + {"GL_TEXTURE_BINDING_CUBE_MAP_ARRAY", 0x900A}, + {"GL_TEXTURE_BINDING_CUBE_MAP_ARRAY_ARB", 0x900A}, + {"GL_PROXY_TEXTURE_CUBE_MAP_ARRAY", 0x900B}, + {"GL_PROXY_TEXTURE_CUBE_MAP_ARRAY_ARB", 0x900B}, + {"GL_SAMPLER_CUBE_MAP_ARRAY", 0x900C}, + {"GL_SAMPLER_CUBE_MAP_ARRAY_ARB", 0x900C}, + {"GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW", 0x900D}, + {"GL_SAMPLER_CUBE_MAP_ARRAY_SHADOW_ARB", 0x900D}, + {"GL_INT_SAMPLER_CUBE_MAP_ARRAY", 0x900E}, + {"GL_INT_SAMPLER_CUBE_MAP_ARRAY_ARB", 0x900E}, + {"GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY", 0x900F}, + {"GL_UNSIGNED_INT_SAMPLER_CUBE_MAP_ARRAY_ARB", 0x900F}, + {"GL_ALPHA_SNORM", 0x9010}, + {"GL_LUMINANCE_SNORM", 0x9011}, + {"GL_LUMINANCE_ALPHA_SNORM", 0x9012}, + {"GL_INTENSITY_SNORM", 0x9013}, + {"GL_ALPHA8_SNORM", 0x9014}, + {"GL_LUMINANCE8_SNORM", 0x9015}, + {"GL_LUMINANCE8_ALPHA8_SNORM", 0x9016}, + {"GL_INTENSITY8_SNORM", 0x9017}, + {"GL_ALPHA16_SNORM", 0x9018}, + {"GL_LUMINANCE16_SNORM", 0x9019}, + {"GL_LUMINANCE16_ALPHA16_SNORM", 0x901A}, + {"GL_INTENSITY16_SNORM", 0x901B}, + {"GL_FACTOR_MIN_AMD", 0x901C}, + {"GL_FACTOR_MAX_AMD", 0x901D}, + {"GL_DEPTH_CLAMP_NEAR_AMD", 0x901E}, + {"GL_DEPTH_CLAMP_FAR_AMD", 0x901F}, + {"GL_VIDEO_BUFFER_NV", 0x9020}, + {"GL_VIDEO_BUFFER_BINDING_NV", 0x9021}, + {"GL_FIELD_UPPER_NV", 0x9022}, + {"GL_FIELD_LOWER_NV", 0x9023}, + {"GL_NUM_VIDEO_CAPTURE_STREAMS_NV", 0x9024}, + {"GL_NEXT_VIDEO_CAPTURE_BUFFER_STATUS_NV", 0x9025}, + {"GL_VIDEO_CAPTURE_TO_422_SUPPORTED_NV", 0x9026}, + {"GL_LAST_VIDEO_CAPTURE_STATUS_NV", 0x9027}, + {"GL_VIDEO_BUFFER_PITCH_NV", 0x9028}, + {"GL_VIDEO_COLOR_CONVERSION_MATRIX_NV", 0x9029}, + {"GL_VIDEO_COLOR_CONVERSION_MAX_NV", 0x902A}, + {"GL_VIDEO_COLOR_CONVERSION_MIN_NV", 0x902B}, + {"GL_VIDEO_COLOR_CONVERSION_OFFSET_NV", 0x902C}, + {"GL_VIDEO_BUFFER_INTERNAL_FORMAT_NV", 0x902D}, + {"GL_PARTIAL_SUCCESS_NV", 0x902E}, + {"GL_SUCCESS_NV", 0x902F}, + {"GL_FAILURE_NV", 0x9030}, + {"GL_YCBYCR8_422_NV", 0x9031}, + {"GL_YCBAYCR8A_4224_NV", 0x9032}, + {"GL_Z6Y10Z6CB10Z6Y10Z6CR10_422_NV", 0x9033}, + {"GL_Z6Y10Z6CB10Z6A10Z6Y10Z6CR10Z6A10_4224_NV", 0x9034}, + {"GL_Z4Y12Z4CB12Z4Y12Z4CR12_422_NV", 0x9035}, + {"GL_Z4Y12Z4CB12Z4A12Z4Y12Z4CR12Z4A12_4224_NV", 0x9036}, + {"GL_Z4Y12Z4CB12Z4CR12_444_NV", 0x9037}, + {"GL_VIDEO_CAPTURE_FRAME_WIDTH_NV", 0x9038}, + {"GL_VIDEO_CAPTURE_FRAME_HEIGHT_NV", 0x9039}, + {"GL_VIDEO_CAPTURE_FIELD_UPPER_HEIGHT_NV", 0x903A}, + {"GL_VIDEO_CAPTURE_FIELD_LOWER_HEIGHT_NV", 0x903B}, + {"GL_VIDEO_CAPTURE_SURFACE_ORIGIN_NV", 0x903C}, + {"GL_TEXTURE_COVERAGE_SAMPLES_NV", 0x9045}, + {"GL_TEXTURE_COLOR_SAMPLES_NV", 0x9046}, + {"GL_IMAGE_1D", 0x904C}, + {"GL_IMAGE_1D_EXT", 0x904C}, + {"GL_IMAGE_2D", 0x904D}, + {"GL_IMAGE_2D_EXT", 0x904D}, + {"GL_IMAGE_3D", 0x904E}, + {"GL_IMAGE_3D_EXT", 0x904E}, + {"GL_IMAGE_2D_RECT", 0x904F}, + {"GL_IMAGE_2D_RECT_EXT", 0x904F}, + {"GL_IMAGE_CUBE", 0x9050}, + {"GL_IMAGE_CUBE_EXT", 0x9050}, + {"GL_IMAGE_BUFFER", 0x9051}, + {"GL_IMAGE_BUFFER_EXT", 0x9051}, + {"GL_IMAGE_1D_ARRAY", 0x9052}, + {"GL_IMAGE_1D_ARRAY_EXT", 0x9052}, + {"GL_IMAGE_2D_ARRAY", 0x9053}, + {"GL_IMAGE_2D_ARRAY_EXT", 0x9053}, + {"GL_IMAGE_CUBE_MAP_ARRAY", 0x9054}, + {"GL_IMAGE_CUBE_MAP_ARRAY_EXT", 0x9054}, + {"GL_IMAGE_2D_MULTISAMPLE", 0x9055}, + {"GL_IMAGE_2D_MULTISAMPLE_EXT", 0x9055}, + {"GL_IMAGE_2D_MULTISAMPLE_ARRAY", 0x9056}, + {"GL_IMAGE_2D_MULTISAMPLE_ARRAY_EXT", 0x9056}, + {"GL_INT_IMAGE_1D", 0x9057}, + {"GL_INT_IMAGE_1D_EXT", 0x9057}, + {"GL_INT_IMAGE_2D", 0x9058}, + {"GL_INT_IMAGE_2D_EXT", 0x9058}, + {"GL_INT_IMAGE_3D", 0x9059}, + {"GL_INT_IMAGE_3D_EXT", 0x9059}, + {"GL_INT_IMAGE_2D_RECT", 0x905A}, + {"GL_INT_IMAGE_2D_RECT_EXT", 0x905A}, + {"GL_INT_IMAGE_CUBE", 0x905B}, + {"GL_INT_IMAGE_CUBE_EXT", 0x905B}, + {"GL_INT_IMAGE_BUFFER", 0x905C}, + {"GL_INT_IMAGE_BUFFER_EXT", 0x905C}, + {"GL_INT_IMAGE_1D_ARRAY", 0x905D}, + {"GL_INT_IMAGE_1D_ARRAY_EXT", 0x905D}, + {"GL_INT_IMAGE_2D_ARRAY", 0x905E}, + {"GL_INT_IMAGE_2D_ARRAY_EXT", 0x905E}, + {"GL_INT_IMAGE_CUBE_MAP_ARRAY", 0x905F}, + {"GL_INT_IMAGE_CUBE_MAP_ARRAY_EXT", 0x905F}, + {"GL_INT_IMAGE_2D_MULTISAMPLE", 0x9060}, + {"GL_INT_IMAGE_2D_MULTISAMPLE_EXT", 0x9060}, + {"GL_INT_IMAGE_2D_MULTISAMPLE_ARRAY", 0x9061}, + {"GL_INT_IMAGE_2D_MULTISAMPLE_ARRAY_EXT", 0x9061}, + {"GL_UNSIGNED_INT_IMAGE_1D", 0x9062}, + {"GL_UNSIGNED_INT_IMAGE_1D_EXT", 0x9062}, + {"GL_UNSIGNED_INT_IMAGE_2D", 0x9063}, + {"GL_UNSIGNED_INT_IMAGE_2D_EXT", 0x9063}, + {"GL_UNSIGNED_INT_IMAGE_3D", 0x9064}, + {"GL_UNSIGNED_INT_IMAGE_3D_EXT", 0x9064}, + {"GL_UNSIGNED_INT_IMAGE_2D_RECT", 0x9065}, + {"GL_UNSIGNED_INT_IMAGE_2D_RECT_EXT", 0x9065}, + {"GL_UNSIGNED_INT_IMAGE_CUBE", 0x9066}, + {"GL_UNSIGNED_INT_IMAGE_CUBE_EXT", 0x9066}, + {"GL_UNSIGNED_INT_IMAGE_BUFFER", 0x9067}, + {"GL_UNSIGNED_INT_IMAGE_BUFFER_EXT", 0x9067}, + {"GL_UNSIGNED_INT_IMAGE_1D_ARRAY", 0x9068}, + {"GL_UNSIGNED_INT_IMAGE_1D_ARRAY_EXT", 0x9068}, + {"GL_UNSIGNED_INT_IMAGE_2D_ARRAY", 0x9069}, + {"GL_UNSIGNED_INT_IMAGE_2D_ARRAY_EXT", 0x9069}, + {"GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY", 0x906A}, + {"GL_UNSIGNED_INT_IMAGE_CUBE_MAP_ARRAY_EXT", 0x906A}, + {"GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE", 0x906B}, + {"GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_EXT", 0x906B}, + {"GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_ARRAY", 0x906C}, + {"GL_UNSIGNED_INT_IMAGE_2D_MULTISAMPLE_ARRAY_EXT", 0x906C}, + {"GL_MAX_IMAGE_SAMPLES", 0x906D}, + {"GL_MAX_IMAGE_SAMPLES_EXT", 0x906D}, + {"GL_IMAGE_BINDING_FORMAT", 0x906E}, + {"GL_IMAGE_BINDING_FORMAT_EXT", 0x906E}, + {"GL_RGB10_A2UI", 0x906F}, + {"GL_PATH_FORMAT_SVG_NV", 0x9070}, + {"GL_PATH_FORMAT_PS_NV", 0x9071}, + {"GL_STANDARD_FONT_NAME_NV", 0x9072}, + {"GL_SYSTEM_FONT_NAME_NV", 0x9073}, + {"GL_FILE_NAME_NV", 0x9074}, + {"GL_PATH_STROKE_WIDTH_NV", 0x9075}, + {"GL_PATH_END_CAPS_NV", 0x9076}, + {"GL_PATH_INITIAL_END_CAP_NV", 0x9077}, + {"GL_PATH_TERMINAL_END_CAP_NV", 0x9078}, + {"GL_PATH_JOIN_STYLE_NV", 0x9079}, + {"GL_PATH_MITER_LIMIT_NV", 0x907A}, + {"GL_PATH_DASH_CAPS_NV", 0x907B}, + {"GL_PATH_INITIAL_DASH_CAP_NV", 0x907C}, + {"GL_PATH_TERMINAL_DASH_CAP_NV", 0x907D}, + {"GL_PATH_DASH_OFFSET_NV", 0x907E}, + {"GL_PATH_CLIENT_LENGTH_NV", 0x907F}, + {"GL_PATH_FILL_MODE_NV", 0x9080}, + {"GL_PATH_FILL_MASK_NV", 0x9081}, + {"GL_PATH_FILL_COVER_MODE_NV", 0x9082}, + {"GL_PATH_STROKE_COVER_MODE_NV", 0x9083}, + {"GL_PATH_STROKE_MASK_NV", 0x9084}, + {"GL_COUNT_UP_NV", 0x9088}, + {"GL_COUNT_DOWN_NV", 0x9089}, + {"GL_PATH_OBJECT_BOUNDING_BOX_NV", 0x908A}, + {"GL_CONVEX_HULL_NV", 0x908B}, + {"GL_BOUNDING_BOX_NV", 0x908D}, + {"GL_TRANSLATE_X_NV", 0x908E}, + {"GL_TRANSLATE_Y_NV", 0x908F}, + {"GL_TRANSLATE_2D_NV", 0x9090}, + {"GL_TRANSLATE_3D_NV", 0x9091}, + {"GL_AFFINE_2D_NV", 0x9092}, + {"GL_AFFINE_3D_NV", 0x9094}, + {"GL_TRANSPOSE_AFFINE_2D_NV", 0x9096}, + {"GL_TRANSPOSE_AFFINE_3D_NV", 0x9098}, + {"GL_UTF8_NV", 0x909A}, + {"GL_UTF16_NV", 0x909B}, + {"GL_BOUNDING_BOX_OF_BOUNDING_BOXES_NV", 0x909C}, + {"GL_PATH_COMMAND_COUNT_NV", 0x909D}, + {"GL_PATH_COORD_COUNT_NV", 0x909E}, + {"GL_PATH_DASH_ARRAY_COUNT_NV", 0x909F}, + {"GL_PATH_COMPUTED_LENGTH_NV", 0x90A0}, + {"GL_PATH_FILL_BOUNDING_BOX_NV", 0x90A1}, + {"GL_PATH_STROKE_BOUNDING_BOX_NV", 0x90A2}, + {"GL_SQUARE_NV", 0x90A3}, + {"GL_ROUND_NV", 0x90A4}, + {"GL_TRIANGULAR_NV", 0x90A5}, + {"GL_BEVEL_NV", 0x90A6}, + {"GL_MITER_REVERT_NV", 0x90A7}, + {"GL_MITER_TRUNCATE_NV", 0x90A8}, + {"GL_SKIP_MISSING_GLYPH_NV", 0x90A9}, + {"GL_USE_MISSING_GLYPH_NV", 0x90AA}, + {"GL_PATH_ERROR_POSITION_NV", 0x90AB}, + {"GL_PATH_FOG_GEN_MODE_NV", 0x90AC}, + {"GL_ACCUM_ADJACENT_PAIRS_NV", 0x90AD}, + {"GL_ADJACENT_PAIRS_NV", 0x90AE}, + {"GL_FIRST_TO_REST_NV", 0x90AF}, + {"GL_PATH_GEN_MODE_NV", 0x90B0}, + {"GL_PATH_GEN_COEFF_NV", 0x90B1}, + {"GL_PATH_GEN_COLOR_FORMAT_NV", 0x90B2}, + {"GL_PATH_GEN_COMPONENTS_NV", 0x90B3}, + {"GL_PATH_DASH_OFFSET_RESET_NV", 0x90B4}, + {"GL_MOVE_TO_RESETS_NV", 0x90B5}, + {"GL_MOVE_TO_CONTINUES_NV", 0x90B6}, + {"GL_PATH_STENCIL_FUNC_NV", 0x90B7}, + {"GL_PATH_STENCIL_REF_NV", 0x90B8}, + {"GL_PATH_STENCIL_VALUE_MASK_NV", 0x90B9}, + {"GL_SCALED_RESOLVE_FASTEST_EXT", 0x90BA}, + {"GL_SCALED_RESOLVE_NICEST_EXT", 0x90BB}, + {"GL_MIN_MAP_BUFFER_ALIGNMENT", 0x90BC}, + {"GL_PATH_STENCIL_DEPTH_OFFSET_FACTOR_NV", 0x90BD}, + {"GL_PATH_STENCIL_DEPTH_OFFSET_UNITS_NV", 0x90BE}, + {"GL_PATH_COVER_DEPTH_FUNC_NV", 0x90BF}, + {"GL_IMAGE_FORMAT_COMPATIBILITY_TYPE", 0x90C7}, + {"GL_IMAGE_FORMAT_COMPATIBILITY_BY_SIZE", 0x90C8}, + {"GL_IMAGE_FORMAT_COMPATIBILITY_BY_CLASS", 0x90C9}, + {"GL_MAX_VERTEX_IMAGE_UNIFORMS", 0x90CA}, + {"GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS", 0x90CB}, + {"GL_MAX_TESS_EVALUATION_IMAGE_UNIFORMS", 0x90CC}, + {"GL_MAX_GEOMETRY_IMAGE_UNIFORMS", 0x90CD}, + {"GL_MAX_FRAGMENT_IMAGE_UNIFORMS", 0x90CE}, + {"GL_MAX_COMBINED_IMAGE_UNIFORMS", 0x90CF}, + {"GL_MAX_DEEP_3D_TEXTURE_WIDTH_HEIGHT_NV", 0x90D0}, + {"GL_MAX_DEEP_3D_TEXTURE_DEPTH_NV", 0x90D1}, + {"GL_SHADER_STORAGE_BUFFER", 0x90D2}, + {"GL_SHADER_STORAGE_BUFFER_BINDING", 0x90D3}, + {"GL_SHADER_STORAGE_BUFFER_START", 0x90D4}, + {"GL_SHADER_STORAGE_BUFFER_SIZE", 0x90D5}, + {"GL_MAX_VERTEX_SHADER_STORAGE_BLOCKS", 0x90D6}, + {"GL_MAX_GEOMETRY_SHADER_STORAGE_BLOCKS", 0x90D7}, + {"GL_MAX_TESS_CONTROL_SHADER_STORAGE_BLOCKS", 0x90D8}, + {"GL_MAX_TESS_EVALUATION_SHADER_STORAGE_BLOCKS", 0x90D9}, + {"GL_MAX_FRAGMENT_SHADER_STORAGE_BLOCKS", 0x90DA}, + {"GL_MAX_COMPUTE_SHADER_STORAGE_BLOCKS", 0x90DB}, + {"GL_MAX_COMBINED_SHADER_STORAGE_BLOCKS", 0x90DC}, + {"GL_MAX_SHADER_STORAGE_BUFFER_BINDINGS", 0x90DD}, + {"GL_MAX_SHADER_STORAGE_BLOCK_SIZE", 0x90DE}, + {"GL_SHADER_STORAGE_BUFFER_OFFSET_ALIGNMENT", 0x90DF}, + {"GL_SYNC_X11_FENCE_EXT", 0x90E1}, + {"GL_DEPTH_STENCIL_TEXTURE_MODE", 0x90EA}, + {"GL_MAX_COMPUTE_FIXED_GROUP_INVOCATIONS_ARB", 0x90EB}, + {"GL_MAX_COMPUTE_LOCAL_INVOCATIONS", 0x90EB}, + {"GL_UNIFORM_BLOCK_REFERENCED_BY_COMPUTE_SHADER", 0x90EC}, + {"GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_COMPUTE_SHADER", 0x90ED}, + {"GL_DISPATCH_INDIRECT_BUFFER", 0x90EE}, + {"GL_DISPATCH_INDIRECT_BUFFER_BINDING", 0x90EF}, + {"GL_COLOR_ATTACHMENT_EXT", 0x90F0}, + {"GL_MULTIVIEW_EXT", 0x90F1}, + {"GL_MAX_MULTIVIEW_BUFFERS_EXT", 0x90F2}, + {"GL_COMPUTE_PROGRAM_NV", 0x90FB}, + {"GL_COMPUTE_PROGRAM_PARAMETER_BUFFER_NV", 0x90FC}, + {"GL_TEXTURE_2D_MULTISAMPLE", 0x9100}, + {"GL_PROXY_TEXTURE_2D_MULTISAMPLE", 0x9101}, + {"GL_TEXTURE_2D_MULTISAMPLE_ARRAY", 0x9102}, + {"GL_PROXY_TEXTURE_2D_MULTISAMPLE_ARRAY", 0x9103}, + {"GL_TEXTURE_BINDING_2D_MULTISAMPLE", 0x9104}, + {"GL_TEXTURE_BINDING_2D_MULTISAMPLE_ARRAY", 0x9105}, + {"GL_TEXTURE_SAMPLES", 0x9106}, + {"GL_TEXTURE_FIXED_SAMPLE_LOCATIONS", 0x9107}, + {"GL_SAMPLER_2D_MULTISAMPLE", 0x9108}, + {"GL_INT_SAMPLER_2D_MULTISAMPLE", 0x9109}, + {"GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE", 0x910A}, + {"GL_SAMPLER_2D_MULTISAMPLE_ARRAY", 0x910B}, + {"GL_INT_SAMPLER_2D_MULTISAMPLE_ARRAY", 0x910C}, + {"GL_UNSIGNED_INT_SAMPLER_2D_MULTISAMPLE_ARRAY", 0x910D}, + {"GL_MAX_COLOR_TEXTURE_SAMPLES", 0x910E}, + {"GL_MAX_DEPTH_TEXTURE_SAMPLES", 0x910F}, + {"GL_MAX_INTEGER_SAMPLES", 0x9110}, + {"GL_MAX_SERVER_WAIT_TIMEOUT", 0x9111}, + {"GL_MAX_SERVER_WAIT_TIMEOUT_APPLE", 0x9111}, + {"GL_OBJECT_TYPE", 0x9112}, + {"GL_OBJECT_TYPE_APPLE", 0x9112}, + {"GL_SYNC_CONDITION", 0x9113}, + {"GL_SYNC_CONDITION_APPLE", 0x9113}, + {"GL_SYNC_STATUS", 0x9114}, + {"GL_SYNC_STATUS_APPLE", 0x9114}, + {"GL_SYNC_FLAGS", 0x9115}, + {"GL_SYNC_FLAGS_APPLE", 0x9115}, + {"GL_SYNC_FENCE", 0x9116}, + {"GL_SYNC_FENCE_APPLE", 0x9116}, + {"GL_SYNC_GPU_COMMANDS_COMPLETE", 0x9117}, + {"GL_SYNC_GPU_COMMANDS_COMPLETE_APPLE", 0x9117}, + {"GL_UNSIGNALED", 0x9118}, + {"GL_UNSIGNALED_APPLE", 0x9118}, + {"GL_SIGNALED", 0x9119}, + {"GL_SIGNALED_APPLE", 0x9119}, + {"GL_ALREADY_SIGNALED", 0x911A}, + {"GL_ALREADY_SIGNALED_APPLE", 0x911A}, + {"GL_TIMEOUT_EXPIRED", 0x911B}, + {"GL_TIMEOUT_EXPIRED_APPLE", 0x911B}, + {"GL_CONDITION_SATISFIED", 0x911C}, + {"GL_CONDITION_SATISFIED_APPLE", 0x911C}, + {"GL_WAIT_FAILED", 0x911D}, + {"GL_WAIT_FAILED_APPLE", 0x911D}, + {"GL_BUFFER_ACCESS_FLAGS", 0x911F}, + {"GL_BUFFER_MAP_LENGTH", 0x9120}, + {"GL_BUFFER_MAP_OFFSET", 0x9121}, + {"GL_MAX_VERTEX_OUTPUT_COMPONENTS", 0x9122}, + {"GL_MAX_GEOMETRY_INPUT_COMPONENTS", 0x9123}, + {"GL_MAX_GEOMETRY_OUTPUT_COMPONENTS", 0x9124}, + {"GL_MAX_FRAGMENT_INPUT_COMPONENTS", 0x9125}, + {"GL_CONTEXT_PROFILE_MASK", 0x9126}, + {"GL_UNPACK_COMPRESSED_BLOCK_WIDTH", 0x9127}, + {"GL_UNPACK_COMPRESSED_BLOCK_HEIGHT", 0x9128}, + {"GL_UNPACK_COMPRESSED_BLOCK_DEPTH", 0x9129}, + {"GL_UNPACK_COMPRESSED_BLOCK_SIZE", 0x912A}, + {"GL_PACK_COMPRESSED_BLOCK_WIDTH", 0x912B}, + {"GL_PACK_COMPRESSED_BLOCK_HEIGHT", 0x912C}, + {"GL_PACK_COMPRESSED_BLOCK_DEPTH", 0x912D}, + {"GL_PACK_COMPRESSED_BLOCK_SIZE", 0x912E}, + {"GL_TEXTURE_IMMUTABLE_FORMAT", 0x912F}, + {"GL_SGX_PROGRAM_BINARY_IMG", 0x9130}, + {"GL_RENDERBUFFER_SAMPLES_IMG", 0x9133}, + {"GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_IMG", 0x9134}, + {"GL_MAX_SAMPLES_IMG", 0x9135}, + {"GL_TEXTURE_SAMPLES_IMG", 0x9136}, + {"GL_COMPRESSED_RGBA_PVRTC_2BPPV2_IMG", 0x9137}, + {"GL_COMPRESSED_RGBA_PVRTC_4BPPV2_IMG", 0x9138}, + {"GL_MAX_DEBUG_MESSAGE_LENGTH", 0x9143}, + {"GL_MAX_DEBUG_MESSAGE_LENGTH_AMD", 0x9143}, + {"GL_MAX_DEBUG_MESSAGE_LENGTH_ARB", 0x9143}, + {"GL_MAX_DEBUG_MESSAGE_LENGTH_KHR", 0x9143}, + {"GL_MAX_DEBUG_LOGGED_MESSAGES", 0x9144}, + {"GL_MAX_DEBUG_LOGGED_MESSAGES_AMD", 0x9144}, + {"GL_MAX_DEBUG_LOGGED_MESSAGES_ARB", 0x9144}, + {"GL_MAX_DEBUG_LOGGED_MESSAGES_KHR", 0x9144}, + {"GL_DEBUG_LOGGED_MESSAGES", 0x9145}, + {"GL_DEBUG_LOGGED_MESSAGES_AMD", 0x9145}, + {"GL_DEBUG_LOGGED_MESSAGES_ARB", 0x9145}, + {"GL_DEBUG_LOGGED_MESSAGES_KHR", 0x9145}, + {"GL_DEBUG_SEVERITY_HIGH", 0x9146}, + {"GL_DEBUG_SEVERITY_HIGH_AMD", 0x9146}, + {"GL_DEBUG_SEVERITY_HIGH_ARB", 0x9146}, + {"GL_DEBUG_SEVERITY_HIGH_KHR", 0x9146}, + {"GL_DEBUG_SEVERITY_MEDIUM", 0x9147}, + {"GL_DEBUG_SEVERITY_MEDIUM_AMD", 0x9147}, + {"GL_DEBUG_SEVERITY_MEDIUM_ARB", 0x9147}, + {"GL_DEBUG_SEVERITY_MEDIUM_KHR", 0x9147}, + {"GL_DEBUG_SEVERITY_LOW", 0x9148}, + {"GL_DEBUG_SEVERITY_LOW_AMD", 0x9148}, + {"GL_DEBUG_SEVERITY_LOW_ARB", 0x9148}, + {"GL_DEBUG_SEVERITY_LOW_KHR", 0x9148}, + {"GL_DEBUG_CATEGORY_API_ERROR_AMD", 0x9149}, + {"GL_DEBUG_CATEGORY_WINDOW_SYSTEM_AMD", 0x914A}, + {"GL_DEBUG_CATEGORY_DEPRECATION_AMD", 0x914B}, + {"GL_DEBUG_CATEGORY_UNDEFINED_BEHAVIOR_AMD", 0x914C}, + {"GL_DEBUG_CATEGORY_PERFORMANCE_AMD", 0x914D}, + {"GL_DEBUG_CATEGORY_SHADER_COMPILER_AMD", 0x914E}, + {"GL_DEBUG_CATEGORY_APPLICATION_AMD", 0x914F}, + {"GL_DEBUG_CATEGORY_OTHER_AMD", 0x9150}, + {"GL_BUFFER_OBJECT_EXT", 0x9151}, + {"GL_DATA_BUFFER_AMD", 0x9151}, + {"GL_PERFORMANCE_MONITOR_AMD", 0x9152}, + {"GL_QUERY_OBJECT_AMD", 0x9153}, + {"GL_QUERY_OBJECT_EXT", 0x9153}, + {"GL_VERTEX_ARRAY_OBJECT_AMD", 0x9154}, + {"GL_VERTEX_ARRAY_OBJECT_EXT", 0x9154}, + {"GL_SAMPLER_OBJECT_AMD", 0x9155}, + {"GL_EXTERNAL_VIRTUAL_MEMORY_BUFFER_AMD", 0x9160}, + {"GL_QUERY_BUFFER", 0x9192}, + {"GL_QUERY_BUFFER_AMD", 0x9192}, + {"GL_QUERY_BUFFER_BINDING", 0x9193}, + {"GL_QUERY_BUFFER_BINDING_AMD", 0x9193}, + {"GL_QUERY_RESULT_NO_WAIT", 0x9194}, + {"GL_QUERY_RESULT_NO_WAIT_AMD", 0x9194}, + {"GL_VIRTUAL_PAGE_SIZE_X_ARB", 0x9195}, + {"GL_VIRTUAL_PAGE_SIZE_X_AMD", 0x9195}, + {"GL_VIRTUAL_PAGE_SIZE_Y_ARB", 0x9196}, + {"GL_VIRTUAL_PAGE_SIZE_Y_AMD", 0x9196}, + {"GL_VIRTUAL_PAGE_SIZE_Z_ARB", 0x9197}, + {"GL_VIRTUAL_PAGE_SIZE_Z_AMD", 0x9197}, + {"GL_MAX_SPARSE_TEXTURE_SIZE_ARB", 0x9198}, + {"GL_MAX_SPARSE_TEXTURE_SIZE_AMD", 0x9198}, + {"GL_MAX_SPARSE_3D_TEXTURE_SIZE_ARB", 0x9199}, + {"GL_MAX_SPARSE_3D_TEXTURE_SIZE_AMD", 0x9199}, + {"GL_MAX_SPARSE_ARRAY_TEXTURE_LAYERS_ARB", 0x919A}, + {"GL_MAX_SPARSE_ARRAY_TEXTURE_LAYERS", 0x919A}, + {"GL_MIN_SPARSE_LEVEL_ARB", 0x919B}, + {"GL_MIN_SPARSE_LEVEL_AMD", 0x919B}, + {"GL_MIN_LOD_WARNING_AMD", 0x919C}, + {"GL_TEXTURE_BUFFER_OFFSET", 0x919D}, + {"GL_TEXTURE_BUFFER_SIZE", 0x919E}, + {"GL_TEXTURE_BUFFER_OFFSET_ALIGNMENT", 0x919F}, + {"GL_VERTEX_ELEMENT_SWIZZLE_AMD", 0x91A4}, + {"GL_VERTEX_ID_SWIZZLE_AMD", 0x91A5}, + {"GL_TEXTURE_SPARSE_ARB", 0x91A6}, + {"GL_VIRTUAL_PAGE_SIZE_INDEX_ARB", 0x91A7}, + {"GL_NUM_VIRTUAL_PAGE_SIZES_ARB", 0x91A8}, + {"GL_SPARSE_TEXTURE_FULL_ARRAY_CUBE_MIPMAPS_ARB", 0x91A9}, + {"GL_COMPUTE_SHADER", 0x91B9}, + {"GL_MAX_COMPUTE_UNIFORM_BLOCKS", 0x91BB}, + {"GL_MAX_COMPUTE_TEXTURE_IMAGE_UNITS", 0x91BC}, + {"GL_MAX_COMPUTE_IMAGE_UNIFORMS", 0x91BD}, + {"GL_MAX_COMPUTE_WORK_GROUP_COUNT", 0x91BE}, + {"GL_MAX_COMPUTE_FIXED_GROUP_SIZE_ARB", 0x91BF}, + {"GL_MAX_COMPUTE_WORK_GROUP_SIZE", 0x91BF}, + {"GL_UNPACK_FLIP_Y_WEBGL", 0x9240}, + {"GL_UNPACK_PREMULTIPLY_ALPHA_WEBGL", 0x9241}, + {"GL_CONTEXT_LOST_WEBGL", 0x9242}, + {"GL_UNPACK_COLORSPACE_CONVERSION_WEBGL", 0x9243}, + {"GL_BROWSER_DEFAULT_WEBGL", 0x9244}, + {"GL_SHADER_BINARY_DMP", 0x9250}, + {"GL_GCCSO_SHADER_BINARY_FJ", 0x9260}, + {"GL_COMPRESSED_R11_EAC", 0x9270}, + {"GL_COMPRESSED_R11_EAC_OES", 0x9270}, + {"GL_COMPRESSED_SIGNED_R11_EAC", 0x9271}, + {"GL_COMPRESSED_SIGNED_R11_EAC_OES", 0x9271}, + {"GL_COMPRESSED_RG11_EAC", 0x9272}, + {"GL_COMPRESSED_RG11_EAC_OES", 0x9272}, + {"GL_COMPRESSED_SIGNED_RG11_EAC", 0x9273}, + {"GL_COMPRESSED_SIGNED_RG11_EAC_OES", 0x9273}, + {"GL_COMPRESSED_RGB8_ETC2", 0x9274}, + {"GL_COMPRESSED_RGB8_ETC2_OES", 0x9274}, + {"GL_COMPRESSED_SRGB8_ETC2", 0x9275}, + {"GL_COMPRESSED_SRGB8_ETC2_OES", 0x9275}, + {"GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2", 0x9276}, + {"GL_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2_OES", 0x9276}, + {"GL_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2", 0x9277}, + {"GL_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2_OES", 0x9277}, + {"GL_COMPRESSED_RGBA8_ETC2_EAC", 0x9278}, + {"GL_COMPRESSED_RGBA8_ETC2_EAC_OES", 0x9278}, + {"GL_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC", 0x9279}, + {"GL_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC_OES", 0x9279}, + {"GL_BLEND_PREMULTIPLIED_SRC_NV", 0x9280}, + {"GL_BLEND_OVERLAP_NV", 0x9281}, + {"GL_UNCORRELATED_NV", 0x9282}, + {"GL_DISJOINT_NV", 0x9283}, + {"GL_CONJOINT_NV", 0x9284}, + {"GL_BLEND_ADVANCED_COHERENT_NV", 0x9285}, + {"GL_SRC_NV", 0x9286}, + {"GL_DST_NV", 0x9287}, + {"GL_SRC_OVER_NV", 0x9288}, + {"GL_DST_OVER_NV", 0x9289}, + {"GL_SRC_IN_NV", 0x928A}, + {"GL_DST_IN_NV", 0x928B}, + {"GL_SRC_OUT_NV", 0x928C}, + {"GL_DST_OUT_NV", 0x928D}, + {"GL_SRC_ATOP_NV", 0x928E}, + {"GL_DST_ATOP_NV", 0x928F}, + {"GL_PLUS_NV", 0x9291}, + {"GL_PLUS_DARKER_NV", 0x9292}, + {"GL_MULTIPLY_NV", 0x9294}, + {"GL_SCREEN_NV", 0x9295}, + {"GL_OVERLAY_NV", 0x9296}, + {"GL_DARKEN_NV", 0x9297}, + {"GL_LIGHTEN_NV", 0x9298}, + {"GL_COLORDODGE_NV", 0x9299}, + {"GL_COLORBURN_NV", 0x929A}, + {"GL_HARDLIGHT_NV", 0x929B}, + {"GL_SOFTLIGHT_NV", 0x929C}, + {"GL_DIFFERENCE_NV", 0x929E}, + {"GL_MINUS_NV", 0x929F}, + {"GL_EXCLUSION_NV", 0x92A0}, + {"GL_CONTRAST_NV", 0x92A1}, + {"GL_INVERT_RGB_NV", 0x92A3}, + {"GL_LINEARDODGE_NV", 0x92A4}, + {"GL_LINEARBURN_NV", 0x92A5}, + {"GL_VIVIDLIGHT_NV", 0x92A6}, + {"GL_LINEARLIGHT_NV", 0x92A7}, + {"GL_PINLIGHT_NV", 0x92A8}, + {"GL_HARDMIX_NV", 0x92A9}, + {"GL_HSL_HUE_NV", 0x92AD}, + {"GL_HSL_SATURATION_NV", 0x92AE}, + {"GL_HSL_COLOR_NV", 0x92AF}, + {"GL_HSL_LUMINOSITY_NV", 0x92B0}, + {"GL_PLUS_CLAMPED_NV", 0x92B1}, + {"GL_PLUS_CLAMPED_ALPHA_NV", 0x92B2}, + {"GL_MINUS_CLAMPED_NV", 0x92B3}, + {"GL_INVERT_OVG_NV", 0x92B4}, + {"GL_ATOMIC_COUNTER_BUFFER", 0x92C0}, + {"GL_ATOMIC_COUNTER_BUFFER_BINDING", 0x92C1}, + {"GL_ATOMIC_COUNTER_BUFFER_START", 0x92C2}, + {"GL_ATOMIC_COUNTER_BUFFER_SIZE", 0x92C3}, + {"GL_ATOMIC_COUNTER_BUFFER_DATA_SIZE", 0x92C4}, + {"GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTERS", 0x92C5}, + {"GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTER_INDICES", 0x92C6}, + {"GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_VERTEX_SHADER", 0x92C7}, + {"GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_CONTROL_SHADER", 0x92C8}, + {"GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_EVALUATION_SHADER", 0x92C9}, + {"GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_GEOMETRY_SHADER", 0x92CA}, + {"GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_FRAGMENT_SHADER", 0x92CB}, + {"GL_MAX_VERTEX_ATOMIC_COUNTER_BUFFERS", 0x92CC}, + {"GL_MAX_TESS_CONTROL_ATOMIC_COUNTER_BUFFERS", 0x92CD}, + {"GL_MAX_TESS_EVALUATION_ATOMIC_COUNTER_BUFFERS", 0x92CE}, + {"GL_MAX_GEOMETRY_ATOMIC_COUNTER_BUFFERS", 0x92CF}, + {"GL_MAX_FRAGMENT_ATOMIC_COUNTER_BUFFERS", 0x92D0}, + {"GL_MAX_COMBINED_ATOMIC_COUNTER_BUFFERS", 0x92D1}, + {"GL_MAX_VERTEX_ATOMIC_COUNTERS", 0x92D2}, + {"GL_MAX_TESS_CONTROL_ATOMIC_COUNTERS", 0x92D3}, + {"GL_MAX_TESS_EVALUATION_ATOMIC_COUNTERS", 0x92D4}, + {"GL_MAX_GEOMETRY_ATOMIC_COUNTERS", 0x92D5}, + {"GL_MAX_FRAGMENT_ATOMIC_COUNTERS", 0x92D6}, + {"GL_MAX_COMBINED_ATOMIC_COUNTERS", 0x92D7}, + {"GL_MAX_ATOMIC_COUNTER_BUFFER_SIZE", 0x92D8}, + {"GL_ACTIVE_ATOMIC_COUNTER_BUFFERS", 0x92D9}, + {"GL_UNIFORM_ATOMIC_COUNTER_BUFFER_INDEX", 0x92DA}, + {"GL_UNSIGNED_INT_ATOMIC_COUNTER", 0x92DB}, + {"GL_MAX_ATOMIC_COUNTER_BUFFER_BINDINGS", 0x92DC}, + {"GL_DEBUG_OUTPUT", 0x92E0}, + {"GL_DEBUG_OUTPUT_KHR", 0x92E0}, + {"GL_UNIFORM", 0x92E1}, + {"GL_UNIFORM_BLOCK", 0x92E2}, + {"GL_PROGRAM_INPUT", 0x92E3}, + {"GL_PROGRAM_OUTPUT", 0x92E4}, + {"GL_BUFFER_VARIABLE", 0x92E5}, + {"GL_SHADER_STORAGE_BLOCK", 0x92E6}, + {"GL_IS_PER_PATCH", 0x92E7}, + {"GL_VERTEX_SUBROUTINE", 0x92E8}, + {"GL_TESS_CONTROL_SUBROUTINE", 0x92E9}, + {"GL_TESS_EVALUATION_SUBROUTINE", 0x92EA}, + {"GL_GEOMETRY_SUBROUTINE", 0x92EB}, + {"GL_FRAGMENT_SUBROUTINE", 0x92EC}, + {"GL_COMPUTE_SUBROUTINE", 0x92ED}, + {"GL_VERTEX_SUBROUTINE_UNIFORM", 0x92EE}, + {"GL_TESS_CONTROL_SUBROUTINE_UNIFORM", 0x92EF}, + {"GL_TESS_EVALUATION_SUBROUTINE_UNIFORM", 0x92F0}, + {"GL_GEOMETRY_SUBROUTINE_UNIFORM", 0x92F1}, + {"GL_FRAGMENT_SUBROUTINE_UNIFORM", 0x92F2}, + {"GL_COMPUTE_SUBROUTINE_UNIFORM", 0x92F3}, + {"GL_TRANSFORM_FEEDBACK_VARYING", 0x92F4}, + {"GL_ACTIVE_RESOURCES", 0x92F5}, + {"GL_MAX_NAME_LENGTH", 0x92F6}, + {"GL_MAX_NUM_ACTIVE_VARIABLES", 0x92F7}, + {"GL_MAX_NUM_COMPATIBLE_SUBROUTINES", 0x92F8}, + {"GL_NAME_LENGTH", 0x92F9}, + {"GL_TYPE", 0x92FA}, + {"GL_ARRAY_SIZE", 0x92FB}, + {"GL_OFFSET", 0x92FC}, + {"GL_BLOCK_INDEX", 0x92FD}, + {"GL_ARRAY_STRIDE", 0x92FE}, + {"GL_MATRIX_STRIDE", 0x92FF}, + {"GL_IS_ROW_MAJOR", 0x9300}, + {"GL_ATOMIC_COUNTER_BUFFER_INDEX", 0x9301}, + {"GL_BUFFER_BINDING", 0x9302}, + {"GL_BUFFER_DATA_SIZE", 0x9303}, + {"GL_NUM_ACTIVE_VARIABLES", 0x9304}, + {"GL_ACTIVE_VARIABLES", 0x9305}, + {"GL_REFERENCED_BY_VERTEX_SHADER", 0x9306}, + {"GL_REFERENCED_BY_TESS_CONTROL_SHADER", 0x9307}, + {"GL_REFERENCED_BY_TESS_EVALUATION_SHADER", 0x9308}, + {"GL_REFERENCED_BY_GEOMETRY_SHADER", 0x9309}, + {"GL_REFERENCED_BY_FRAGMENT_SHADER", 0x930A}, + {"GL_REFERENCED_BY_COMPUTE_SHADER", 0x930B}, + {"GL_TOP_LEVEL_ARRAY_SIZE", 0x930C}, + {"GL_TOP_LEVEL_ARRAY_STRIDE", 0x930D}, + {"GL_LOCATION", 0x930E}, + {"GL_LOCATION_INDEX", 0x930F}, + {"GL_FRAMEBUFFER_DEFAULT_WIDTH", 0x9310}, + {"GL_FRAMEBUFFER_DEFAULT_HEIGHT", 0x9311}, + {"GL_FRAMEBUFFER_DEFAULT_LAYERS", 0x9312}, + {"GL_FRAMEBUFFER_DEFAULT_SAMPLES", 0x9313}, + {"GL_FRAMEBUFFER_DEFAULT_FIXED_SAMPLE_LOCATIONS", 0x9314}, + {"GL_MAX_FRAMEBUFFER_WIDTH", 0x9315}, + {"GL_MAX_FRAMEBUFFER_HEIGHT", 0x9316}, + {"GL_MAX_FRAMEBUFFER_LAYERS", 0x9317}, + {"GL_MAX_FRAMEBUFFER_SAMPLES", 0x9318}, + {"GL_MAX_COMPUTE_VARIABLE_GROUP_INVOCATIONS_ARB", 0x9344}, + {"GL_MAX_COMPUTE_VARIABLE_GROUP_SIZE_ARB", 0x9345}, + {"GL_LOCATION_COMPONENT", 0x934A}, + {"GL_TRANSFORM_FEEDBACK_BUFFER_INDEX", 0x934B}, + {"GL_TRANSFORM_FEEDBACK_BUFFER_STRIDE", 0x934C}, + {"GL_CLEAR_TEXTURE", 0x9365}, + {"GL_NUM_SAMPLE_COUNTS", 0x9380}, + {"GL_TRANSLATED_SHADER_SOURCE_LENGTH_ANGLE", 0x93A0}, + {"GL_TEXTURE_USAGE_ANGLE", 0x93A2}, + {"GL_FRAMEBUFFER_ATTACHMENT_ANGLE", 0x93A3}, + {"GL_PACK_REVERSE_ROW_ORDER_ANGLE", 0x93A4}, + {"GL_PROGRAM_BINARY_ANGLE", 0x93A6}, + {"GL_COMPRESSED_RGBA_ASTC_4x4_KHR", 0x93B0}, + {"GL_COMPRESSED_RGBA_ASTC_5x4_KHR", 0x93B1}, + {"GL_COMPRESSED_RGBA_ASTC_5x5_KHR", 0x93B2}, + {"GL_COMPRESSED_RGBA_ASTC_6x5_KHR", 0x93B3}, + {"GL_COMPRESSED_RGBA_ASTC_6x6_KHR", 0x93B4}, + {"GL_COMPRESSED_RGBA_ASTC_8x5_KHR", 0x93B5}, + {"GL_COMPRESSED_RGBA_ASTC_8x6_KHR", 0x93B6}, + {"GL_COMPRESSED_RGBA_ASTC_8x8_KHR", 0x93B7}, + {"GL_COMPRESSED_RGBA_ASTC_10x5_KHR", 0x93B8}, + {"GL_COMPRESSED_RGBA_ASTC_10x6_KHR", 0x93B9}, + {"GL_COMPRESSED_RGBA_ASTC_10x8_KHR", 0x93BA}, + {"GL_COMPRESSED_RGBA_ASTC_10x10_KHR", 0x93BB}, + {"GL_COMPRESSED_RGBA_ASTC_12x10_KHR", 0x93BC}, + {"GL_COMPRESSED_RGBA_ASTC_12x12_KHR", 0x93BD}, + {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR", 0x93D0}, + {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR", 0x93D1}, + {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR", 0x93D2}, + {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR", 0x93D3}, + {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR", 0x93D4}, + {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR", 0x93D5}, + {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR", 0x93D6}, + {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR", 0x93D7}, + {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR", 0x93D8}, + {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR", 0x93D9}, + {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR", 0x93DA}, + {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR", 0x93DB}, + {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR", 0x93DC}, + {"GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR", 0x93DD}, + {"GL_RASTER_POSITION_UNCLIPPED_IBM", 0x19262}, + {"GL_CULL_VERTEX_IBM", 103050}, + {"GL_ALL_STATIC_DATA_IBM", 103060}, + {"GL_STATIC_VERTEX_ARRAY_IBM", 103061}, + {"GL_VERTEX_ARRAY_LIST_IBM", 103070}, + {"GL_NORMAL_ARRAY_LIST_IBM", 103071}, + {"GL_COLOR_ARRAY_LIST_IBM", 103072}, + {"GL_INDEX_ARRAY_LIST_IBM", 103073}, + {"GL_TEXTURE_COORD_ARRAY_LIST_IBM", 103074}, + {"GL_EDGE_FLAG_ARRAY_LIST_IBM", 103075}, + {"GL_FOG_COORDINATE_ARRAY_LIST_IBM", 103076}, + {"GL_SECONDARY_COLOR_ARRAY_LIST_IBM", 103077}, + {"GL_VERTEX_ARRAY_LIST_STRIDE_IBM", 103080}, + {"GL_NORMAL_ARRAY_LIST_STRIDE_IBM", 103081}, + {"GL_COLOR_ARRAY_LIST_STRIDE_IBM", 103082}, + {"GL_INDEX_ARRAY_LIST_STRIDE_IBM", 103083}, + {"GL_TEXTURE_COORD_ARRAY_LIST_STRIDE_IBM", 103084}, + {"GL_EDGE_FLAG_ARRAY_LIST_STRIDE_IBM", 103085}, + {"GL_FOG_COORDINATE_ARRAY_LIST_STRIDE_IBM", 103086}, + {"GL_SECONDARY_COLOR_ARRAY_LIST_STRIDE_IBM", 103087}, + {"GL_PREFER_DOUBLEBUFFER_HINT_PGI", 0x1A1F8}, + {"GL_CONSERVE_MEMORY_HINT_PGI", 0x1A1FD}, + {"GL_RECLAIM_MEMORY_HINT_PGI", 0x1A1FE}, + {"GL_NATIVE_GRAPHICS_HANDLE_PGI", 0x1A202}, + {"GL_NATIVE_GRAPHICS_BEGIN_HINT_PGI", 0x1A203}, + {"GL_NATIVE_GRAPHICS_END_HINT_PGI", 0x1A204}, + {"GL_ALWAYS_FAST_HINT_PGI", 0x1A20C}, + {"GL_ALWAYS_SOFT_HINT_PGI", 0x1A20D}, + {"GL_ALLOW_DRAW_OBJ_HINT_PGI", 0x1A20E}, + {"GL_ALLOW_DRAW_WIN_HINT_PGI", 0x1A20F}, + {"GL_ALLOW_DRAW_FRG_HINT_PGI", 0x1A210}, + {"GL_ALLOW_DRAW_MEM_HINT_PGI", 0x1A211}, + {"GL_STRICT_DEPTHFUNC_HINT_PGI", 0x1A216}, + {"GL_STRICT_LIGHTING_HINT_PGI", 0x1A217}, + {"GL_STRICT_SCISSOR_HINT_PGI", 0x1A218}, + {"GL_FULL_STIPPLE_HINT_PGI", 0x1A219}, + {"GL_CLIP_NEAR_HINT_PGI", 0x1A220}, + {"GL_CLIP_FAR_HINT_PGI", 0x1A221}, + {"GL_WIDE_LINE_HINT_PGI", 0x1A222}, + {"GL_BACK_NORMALS_HINT_PGI", 0x1A223}, + {"GL_VERTEX_DATA_HINT_PGI", 0x1A22A}, + {"GL_VERTEX_CONSISTENT_HINT_PGI", 0x1A22B}, + {"GL_MATERIAL_SIDE_HINT_PGI", 0x1A22C}, + {"GL_MAX_VERTEX_HINT_PGI", 0x1A22D}, + {"GL_MAX_CLIP_PLANES_IMG", 0x0D32}, + {"GL_TEXTURE_GEN_MODE_OES", 0x2500}, + {"GL_CLIP_PLANE0_IMG", 0x3000}, + {"GL_CLIP_PLANE1_IMG", 0x3001}, + {"GL_CLIP_PLANE2_IMG", 0x3002}, + {"GL_CLIP_PLANE3_IMG", 0x3003}, + {"GL_CLIP_PLANE4_IMG", 0x3004}, + {"GL_CLIP_PLANE5_IMG", 0x3005}, + {"GL_ALPHA8_OES", 0x803C}, + {"GL_LUMINANCE8_OES", 0x8040}, + {"GL_LUMINANCE4_ALPHA4_OES", 0x8043}, + {"GL_LUMINANCE8_ALPHA8_OES", 0x8045}, + {"GL_RGB8_OES", 0x8051}, + {"GL_TEXTURE_BINDING_3D_OES", 0x806A}, + {"GL_BGRA_IMG", 0x80E1}, + {"GL_TEXTURE_MAX_LEVEL_APPLE", 0x813D}, + {"GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING_EXT", 0x8210}, + {"GL_R32F_EXT", 0x822E}, + {"GL_RG32F_EXT", 0x8230}, + {"GL_LOSE_CONTEXT_ON_RESET_EXT", 0x8252}, + {"GL_GUILTY_CONTEXT_RESET_EXT", 0x8253}, + {"GL_INNOCENT_CONTEXT_RESET_EXT", 0x8254}, + {"GL_UNKNOWN_CONTEXT_RESET_EXT", 0x8255}, + {"GL_RESET_NOTIFICATION_STRATEGY_EXT", 0x8256}, + {"GL_NO_RESET_NOTIFICATION_EXT", 0x8261}, + {"GL_UNSIGNED_SHORT_4_4_4_4_REV_IMG", 0x8365}, + {"GL_VERTEX_ARRAY_BINDING_OES", 0x85B5}, + {"GL_RGBA32F_EXT", 0x8814}, + {"GL_RGB32F_EXT", 0x8815}, + {"GL_ALPHA32F_EXT", 0x8816}, + {"GL_LUMINANCE32F_EXT", 0x8818}, + {"GL_LUMINANCE_ALPHA32F_EXT", 0x8819}, + {"GL_ALPHA16F_EXT", 0x881C}, + {"GL_LUMINANCE16F_EXT", 0x881E}, + {"GL_LUMINANCE_ALPHA16F_EXT", 0x881F}, + {"GL_DRAW_FRAMEBUFFER_BINDING_ANGLE", 0x8CA6}, + {"GL_DRAW_FRAMEBUFFER_BINDING_APPLE", 0x8CA6}, + {"GL_READ_FRAMEBUFFER_APPLE", 0x8CA8}, + {"GL_DRAW_FRAMEBUFFER_APPLE", 0x8CA9}, + {"GL_READ_FRAMEBUFFER_BINDING_ANGLE", 0x8CAA}, + {"GL_READ_FRAMEBUFFER_BINDING_APPLE", 0x8CAA}, + {"GL_RENDERBUFFER_SAMPLES_APPLE", 0x8CAB}, + {"GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_APPLE", 0x8D56}, + {"GL_MAX_SAMPLES_APPLE", 0x8D57}, + {"GL_CONTEXT_ROBUST_ACCESS_EXT", 0x90F3}, + {"GL_TEXTURE_IMMUTABLE_FORMAT_EXT", 0x912F}, + {"GL_BGRA8_EXT", 0x93A1}, + {0, 0} +}; + +struct OpenGLEnum_u +{ + const char *name; + unsigned value; +}; + +static OpenGLEnum_u openGLEnums_u[] = { + {"GL_INVALID_INDEX", 0xFFFFFFFFu}, + {0, 0} +}; + +struct OpenGLEnum_ull +{ + const char *name; + unsigned long long value; +}; + +static OpenGLEnum_ull openGLEnums_ull[] = { + {"GL_TIMEOUT_IGNORED", 0xFFFFFFFFFFFFFFFFull}, + {"GL_TIMEOUT_IGNORED_APPLE", 0xFFFFFFFFFFFFFFFFull}, + {0, 0} +}; + + +/* + * Add the OpenGL constants to a Python object. Return -1 and raise an + * exception on error. + */ +int qpyopengl_add_constants(PyObject *obj) +{ + int i, rc; + PyObject *py_value; + + for (i = 0; openGLEnums_i[i].name; ++i) + { +#if PY_MAJOR_VERSION >= 3 + py_value = PyLong_FromLong(openGLEnums_i[i].value); +#else + py_value = PyInt_FromLong(openGLEnums_i[i].value); +#endif + + if (!py_value) + return -1; + + rc = PyObject_SetAttrString(obj, openGLEnums_i[i].name, py_value); + Py_DECREF(py_value); + + if (rc < 0) + return -1; + } + + for (i = 0; openGLEnums_u[i].name; ++i) + { + py_value = PyLong_FromUnsignedLong(openGLEnums_u[i].value); + + if (!py_value) + return -1; + + rc = PyObject_SetAttrString(obj, openGLEnums_u[i].name, py_value); + Py_DECREF(py_value); + + if (rc < 0) + return -1; + } + + for (i = 0; openGLEnums_ull[i].name; ++i) + { + py_value = PyLong_FromUnsignedLongLong(openGLEnums_ull[i].value); + + if (!py_value) + return -1; + + rc = PyObject_SetAttrString(obj, openGLEnums_ull[i].name, py_value); + Py_DECREF(py_value); + + if (rc < 0) + return -1; + } + + return 0; +} + + +#endif diff -Nru pyqt5-5.2+dfsg/qpy/QtGui/qpyopengl_api.h pyqt5-5.2.1+dfsg/qpy/QtGui/qpyopengl_api.h --- pyqt5-5.2+dfsg/qpy/QtGui/qpyopengl_api.h 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtGui/qpyopengl_api.h 2014-03-14 14:38:45.000000000 +0000 @@ -23,7 +23,10 @@ #include -#include + +#include "sipAPIQtGui.h" + +#if defined(SIP_FEATURE_PyQt_OpenGL) #include @@ -67,4 +70,8 @@ SIP_SSIZE_T len); #endif + +#endif + + #endif diff -Nru pyqt5-5.2+dfsg/qpy/QtGui/qpyopengl_array_convertors.cpp pyqt5-5.2.1+dfsg/qpy/QtGui/qpyopengl_array_convertors.cpp --- pyqt5-5.2+dfsg/qpy/QtGui/qpyopengl_array_convertors.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtGui/qpyopengl_array_convertors.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -19,7 +19,10 @@ #include -#include + +#include "sipAPIQtGui.h" + +#if defined(SIP_FEATURE_PyQt_OpenGL) #include "qpyopengl_api.h" @@ -190,3 +193,6 @@ } #endif + + +#endif diff -Nru pyqt5-5.2+dfsg/qpy/QtGui/qpyopengl_attribute_array.cpp pyqt5-5.2.1+dfsg/qpy/QtGui/qpyopengl_attribute_array.cpp --- pyqt5-5.2+dfsg/qpy/QtGui/qpyopengl_attribute_array.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtGui/qpyopengl_attribute_array.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -20,13 +20,15 @@ #include +#include "sipAPIQtGui.h" + +#if defined(SIP_FEATURE_PyQt_OpenGL) + #include #include #include #include -#include "sipAPIQtGui.h" - #include "qpyopengl_api.h" @@ -288,3 +290,6 @@ delete[] reinterpret_cast(array); } #endif + + +#endif diff -Nru pyqt5-5.2+dfsg/qpy/QtGui/qpyopengl_data_cache.cpp pyqt5-5.2.1+dfsg/qpy/QtGui/qpyopengl_data_cache.cpp --- pyqt5-5.2+dfsg/qpy/QtGui/qpyopengl_data_cache.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtGui/qpyopengl_data_cache.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -22,6 +22,8 @@ #include "sipAPIQtGui.h" +#if defined(SIP_FEATURE_PyQt_OpenGL) + #include "qpyopengl_data_cache.h" @@ -81,7 +83,10 @@ 0, 0, 0, - 0 + 0, +#if PY_VERSION_HEX >= 0x03040000 + 0, +#endif }; @@ -276,3 +281,6 @@ return obj ? visit(obj, arg) : 0; } + + +#endif diff -Nru pyqt5-5.2+dfsg/qpy/QtGui/qpyopengl_data_cache.h pyqt5-5.2.1+dfsg/qpy/QtGui/qpyopengl_data_cache.h --- pyqt5-5.2+dfsg/qpy/QtGui/qpyopengl_data_cache.h 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtGui/qpyopengl_data_cache.h 2014-03-14 14:38:45.000000000 +0000 @@ -24,6 +24,10 @@ #include +#include "sipAPIQtGui.h" + +#if defined(SIP_FEATURE_PyQt_OpenGL) + #include @@ -97,3 +101,6 @@ #endif + + +#endif diff -Nru pyqt5-5.2+dfsg/qpy/QtGui/qpyopengl_init.cpp pyqt5-5.2.1+dfsg/qpy/QtGui/qpyopengl_init.cpp --- pyqt5-5.2+dfsg/qpy/QtGui/qpyopengl_init.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtGui/qpyopengl_init.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -22,6 +22,8 @@ #include "sipAPIQtGui.h" +#if defined(SIP_FEATURE_PyQt_OpenGL) + #include "qpyopengl_api.h" #include "qpyopengl_data_cache.h" @@ -48,3 +50,6 @@ (void *)qpyopengl_from_GLdouble); #endif } + + +#endif diff -Nru pyqt5-5.2+dfsg/qpy/QtGui/qpyopengl_uniform_value_array.cpp pyqt5-5.2.1+dfsg/qpy/QtGui/qpyopengl_uniform_value_array.cpp --- pyqt5-5.2+dfsg/qpy/QtGui/qpyopengl_uniform_value_array.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtGui/qpyopengl_uniform_value_array.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -20,6 +20,10 @@ #include +#include "sipAPIQtGui.h" + +#if defined(SIP_FEATURE_PyQt_OpenGL) + #include #include #include @@ -34,8 +38,6 @@ #include #include -#include "sipAPIQtGui.h" - #include "qpyopengl_api.h" @@ -439,3 +441,6 @@ delete_array(array, reinterpret_cast(td)); } #endif + + +#endif diff -Nru pyqt5-5.2+dfsg/qpy/QtGui/qpyopengl_value_array.cpp pyqt5-5.2.1+dfsg/qpy/QtGui/qpyopengl_value_array.cpp --- pyqt5-5.2+dfsg/qpy/QtGui/qpyopengl_value_array.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtGui/qpyopengl_value_array.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -20,12 +20,14 @@ #include +#include "sipAPIQtGui.h" + +#if defined(SIP_FEATURE_PyQt_OpenGL) + #include #if QT_VERSION >= 0x050100 -#include "sipAPIQtGui.h" - #include "qpyopengl_api.h" #include "qpyopengl_data_cache.h" @@ -421,3 +423,6 @@ } #endif + + +#endif diff -Nru pyqt5-5.2+dfsg/qpy/QtGui/qpyopengl_version_functions.cpp pyqt5-5.2.1+dfsg/qpy/QtGui/qpyopengl_version_functions.cpp --- pyqt5-5.2+dfsg/qpy/QtGui/qpyopengl_version_functions.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtGui/qpyopengl_version_functions.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -20,19 +20,21 @@ #include +#include "sipAPIQtGui.h" + +#if defined(SIP_FEATURE_PyQt_OpenGL) + #include #if QT_VERSION >= 0x050100 #include -#include "sipAPIQtGui.h" - #include "qpyopengl_api.h" // Forward declarations. -extern "C" int qpyopengl_add_constants(PyObject *obj); +int qpyopengl_add_constants(PyObject *obj); // The cache of type objects corresponding to each set of functions. @@ -150,3 +152,6 @@ } #endif + + +#endif diff -Nru pyqt5-5.2+dfsg/qpy/QtQml/qpyqml_api.h pyqt5-5.2.1+dfsg/qpy/QtQml/qpyqml_api.h --- pyqt5-5.2+dfsg/qpy/QtQml/qpyqml_api.h 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtQml/qpyqml_api.h 2014-03-14 14:38:45.000000000 +0000 @@ -24,6 +24,7 @@ #include +#include #include #include #include @@ -43,6 +44,11 @@ // Support for qmlAttachedPropertiesObject(). QObject *qpyqml_find_proxy_for(QObject *proxied); +// Support for QJSValue. +int qpyqml_canConvertTo_QJSValue(PyObject *py); +int qpyqml_convertTo_QJSValue(PyObject *py, PyObject *transferObj, + QJSValue **cpp, int *isErr); + // Imports from QtCore. typedef const QMetaObject *(*pyqt5_get_qmetaobject_t)(PyTypeObject *); extern pyqt5_get_qmetaobject_t pyqt5_get_qmetaobject; diff -Nru pyqt5-5.2+dfsg/qpy/QtQml/qpyqmllistproperty.cpp pyqt5-5.2.1+dfsg/qpy/QtQml/qpyqmllistproperty.cpp --- pyqt5-5.2+dfsg/qpy/QtQml/qpyqmllistproperty.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtQml/qpyqmllistproperty.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -18,14 +18,16 @@ // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +#include + #include #include -#include "sipAPIQtQml.h" - #include "qpyqmllistproperty.h" #include "qpyqml_listdata.h" +#include "sipAPIQtQml.h" + // Forward declarations. extern "C" { @@ -101,6 +103,9 @@ 0, 0, 0, +#if PY_VERSION_HEX >= 0x03040000 + 0, +#endif }; diff -Nru pyqt5-5.2+dfsg/qpy/QtQml/qpyqml_post_init.cpp pyqt5-5.2.1+dfsg/qpy/QtQml/qpyqml_post_init.cpp --- pyqt5-5.2+dfsg/qpy/QtQml/qpyqml_post_init.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtQml/qpyqml_post_init.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -20,11 +20,12 @@ #include -#include "sipAPIQtQml.h" - +#include "qpyqml_api.h" #include "qpyqmllistproperty.h" #include "qpyqmlobject.h" +#include "sipAPIQtQml.h" + // Perform any required initialisation. void qpyqml_post_init(PyObject *module_dict) diff -Nru pyqt5-5.2+dfsg/qpy/QtQml/qpyqml.pro pyqt5-5.2.1+dfsg/qpy/QtQml/qpyqml.pro --- pyqt5-5.2+dfsg/qpy/QtQml/qpyqml.pro 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtQml/qpyqml.pro 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -# This is the qmake project file for the QPy support code for the QtQml module. -# -# Copyright (c) 2014 Riverbank Computing Limited -# -# This file is part of PyQt5. -# -# This file may be used under the terms of the GNU General Public License -# version 3.0 as published by the Free Software Foundation and appearing in -# the file LICENSE included in the packaging of this file. Please review the -# following information to ensure the GNU General Public License version 3.0 -# requirements will be met: http://www.gnu.org/copyleft/gpl.html. -# -# If you do not wish to use this file under the terms of the GPL version 3.0 -# then you may purchase a commercial license. For more information contact -# info@riverbankcomputing.com. -# -# This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE -# WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - - -CONFIG += static warn_on -TARGET = qpyqml -TEMPLATE = lib - -SOURCES = \ - qpyqml_listdata.cpp \ - qpyqml_post_init.cpp \ - qpyqml_register_type.cpp \ - qpyqml_register_singleton_type.cpp \ - qpyqmllistproperty.cpp \ - qpyqmlobject.cpp \ - qpyqmlsingletonobject.cpp - -HEADERS = \ - qpyqml_api.h \ - qpyqml_listdata.h \ - qpyqmllistproperty.h \ - qpyqmlobject.h \ - qpyqmlsingletonobject.h diff -Nru pyqt5-5.2+dfsg/qpy/QtQml/qpyqml_qjsvalue.cpp pyqt5-5.2.1+dfsg/qpy/QtQml/qpyqml_qjsvalue.cpp --- pyqt5-5.2+dfsg/qpy/QtQml/qpyqml_qjsvalue.cpp 1970-01-01 00:00:00.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtQml/qpyqml_qjsvalue.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -0,0 +1,121 @@ +// This is the support for QJSValue. +// +// Copyright (c) 2014 Riverbank Computing Limited +// +// This file is part of PyQt5. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +#include + +#include "qpyqml_api.h" + +#include "sipAPIQtQml.h" + + +// See if a Python object can be converted to a QJSValue. +int qpyqml_canConvertTo_QJSValue(PyObject *py) +{ + // Note that these checks are done in the same order as the QJSValue ctors. + + if (PyObject_TypeCheck(py, sipTypeAsPyTypeObject(sipType_QJSValue_SpecialValue))) + return 1; + + if (PyBool_Check(py)) + return 1; + +#if PY_MAJOR_VERSION >= 3 + if (PyLong_Check(py)) + return 1; +#else + if (PyInt_Check(py)) + return 1; +#endif + + if (PyFloat_Check(py)) + return 1; + + if (sipCanConvertToType(py, sipType_QString, 0)) + return 1; + + return sipCanConvertToType(py, sipType_QJSValue, SIP_NO_CONVERTORS); +} + + +// Convert a Python object to a QJSValue. +int qpyqml_convertTo_QJSValue(PyObject *py, PyObject *transferObj, + QJSValue **cpp, int *isErr) +{ + if (PyObject_TypeCheck(py, sipTypeAsPyTypeObject(sipType_QJSValue_SpecialValue))) + { + *cpp = new QJSValue((QJSValue::SpecialValue)SIPLong_AsLong(py)); + + return sipGetState(transferObj); + } + + if (PyBool_Check(py)) + { + *cpp = new QJSValue(py == Py_True); + + return sipGetState(transferObj); + } + +#if PY_MAJOR_VERSION >= 3 + if (PyLong_Check(py)) + { + *cpp = new QJSValue((int)PyLong_AS_LONG(py)); + + return sipGetState(transferObj); + } +#else + if (PyInt_Check(py)) + { + *cpp = new QJSValue((int)PyInt_AS_LONG(py)); + + return sipGetState(transferObj); + } +#endif + + if (PyFloat_Check(py)) + { + *cpp = new QJSValue((double)PyFloat_AS_DOUBLE(py)); + + return sipGetState(transferObj); + } + + if (sipCanConvertToType(py, sipType_QString, 0)) + { + int state; + QString *qs = reinterpret_cast(sipConvertToType(py, + sipType_QString, 0, 0, &state, isErr)); + + if (*isErr) + { + sipReleaseType(qs, sipType_QString, state); + return 0; + } + + *cpp = new QJSValue(*qs); + + sipReleaseType(qs, sipType_QString, state); + + return sipGetState(transferObj); + } + + *cpp = reinterpret_cast(sipConvertToType(py, sipType_QJSValue, + transferObj, SIP_NO_CONVERTORS, 0, isErr)); + + return 0; +} diff -Nru pyqt5-5.2+dfsg/qpy/QtQuick/qpyquick_chimera_helpers.cpp pyqt5-5.2.1+dfsg/qpy/QtQuick/qpyquick_chimera_helpers.cpp --- pyqt5-5.2+dfsg/qpy/QtQuick/qpyquick_chimera_helpers.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtQuick/qpyquick_chimera_helpers.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -18,14 +18,16 @@ // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -#include "sipAPIQtQuick.h" - -#include "qpyquick_chimera_helpers.h" +#include #include #include #include +#include "qpyquick_chimera_helpers.h" + +#include "sipAPIQtQuick.h" + // Forward declarations. static int QList_QObject_metatype(); diff -Nru pyqt5-5.2+dfsg/qpy/QtQuick/qpyquick_chimera_helpers.h pyqt5-5.2.1+dfsg/qpy/QtQuick/qpyquick_chimera_helpers.h --- pyqt5-5.2+dfsg/qpy/QtQuick/qpyquick_chimera_helpers.h 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtQuick/qpyquick_chimera_helpers.h 2014-03-14 14:38:45.000000000 +0000 @@ -18,8 +18,8 @@ // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -#ifndef _QPYQUICKCHIMERAHELPERS_H -#define _QPYQUICKCHIMERAHELPERS_H +#ifndef _QPYQUICK_CHIMERAHELPERS_H +#define _QPYQUICK_CHIMERAHELPERS_H #include diff -Nru pyqt5-5.2+dfsg/qpy/QtQuick/qpyquick_post_init.cpp pyqt5-5.2.1+dfsg/qpy/QtQuick/qpyquick_post_init.cpp --- pyqt5-5.2+dfsg/qpy/QtQuick/qpyquick_post_init.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtQuick/qpyquick_post_init.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -18,11 +18,12 @@ // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -#include "sipAPIQtQuick.h" - +#include "qpyquick_api.h" #include "qpyquick_chimera_helpers.h" #include "qpyquick_register_type.h" +#include "sipAPIQtQuick.h" + // Perform any required initialisation. void qpyquick_post_init() diff -Nru pyqt5-5.2+dfsg/qpy/QtQuick/qpyquick.pro pyqt5-5.2.1+dfsg/qpy/QtQuick/qpyquick.pro --- pyqt5-5.2+dfsg/qpy/QtQuick/qpyquick.pro 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtQuick/qpyquick.pro 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ -# This is the qmake project file for the QPy support code for the QtQuick -# module. -# -# Copyright (c) 2014 Riverbank Computing Limited -# -# This file is part of PyQt5. -# -# This file may be used under the terms of the GNU General Public License -# version 3.0 as published by the Free Software Foundation and appearing in -# the file LICENSE included in the packaging of this file. Please review the -# following information to ensure the GNU General Public License version 3.0 -# requirements will be met: http://www.gnu.org/copyleft/gpl.html. -# -# If you do not wish to use this file under the terms of the GPL version 3.0 -# then you may purchase a commercial license. For more information contact -# info@riverbankcomputing.com. -# -# This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE -# WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - - -CONFIG += static warn_on -TARGET = qpyquick -TEMPLATE = lib - -SOURCES = \ - qpyquick_post_init.cpp \ - qpyquick_chimera_helpers.cpp \ - qpyquick_register_type.cpp \ - qpyquickitem.cpp \ - qpyquickpainteditem.cpp - -HEADERS = \ - qpyquick_api.h \ - qpyquick_chimera_helpers.h \ - qpyquick_register_type.h \ - qpyquickitem.h \ - qpyquickpainteditem.h diff -Nru pyqt5-5.2+dfsg/qpy/QtQuick/qpyquick_register_type.cpp pyqt5-5.2.1+dfsg/qpy/QtQuick/qpyquick_register_type.cpp --- pyqt5-5.2+dfsg/qpy/QtQuick/qpyquick_register_type.cpp 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtQuick/qpyquick_register_type.cpp 2014-03-14 14:38:45.000000000 +0000 @@ -22,6 +22,8 @@ #include "qpyquickitem.h" #include "qpyquickpainteditem.h" +#include "sipAPIQtQuick.h" + sipErrorState qpyquick_register_type(PyTypeObject *py_type, const QMetaObject *mo, const QByteArray &ptr_name, diff -Nru pyqt5-5.2+dfsg/qpy/QtQuick/qpyquick_register_type.h pyqt5-5.2.1+dfsg/qpy/QtQuick/qpyquick_register_type.h --- pyqt5-5.2+dfsg/qpy/QtQuick/qpyquick_register_type.h 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/qpy/QtQuick/qpyquick_register_type.h 2014-03-14 14:38:45.000000000 +0000 @@ -18,8 +18,8 @@ // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -#ifndef _QPYQUICKREGISTERTYPE_H -#define _QPYQUICKREGISTERTYPE_H +#ifndef _QPYQUICK_REGISTERTYPE_H +#define _QPYQUICK_REGISTERTYPE_H #include diff -Nru pyqt5-5.2+dfsg/sip/QAxContainer/qaxbase.sip pyqt5-5.2.1+dfsg/sip/QAxContainer/qaxbase.sip --- pyqt5-5.2+dfsg/sip/QAxContainer/qaxbase.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QAxContainer/qaxbase.sip 2014-03-14 14:38:45.000000000 +0000 @@ -18,7 +18,7 @@ // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -class QAxBase /Abstract, PyQt4NoQMetaObject/ +class QAxBase /Abstract, PyQtNoQMetaObject/ { %TypeHeaderCode #include diff -Nru pyqt5-5.2+dfsg/sip/QAxContainer/qaxobject.sip pyqt5-5.2.1+dfsg/sip/QAxContainer/qaxobject.sip --- pyqt5-5.2+dfsg/sip/QAxContainer/qaxobject.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QAxContainer/qaxobject.sip 2014-03-14 14:38:45.000000000 +0000 @@ -18,7 +18,7 @@ // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -class QAxObject : QObject, QAxBase /PyQt4NoQMetaObject/ +class QAxObject : QObject, QAxBase /PyQtNoQMetaObject/ { %TypeHeaderCode #include diff -Nru pyqt5-5.2+dfsg/sip/QAxContainer/qaxwidget.sip pyqt5-5.2.1+dfsg/sip/QAxContainer/qaxwidget.sip --- pyqt5-5.2+dfsg/sip/QAxContainer/qaxwidget.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QAxContainer/qaxwidget.sip 2014-03-14 14:38:45.000000000 +0000 @@ -18,7 +18,7 @@ // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -class QAxWidget : QWidget, QAxBase /PyQt4NoQMetaObject/ +class QAxWidget : QWidget, QAxBase /PyQtNoQMetaObject/ { %TypeHeaderCode #include diff -Nru pyqt5-5.2+dfsg/sip/_QOpenGLFunctions_2_0/_QOpenGLFunctions_2_0mod.sip pyqt5-5.2.1+dfsg/sip/_QOpenGLFunctions_2_0/_QOpenGLFunctions_2_0mod.sip --- pyqt5-5.2+dfsg/sip/_QOpenGLFunctions_2_0/_QOpenGLFunctions_2_0mod.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/_QOpenGLFunctions_2_0/_QOpenGLFunctions_2_0mod.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// _QOpenGLFunctions_2_0mod.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// _QOpenGLFunctions_2_0mod.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the _QOpenGLFunctions_2_0 Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/_QOpenGLFunctions_2_0/qopenglfunctions_2_0.sip pyqt5-5.2.1+dfsg/sip/_QOpenGLFunctions_2_0/qopenglfunctions_2_0.sip --- pyqt5-5.2+dfsg/sip/_QOpenGLFunctions_2_0/qopenglfunctions_2_0.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/_QOpenGLFunctions_2_0/qopenglfunctions_2_0.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qopenglfunctions_2_0.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qopenglfunctions_2_0.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the _QOpenGLFunctions_2_0 Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/_QOpenGLFunctions_ES2/_QOpenGLFunctions_ES2mod.sip pyqt5-5.2.1+dfsg/sip/_QOpenGLFunctions_ES2/_QOpenGLFunctions_ES2mod.sip --- pyqt5-5.2+dfsg/sip/_QOpenGLFunctions_ES2/_QOpenGLFunctions_ES2mod.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/_QOpenGLFunctions_ES2/_QOpenGLFunctions_ES2mod.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// _QOpenGLFunctions_ES2mod.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// _QOpenGLFunctions_ES2mod.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the _QOpenGLFunctions_ES2 Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/_QOpenGLFunctions_ES2/qopenglfunctions_es2.sip pyqt5-5.2.1+dfsg/sip/_QOpenGLFunctions_ES2/qopenglfunctions_es2.sip --- pyqt5-5.2+dfsg/sip/_QOpenGLFunctions_ES2/qopenglfunctions_es2.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/_QOpenGLFunctions_ES2/qopenglfunctions_es2.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qopenglfunctions_es2.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qopenglfunctions_es2.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the _QOpenGLFunctions_ES2 Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetoothaddress.sip pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetoothaddress.sip --- pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetoothaddress.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetoothaddress.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qbluetoothaddress.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qbluetoothaddress.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtBluetooth Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetoothdevicediscoveryagent.sip pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetoothdevicediscoveryagent.sip --- pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetoothdevicediscoveryagent.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetoothdevicediscoveryagent.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qbluetoothdevicediscoveryagent.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qbluetoothdevicediscoveryagent.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtBluetooth Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetoothdeviceinfo.sip pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetoothdeviceinfo.sip --- pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetoothdeviceinfo.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetoothdeviceinfo.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qbluetoothdeviceinfo.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qbluetoothdeviceinfo.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtBluetooth Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetoothhostinfo.sip pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetoothhostinfo.sip --- pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetoothhostinfo.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetoothhostinfo.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qbluetoothhostinfo.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qbluetoothhostinfo.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtBluetooth Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetoothlocaldevice.sip pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetoothlocaldevice.sip --- pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetoothlocaldevice.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetoothlocaldevice.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qbluetoothlocaldevice.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qbluetoothlocaldevice.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtBluetooth Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetoothserver.sip pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetoothserver.sip --- pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetoothserver.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetoothserver.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qbluetoothserver.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qbluetoothserver.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtBluetooth Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetoothservicediscoveryagent.sip pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetoothservicediscoveryagent.sip --- pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetoothservicediscoveryagent.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetoothservicediscoveryagent.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qbluetoothservicediscoveryagent.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qbluetoothservicediscoveryagent.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtBluetooth Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetoothserviceinfo.sip pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetoothserviceinfo.sip --- pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetoothserviceinfo.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetoothserviceinfo.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qbluetoothserviceinfo.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qbluetoothserviceinfo.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtBluetooth Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetooth.sip pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetooth.sip --- pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetooth.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetooth.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qbluetooth.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qbluetooth.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtBluetooth Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetoothsocket.sip pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetoothsocket.sip --- pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetoothsocket.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetoothsocket.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qbluetoothsocket.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qbluetoothsocket.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtBluetooth Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetoothtransfermanager.sip pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetoothtransfermanager.sip --- pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetoothtransfermanager.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetoothtransfermanager.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qbluetoothtransfermanager.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qbluetoothtransfermanager.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtBluetooth Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetoothtransferreply.sip pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetoothtransferreply.sip --- pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetoothtransferreply.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetoothtransferreply.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qbluetoothtransferreply.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qbluetoothtransferreply.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtBluetooth Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetoothtransferrequest.sip pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetoothtransferrequest.sip --- pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetoothtransferrequest.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetoothtransferrequest.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qbluetoothtransferrequest.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qbluetoothtransferrequest.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtBluetooth Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetoothuuid.sip pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetoothuuid.sip --- pyqt5-5.2+dfsg/sip/QtBluetooth/qbluetoothuuid.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtBluetooth/qbluetoothuuid.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qbluetoothuuid.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qbluetoothuuid.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtBluetooth Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtBluetooth/QtBluetoothmod.sip pyqt5-5.2.1+dfsg/sip/QtBluetooth/QtBluetoothmod.sip --- pyqt5-5.2+dfsg/sip/QtBluetooth/QtBluetoothmod.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtBluetooth/QtBluetoothmod.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// QtBluetoothmod.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// QtBluetoothmod.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtBluetooth Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qabstractanimation.sip pyqt5-5.2.1+dfsg/sip/QtCore/qabstractanimation.sip --- pyqt5-5.2+dfsg/sip/QtCore/qabstractanimation.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qabstractanimation.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qabstractanimation.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qabstractanimation.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qabstracteventdispatcher.sip pyqt5-5.2.1+dfsg/sip/QtCore/qabstracteventdispatcher.sip --- pyqt5-5.2+dfsg/sip/QtCore/qabstracteventdispatcher.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qabstracteventdispatcher.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qabstracteventdispatcher.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qabstracteventdispatcher.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qabstractitemmodel.sip pyqt5-5.2.1+dfsg/sip/QtCore/qabstractitemmodel.sip --- pyqt5-5.2+dfsg/sip/QtCore/qabstractitemmodel.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qabstractitemmodel.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qabstractitemmodel.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qabstractitemmodel.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qabstractnativeeventfilter.sip pyqt5-5.2.1+dfsg/sip/QtCore/qabstractnativeeventfilter.sip --- pyqt5-5.2+dfsg/sip/QtCore/qabstractnativeeventfilter.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qabstractnativeeventfilter.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qabstractnativeeventfilter.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qabstractnativeeventfilter.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qabstractproxymodel.sip pyqt5-5.2.1+dfsg/sip/QtCore/qabstractproxymodel.sip --- pyqt5-5.2+dfsg/sip/QtCore/qabstractproxymodel.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qabstractproxymodel.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qabstractproxymodel.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qabstractproxymodel.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qabstractstate.sip pyqt5-5.2.1+dfsg/sip/QtCore/qabstractstate.sip --- pyqt5-5.2+dfsg/sip/QtCore/qabstractstate.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qabstractstate.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qabstractstate.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qabstractstate.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qabstracttransition.sip pyqt5-5.2.1+dfsg/sip/QtCore/qabstracttransition.sip --- pyqt5-5.2+dfsg/sip/QtCore/qabstracttransition.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qabstracttransition.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qabstracttransition.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qabstracttransition.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qanimationgroup.sip pyqt5-5.2.1+dfsg/sip/QtCore/qanimationgroup.sip --- pyqt5-5.2+dfsg/sip/QtCore/qanimationgroup.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qanimationgroup.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qanimationgroup.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qanimationgroup.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qbasictimer.sip pyqt5-5.2.1+dfsg/sip/QtCore/qbasictimer.sip --- pyqt5-5.2+dfsg/sip/QtCore/qbasictimer.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qbasictimer.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qbasictimer.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qbasictimer.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qbitarray.sip pyqt5-5.2.1+dfsg/sip/QtCore/qbitarray.sip --- pyqt5-5.2+dfsg/sip/QtCore/qbitarray.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qbitarray.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qbitarray.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qbitarray.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qbuffer.sip pyqt5-5.2.1+dfsg/sip/QtCore/qbuffer.sip --- pyqt5-5.2+dfsg/sip/QtCore/qbuffer.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qbuffer.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qbuffer.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qbuffer.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qbytearraymatcher.sip pyqt5-5.2.1+dfsg/sip/QtCore/qbytearraymatcher.sip --- pyqt5-5.2+dfsg/sip/QtCore/qbytearraymatcher.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qbytearraymatcher.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qbytearraymatcher.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qbytearraymatcher.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qbytearray.sip pyqt5-5.2.1+dfsg/sip/QtCore/qbytearray.sip --- pyqt5-5.2+dfsg/sip/QtCore/qbytearray.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qbytearray.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qbytearray.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qbytearray.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qchar.sip pyqt5-5.2.1+dfsg/sip/QtCore/qchar.sip --- pyqt5-5.2+dfsg/sip/QtCore/qchar.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qchar.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qchar.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qchar.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qcollator.sip pyqt5-5.2.1+dfsg/sip/QtCore/qcollator.sip --- pyqt5-5.2+dfsg/sip/QtCore/qcollator.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qcollator.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qcollator.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qcollator.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qcommandlineoption.sip pyqt5-5.2.1+dfsg/sip/QtCore/qcommandlineoption.sip --- pyqt5-5.2+dfsg/sip/QtCore/qcommandlineoption.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qcommandlineoption.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qcommandlineoption.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qcommandlineoption.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qcommandlineparser.sip pyqt5-5.2.1+dfsg/sip/QtCore/qcommandlineparser.sip --- pyqt5-5.2+dfsg/sip/QtCore/qcommandlineparser.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qcommandlineparser.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qcommandlineparser.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qcommandlineparser.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qcoreapplication.sip pyqt5-5.2.1+dfsg/sip/QtCore/qcoreapplication.sip --- pyqt5-5.2+dfsg/sip/QtCore/qcoreapplication.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qcoreapplication.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qcoreapplication.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qcoreapplication.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qcoreevent.sip pyqt5-5.2.1+dfsg/sip/QtCore/qcoreevent.sip --- pyqt5-5.2+dfsg/sip/QtCore/qcoreevent.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qcoreevent.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qcoreevent.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qcoreevent.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qcryptographichash.sip pyqt5-5.2.1+dfsg/sip/QtCore/qcryptographichash.sip --- pyqt5-5.2+dfsg/sip/QtCore/qcryptographichash.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qcryptographichash.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qcryptographichash.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qcryptographichash.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qdatastream.sip pyqt5-5.2.1+dfsg/sip/QtCore/qdatastream.sip --- pyqt5-5.2+dfsg/sip/QtCore/qdatastream.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qdatastream.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdatastream.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qdatastream.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qdatetime.sip pyqt5-5.2.1+dfsg/sip/QtCore/qdatetime.sip --- pyqt5-5.2+dfsg/sip/QtCore/qdatetime.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qdatetime.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdatetime.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qdatetime.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qdiriterator.sip pyqt5-5.2.1+dfsg/sip/QtCore/qdiriterator.sip --- pyqt5-5.2+dfsg/sip/QtCore/qdiriterator.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qdiriterator.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdiriterator.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qdiriterator.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qdir.sip pyqt5-5.2.1+dfsg/sip/QtCore/qdir.sip --- pyqt5-5.2+dfsg/sip/QtCore/qdir.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qdir.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdir.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qdir.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qeasingcurve.sip pyqt5-5.2.1+dfsg/sip/QtCore/qeasingcurve.sip --- pyqt5-5.2+dfsg/sip/QtCore/qeasingcurve.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qeasingcurve.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qeasingcurve.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qeasingcurve.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qelapsedtimer.sip pyqt5-5.2.1+dfsg/sip/QtCore/qelapsedtimer.sip --- pyqt5-5.2+dfsg/sip/QtCore/qelapsedtimer.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qelapsedtimer.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qelapsedtimer.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qelapsedtimer.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qeventloop.sip pyqt5-5.2.1+dfsg/sip/QtCore/qeventloop.sip --- pyqt5-5.2+dfsg/sip/QtCore/qeventloop.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qeventloop.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qeventloop.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qeventloop.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qeventtransition.sip pyqt5-5.2.1+dfsg/sip/QtCore/qeventtransition.sip --- pyqt5-5.2+dfsg/sip/QtCore/qeventtransition.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qeventtransition.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qeventtransition.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qeventtransition.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qfiledevice.sip pyqt5-5.2.1+dfsg/sip/QtCore/qfiledevice.sip --- pyqt5-5.2+dfsg/sip/QtCore/qfiledevice.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qfiledevice.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qfiledevice.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qfiledevice.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qfileinfo.sip pyqt5-5.2.1+dfsg/sip/QtCore/qfileinfo.sip --- pyqt5-5.2+dfsg/sip/QtCore/qfileinfo.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qfileinfo.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qfileinfo.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qfileinfo.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qfileselector.sip pyqt5-5.2.1+dfsg/sip/QtCore/qfileselector.sip --- pyqt5-5.2+dfsg/sip/QtCore/qfileselector.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qfileselector.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qfileselector.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qfileselector.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qfile.sip pyqt5-5.2.1+dfsg/sip/QtCore/qfile.sip --- pyqt5-5.2+dfsg/sip/QtCore/qfile.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qfile.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qfile.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qfile.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qfilesystemwatcher.sip pyqt5-5.2.1+dfsg/sip/QtCore/qfilesystemwatcher.sip --- pyqt5-5.2+dfsg/sip/QtCore/qfilesystemwatcher.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qfilesystemwatcher.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qfilesystemwatcher.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qfilesystemwatcher.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qfinalstate.sip pyqt5-5.2.1+dfsg/sip/QtCore/qfinalstate.sip --- pyqt5-5.2+dfsg/sip/QtCore/qfinalstate.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qfinalstate.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qfinalstate.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qfinalstate.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qglobal.sip pyqt5-5.2.1+dfsg/sip/QtCore/qglobal.sip --- pyqt5-5.2+dfsg/sip/QtCore/qglobal.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qglobal.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qglobal.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qglobal.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // @@ -29,8 +29,8 @@ const char *PYQT_VERSION_STR; %ModuleCode -static int PYQT_VERSION = 0x050200; -static const char *PYQT_VERSION_STR = "5.2"; +static int PYQT_VERSION = 0x050201; +static const char *PYQT_VERSION_STR = "5.2.1"; %End const int QT_VERSION; const char *QT_VERSION_STR; @@ -61,7 +61,7 @@ bool qSharedBuild(); // Template definition for QFlags. template -class QFlags /PyQt4Flags=0x1/ +class QFlags /PyQtFlags=0x1/ { public: QFlags(const QFlags &); diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qhistorystate.sip pyqt5-5.2.1+dfsg/sip/QtCore/qhistorystate.sip --- pyqt5-5.2+dfsg/sip/QtCore/qhistorystate.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qhistorystate.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qhistorystate.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qhistorystate.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qidentityproxymodel.sip pyqt5-5.2.1+dfsg/sip/QtCore/qidentityproxymodel.sip --- pyqt5-5.2+dfsg/sip/QtCore/qidentityproxymodel.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qidentityproxymodel.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qidentityproxymodel.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qidentityproxymodel.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qiodevice.sip pyqt5-5.2.1+dfsg/sip/QtCore/qiodevice.sip --- pyqt5-5.2+dfsg/sip/QtCore/qiodevice.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qiodevice.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qiodevice.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qiodevice.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qitemselectionmodel.sip pyqt5-5.2.1+dfsg/sip/QtCore/qitemselectionmodel.sip --- pyqt5-5.2+dfsg/sip/QtCore/qitemselectionmodel.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qitemselectionmodel.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qitemselectionmodel.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qitemselectionmodel.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qlibraryinfo.sip pyqt5-5.2.1+dfsg/sip/QtCore/qlibraryinfo.sip --- pyqt5-5.2+dfsg/sip/QtCore/qlibraryinfo.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qlibraryinfo.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qlibraryinfo.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qlibraryinfo.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qlibrary.sip pyqt5-5.2.1+dfsg/sip/QtCore/qlibrary.sip --- pyqt5-5.2+dfsg/sip/QtCore/qlibrary.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qlibrary.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qlibrary.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qlibrary.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qline.sip pyqt5-5.2.1+dfsg/sip/QtCore/qline.sip --- pyqt5-5.2+dfsg/sip/QtCore/qline.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qline.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qline.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qline.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qlocale.sip pyqt5-5.2.1+dfsg/sip/QtCore/qlocale.sip --- pyqt5-5.2+dfsg/sip/QtCore/qlocale.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qlocale.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qlocale.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qlocale.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qlockfile.sip pyqt5-5.2.1+dfsg/sip/QtCore/qlockfile.sip --- pyqt5-5.2+dfsg/sip/QtCore/qlockfile.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qlockfile.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qlockfile.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qlockfile.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qlogging.sip pyqt5-5.2.1+dfsg/sip/QtCore/qlogging.sip --- pyqt5-5.2+dfsg/sip/QtCore/qlogging.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qlogging.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qlogging.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qlogging.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qmargins.sip pyqt5-5.2.1+dfsg/sip/QtCore/qmargins.sip --- pyqt5-5.2+dfsg/sip/QtCore/qmargins.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qmargins.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmargins.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qmargins.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qmessageauthenticationcode.sip pyqt5-5.2.1+dfsg/sip/QtCore/qmessageauthenticationcode.sip --- pyqt5-5.2+dfsg/sip/QtCore/qmessageauthenticationcode.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qmessageauthenticationcode.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmessageauthenticationcode.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qmessageauthenticationcode.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qmetaobject.sip pyqt5-5.2.1+dfsg/sip/QtCore/qmetaobject.sip --- pyqt5-5.2+dfsg/sip/QtCore/qmetaobject.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qmetaobject.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmetaobject.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qmetaobject.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qmetatype.sip pyqt5-5.2.1+dfsg/sip/QtCore/qmetatype.sip --- pyqt5-5.2+dfsg/sip/QtCore/qmetatype.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qmetatype.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmetatype.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qmetatype.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qmimedatabase.sip pyqt5-5.2.1+dfsg/sip/QtCore/qmimedatabase.sip --- pyqt5-5.2+dfsg/sip/QtCore/qmimedatabase.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qmimedatabase.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmimedatabase.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qmimedatabase.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qmimedata.sip pyqt5-5.2.1+dfsg/sip/QtCore/qmimedata.sip --- pyqt5-5.2+dfsg/sip/QtCore/qmimedata.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qmimedata.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmimedata.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qmimedata.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qmimetype.sip pyqt5-5.2.1+dfsg/sip/QtCore/qmimetype.sip --- pyqt5-5.2+dfsg/sip/QtCore/qmimetype.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qmimetype.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmimetype.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qmimetype.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qmutex.sip pyqt5-5.2.1+dfsg/sip/QtCore/qmutex.sip --- pyqt5-5.2+dfsg/sip/QtCore/qmutex.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qmutex.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmutex.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qmutex.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qnamespace.sip pyqt5-5.2.1+dfsg/sip/QtCore/qnamespace.sip --- pyqt5-5.2+dfsg/sip/QtCore/qnamespace.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qnamespace.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qnamespace.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qnamespace.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qnumeric.sip pyqt5-5.2.1+dfsg/sip/QtCore/qnumeric.sip --- pyqt5-5.2+dfsg/sip/QtCore/qnumeric.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qnumeric.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qnumeric.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qnumeric.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qobjectcleanuphandler.sip pyqt5-5.2.1+dfsg/sip/QtCore/qobjectcleanuphandler.sip --- pyqt5-5.2+dfsg/sip/QtCore/qobjectcleanuphandler.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qobjectcleanuphandler.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qobjectcleanuphandler.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qobjectcleanuphandler.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qobjectdefs.sip pyqt5-5.2.1+dfsg/sip/QtCore/qobjectdefs.sip --- pyqt5-5.2+dfsg/sip/QtCore/qobjectdefs.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qobjectdefs.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qobjectdefs.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qobjectdefs.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qobject.sip pyqt5-5.2.1+dfsg/sip/QtCore/qobject.sip --- pyqt5-5.2+dfsg/sip/QtCore/qobject.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qobject.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qobject.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qobject.sip generated by MetaSIP on Fri Mar 14 14:38:39 2014 // // This file is part of the QtCore Python extension module. // @@ -665,7 +665,7 @@ %End %ModuleHeaderCode -#include +#include "qpycore_api.h" %End %ModuleCode diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qparallelanimationgroup.sip pyqt5-5.2.1+dfsg/sip/QtCore/qparallelanimationgroup.sip --- pyqt5-5.2+dfsg/sip/QtCore/qparallelanimationgroup.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qparallelanimationgroup.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qparallelanimationgroup.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qparallelanimationgroup.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qpauseanimation.sip pyqt5-5.2.1+dfsg/sip/QtCore/qpauseanimation.sip --- pyqt5-5.2+dfsg/sip/QtCore/qpauseanimation.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qpauseanimation.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qpauseanimation.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qpauseanimation.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qpluginloader.sip pyqt5-5.2.1+dfsg/sip/QtCore/qpluginloader.sip --- pyqt5-5.2+dfsg/sip/QtCore/qpluginloader.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qpluginloader.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qpluginloader.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qpluginloader.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qpoint.sip pyqt5-5.2.1+dfsg/sip/QtCore/qpoint.sip --- pyqt5-5.2+dfsg/sip/QtCore/qpoint.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qpoint.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qpoint.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qpoint.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qprocess.sip pyqt5-5.2.1+dfsg/sip/QtCore/qprocess.sip --- pyqt5-5.2+dfsg/sip/QtCore/qprocess.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qprocess.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qprocess.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qprocess.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qpropertyanimation.sip pyqt5-5.2.1+dfsg/sip/QtCore/qpropertyanimation.sip --- pyqt5-5.2+dfsg/sip/QtCore/qpropertyanimation.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qpropertyanimation.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qpropertyanimation.sip generated by MetaSIP on Tue Jan 7 16:20:11 2014 +// qpropertyanimation.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qpycore_qstringlist.sip pyqt5-5.2.1+dfsg/sip/QtCore/qpycore_qstringlist.sip --- pyqt5-5.2+dfsg/sip/QtCore/qpycore_qstringlist.sip 1970-01-01 00:00:00.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qpycore_qstringlist.sip 2014-03-14 14:38:45.000000000 +0000 @@ -0,0 +1,135 @@ +// This is the SIP interface definition for the QStringList mapped type. +// +// Copyright (c) 2014 Riverbank Computing Limited +// +// This file is part of PyQt5. +// +// This file may be used under the terms of the GNU General Public License +// version 3.0 as published by the Free Software Foundation and appearing in +// the file LICENSE included in the packaging of this file. Please review the +// following information to ensure the GNU General Public License version 3.0 +// requirements will be met: http://www.gnu.org/copyleft/gpl.html. +// +// If you do not wish to use this file under the terms of the GPL version 3.0 +// then you may purchase a commercial license. For more information contact +// info@riverbankcomputing.com. +// +// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + + +// Note that when we test the type of an object to see if it can be converted +// to a collection we only check if it is iterable. We do not check the +// types of the contents - we assume we will be able to convert them when +// requested. This allows us to raise exceptions specific to an individual +// object. This approach doesn't work if there are overloads that can only be +// distinguished by the types of the template arguments. Currently there are +// no such cases in PyQt5. Note also that we don't consider strings to be +// iterables. + + +%MappedType QStringList /DocType="list-of-str"/ +{ +%TypeHeaderCode +#include +%End + +%ConvertFromTypeCode + PyObject *l = PyList_New(sipCpp->size()); + + if (!l) + return 0; + + for (int i = 0; i < sipCpp->size(); ++i) + { + QString *t = new QString(sipCpp->at(i)); + PyObject *tobj = sipConvertFromNewType(t, sipType_QString, + sipTransferObj); + + if (!tobj) + { + delete t; + Py_DECREF(l); + + return 0; + } + + PyList_SET_ITEM(l, i, tobj); + } + + return l; +%End + +%ConvertToTypeCode + PyObject *iter = PyObject_GetIter(sipPy); + + if (!sipIsErr) + { + Py_XDECREF(iter); + + return (iter +#if PY_MAJOR_VERSION < 3 + && !PyString_Check(sipPy) +#endif + && !PyUnicode_Check(sipPy)); + } + + if (!iter) + { + *sipIsErr = 1; + + return 0; + } + + QStringList *ql = new QStringList; + + for (SIP_SSIZE_T i = 0; ; ++i) + { + PyErr_Clear(); + PyObject *itm = PyIter_Next(iter); + + if (!itm) + { + if (PyErr_Occurred()) + { + delete ql; + Py_DECREF(iter); + *sipIsErr = 1; + + return 0; + } + + break; + } + + int state; + QString *t = reinterpret_cast( + sipForceConvertToType(itm, sipType_QString, sipTransferObj, + SIP_NOT_NONE, &state, sipIsErr)); + + if (*sipIsErr) + { + PyErr_Format(PyExc_TypeError, + "index " SIP_SSIZE_T_FORMAT " has type '%s' but 'str' is expected", + i, Py_TYPE(itm)->tp_name); + + Py_DECREF(itm); + delete ql; + Py_DECREF(iter); + + return 0; + } + + ql->append(*t); + + sipReleaseType(t, sipType_QString, state); + Py_DECREF(itm); + } + + Py_DECREF(iter); + + *sipCppPtr = ql; + + return sipGetState(sipTransferObj); +%End +}; diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qreadwritelock.sip pyqt5-5.2.1+dfsg/sip/QtCore/qreadwritelock.sip --- pyqt5-5.2+dfsg/sip/QtCore/qreadwritelock.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qreadwritelock.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qreadwritelock.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qreadwritelock.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qrect.sip pyqt5-5.2.1+dfsg/sip/QtCore/qrect.sip --- pyqt5-5.2+dfsg/sip/QtCore/qrect.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qrect.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qrect.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qrect.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qregexp.sip pyqt5-5.2.1+dfsg/sip/QtCore/qregexp.sip --- pyqt5-5.2+dfsg/sip/QtCore/qregexp.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qregexp.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qregexp.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qregexp.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qregularexpression.sip pyqt5-5.2.1+dfsg/sip/QtCore/qregularexpression.sip --- pyqt5-5.2+dfsg/sip/QtCore/qregularexpression.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qregularexpression.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qregularexpression.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qregularexpression.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qresource.sip pyqt5-5.2.1+dfsg/sip/QtCore/qresource.sip --- pyqt5-5.2+dfsg/sip/QtCore/qresource.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qresource.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qresource.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qresource.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qrunnable.sip pyqt5-5.2.1+dfsg/sip/QtCore/qrunnable.sip --- pyqt5-5.2+dfsg/sip/QtCore/qrunnable.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qrunnable.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qrunnable.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qrunnable.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qsavefile.sip pyqt5-5.2.1+dfsg/sip/QtCore/qsavefile.sip --- pyqt5-5.2+dfsg/sip/QtCore/qsavefile.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qsavefile.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsavefile.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qsavefile.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qsemaphore.sip pyqt5-5.2.1+dfsg/sip/QtCore/qsemaphore.sip --- pyqt5-5.2+dfsg/sip/QtCore/qsemaphore.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qsemaphore.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsemaphore.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qsemaphore.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qsequentialanimationgroup.sip pyqt5-5.2.1+dfsg/sip/QtCore/qsequentialanimationgroup.sip --- pyqt5-5.2+dfsg/sip/QtCore/qsequentialanimationgroup.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qsequentialanimationgroup.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsequentialanimationgroup.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qsequentialanimationgroup.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qsettings.sip pyqt5-5.2.1+dfsg/sip/QtCore/qsettings.sip --- pyqt5-5.2+dfsg/sip/QtCore/qsettings.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qsettings.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsettings.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qsettings.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qsharedmemory.sip pyqt5-5.2.1+dfsg/sip/QtCore/qsharedmemory.sip --- pyqt5-5.2+dfsg/sip/QtCore/qsharedmemory.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qsharedmemory.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsharedmemory.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qsharedmemory.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qsignalmapper.sip pyqt5-5.2.1+dfsg/sip/QtCore/qsignalmapper.sip --- pyqt5-5.2+dfsg/sip/QtCore/qsignalmapper.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qsignalmapper.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsignalmapper.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qsignalmapper.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qsignaltransition.sip pyqt5-5.2.1+dfsg/sip/QtCore/qsignaltransition.sip --- pyqt5-5.2+dfsg/sip/QtCore/qsignaltransition.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qsignaltransition.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsignaltransition.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qsignaltransition.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qsize.sip pyqt5-5.2.1+dfsg/sip/QtCore/qsize.sip --- pyqt5-5.2+dfsg/sip/QtCore/qsize.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qsize.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsize.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qsize.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qsocketnotifier.sip pyqt5-5.2.1+dfsg/sip/QtCore/qsocketnotifier.sip --- pyqt5-5.2+dfsg/sip/QtCore/qsocketnotifier.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qsocketnotifier.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsocketnotifier.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qsocketnotifier.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qsortfilterproxymodel.sip pyqt5-5.2.1+dfsg/sip/QtCore/qsortfilterproxymodel.sip --- pyqt5-5.2+dfsg/sip/QtCore/qsortfilterproxymodel.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qsortfilterproxymodel.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsortfilterproxymodel.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qsortfilterproxymodel.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qstandardpaths.sip pyqt5-5.2.1+dfsg/sip/QtCore/qstandardpaths.sip --- pyqt5-5.2+dfsg/sip/QtCore/qstandardpaths.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qstandardpaths.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qstandardpaths.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qstandardpaths.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qstatemachine.sip pyqt5-5.2.1+dfsg/sip/QtCore/qstatemachine.sip --- pyqt5-5.2+dfsg/sip/QtCore/qstatemachine.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qstatemachine.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qstatemachine.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qstatemachine.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qstate.sip pyqt5-5.2.1+dfsg/sip/QtCore/qstate.sip --- pyqt5-5.2+dfsg/sip/QtCore/qstate.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qstate.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qstate.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qstate.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qstringlistmodel.sip pyqt5-5.2.1+dfsg/sip/QtCore/qstringlistmodel.sip --- pyqt5-5.2+dfsg/sip/QtCore/qstringlistmodel.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qstringlistmodel.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qstringlistmodel.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qstringlistmodel.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qstringlist.sip pyqt5-5.2.1+dfsg/sip/QtCore/qstringlist.sip --- pyqt5-5.2+dfsg/sip/QtCore/qstringlist.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qstringlist.sip 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -// qstringlist.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 -// -// This file is part of the QtCore Python extension module. -// -// Copyright (c) 2014 Riverbank Computing Limited -// -// This file is part of PyQt5. -// -// This file may be used under the terms of the GNU General Public License -// version 3.0 as published by the Free Software Foundation and appearing in -// the file LICENSE included in the packaging of this file. Please review the -// following information to ensure the GNU General Public License version 3.0 -// requirements will be met: http://www.gnu.org/copyleft/gpl.html. -// -// If you do not wish to use this file under the terms of the GPL version 3.0 -// then you may purchase a commercial license. For more information contact -// info@riverbankcomputing.com. -// -// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE -// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - - -// QStringList mapped type. -%MappedType QStringList /DocType="list-of-str"/ -{ -%TypeHeaderCode -#include -%End - -%ConvertToTypeCode -if (sipIsErr == NULL) - return qpycore_PySequence_Check_QStringList(sipPy); - -*sipCppPtr = new QStringList(qpycore_PySequence_AsQStringList(sipPy)); - -return sipGetState(sipTransferObj); -%End - -%ConvertFromTypeCode - return qpycore_PyObject_FromQStringList(*sipCpp); -%End -}; diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qstring.sip pyqt5-5.2.1+dfsg/sip/QtCore/qstring.sip --- pyqt5-5.2+dfsg/sip/QtCore/qstring.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qstring.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qstring.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qstring.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qsystemsemaphore.sip pyqt5-5.2.1+dfsg/sip/QtCore/qsystemsemaphore.sip --- pyqt5-5.2+dfsg/sip/QtCore/qsystemsemaphore.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qsystemsemaphore.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsystemsemaphore.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qsystemsemaphore.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/QtCoremod.sip pyqt5-5.2.1+dfsg/sip/QtCore/QtCoremod.sip --- pyqt5-5.2+dfsg/sip/QtCore/QtCoremod.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/QtCoremod.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// QtCoremod.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// QtCoremod.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // @@ -22,7 +22,7 @@ %Module(name=PyQt5.QtCore, call_super_init=True, keyword_arguments="Optional", version=1) -%Timeline {Qt_5_0_0 Qt_5_0_1 Qt_5_0_2 Qt_5_1_0 Qt_5_1_1 Qt_5_2_0} +%Timeline {Qt_5_0_0 Qt_5_0_1 Qt_5_0_2 Qt_5_1_0 Qt_5_1_1 Qt_5_2_0 Qt_5_2_1} %Platforms {WS_X11 WS_WIN WS_MACX} @@ -36,6 +36,7 @@ %Feature PyQt_PrintPreviewWidget %Feature PyQt_PrintPreviewDialog %Feature PyQt_RawFont +%Feature PyQt_OpenGL %Feature PyQt_Desktop_OpenGL %Copying @@ -174,7 +175,6 @@ %Include qstate.sip %Include qstatemachine.sip %Include qstring.sip -%Include qstringlist.sip %Include qstringlistmodel.sip %Include qsystemsemaphore.sip %Include qtemporarydir.sip @@ -200,6 +200,7 @@ %Include qpycore_qmap.sip %Include qpycore_qpair.sip %Include qpycore_qset.sip +%Include qpycore_qstringlist.sip %Include qpycore_qvector.sip %Include qsysinfo.sip %Include qwineventnotifier.sip diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qtemporarydir.sip pyqt5-5.2.1+dfsg/sip/QtCore/qtemporarydir.sip --- pyqt5-5.2+dfsg/sip/QtCore/qtemporarydir.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qtemporarydir.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtemporarydir.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qtemporarydir.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qtemporaryfile.sip pyqt5-5.2.1+dfsg/sip/QtCore/qtemporaryfile.sip --- pyqt5-5.2+dfsg/sip/QtCore/qtemporaryfile.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qtemporaryfile.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtemporaryfile.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qtemporaryfile.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qtextboundaryfinder.sip pyqt5-5.2.1+dfsg/sip/QtCore/qtextboundaryfinder.sip --- pyqt5-5.2+dfsg/sip/QtCore/qtextboundaryfinder.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qtextboundaryfinder.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtextboundaryfinder.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qtextboundaryfinder.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qtextcodec.sip pyqt5-5.2.1+dfsg/sip/QtCore/qtextcodec.sip --- pyqt5-5.2+dfsg/sip/QtCore/qtextcodec.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qtextcodec.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtextcodec.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qtextcodec.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qtextstream.sip pyqt5-5.2.1+dfsg/sip/QtCore/qtextstream.sip --- pyqt5-5.2+dfsg/sip/QtCore/qtextstream.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qtextstream.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtextstream.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qtextstream.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qthreadpool.sip pyqt5-5.2.1+dfsg/sip/QtCore/qthreadpool.sip --- pyqt5-5.2+dfsg/sip/QtCore/qthreadpool.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qthreadpool.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qthreadpool.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qthreadpool.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qthread.sip pyqt5-5.2.1+dfsg/sip/QtCore/qthread.sip --- pyqt5-5.2+dfsg/sip/QtCore/qthread.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qthread.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qthread.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qthread.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qtimeline.sip pyqt5-5.2.1+dfsg/sip/QtCore/qtimeline.sip --- pyqt5-5.2+dfsg/sip/QtCore/qtimeline.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qtimeline.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtimeline.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qtimeline.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qtimer.sip pyqt5-5.2.1+dfsg/sip/QtCore/qtimer.sip --- pyqt5-5.2+dfsg/sip/QtCore/qtimer.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qtimer.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtimer.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qtimer.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qtimezone.sip pyqt5-5.2.1+dfsg/sip/QtCore/qtimezone.sip --- pyqt5-5.2+dfsg/sip/QtCore/qtimezone.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qtimezone.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtimezone.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qtimezone.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qtranslator.sip pyqt5-5.2.1+dfsg/sip/QtCore/qtranslator.sip --- pyqt5-5.2+dfsg/sip/QtCore/qtranslator.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qtranslator.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtranslator.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qtranslator.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qurlquery.sip pyqt5-5.2.1+dfsg/sip/QtCore/qurlquery.sip --- pyqt5-5.2+dfsg/sip/QtCore/qurlquery.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qurlquery.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qurlquery.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qurlquery.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qurl.sip pyqt5-5.2.1+dfsg/sip/QtCore/qurl.sip --- pyqt5-5.2+dfsg/sip/QtCore/qurl.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qurl.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qurl.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qurl.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // @@ -26,7 +26,7 @@ // Template definition for QUrlTwoFlags. template -class QUrlTwoFlags /PyQt4Flags=0x1/ +class QUrlTwoFlags /PyQtFlags=0x1/ { // These are handled by the %ConvertToTypeCode. //QUrlTwoFlags(E1); diff -Nru pyqt5-5.2+dfsg/sip/QtCore/quuid.sip pyqt5-5.2.1+dfsg/sip/QtCore/quuid.sip --- pyqt5-5.2+dfsg/sip/QtCore/quuid.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/quuid.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// quuid.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// quuid.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qvariantanimation.sip pyqt5-5.2.1+dfsg/sip/QtCore/qvariantanimation.sip --- pyqt5-5.2+dfsg/sip/QtCore/qvariantanimation.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qvariantanimation.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qvariantanimation.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qvariantanimation.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qvariant.sip pyqt5-5.2.1+dfsg/sip/QtCore/qvariant.sip --- pyqt5-5.2+dfsg/sip/QtCore/qvariant.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qvariant.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qvariant.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qvariant.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qwaitcondition.sip pyqt5-5.2.1+dfsg/sip/QtCore/qwaitcondition.sip --- pyqt5-5.2+dfsg/sip/QtCore/qwaitcondition.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qwaitcondition.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qwaitcondition.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qwaitcondition.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtCore/qxmlstream.sip pyqt5-5.2.1+dfsg/sip/QtCore/qxmlstream.sip --- pyqt5-5.2+dfsg/sip/QtCore/qxmlstream.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtCore/qxmlstream.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qxmlstream.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qxmlstream.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtCore Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDBus/qdbusabstractadaptor.sip pyqt5-5.2.1+dfsg/sip/QtDBus/qdbusabstractadaptor.sip --- pyqt5-5.2+dfsg/sip/QtDBus/qdbusabstractadaptor.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDBus/qdbusabstractadaptor.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdbusabstractadaptor.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qdbusabstractadaptor.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtDBus Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDBus/qdbusabstractinterface.sip pyqt5-5.2.1+dfsg/sip/QtDBus/qdbusabstractinterface.sip --- pyqt5-5.2+dfsg/sip/QtDBus/qdbusabstractinterface.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDBus/qdbusabstractinterface.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdbusabstractinterface.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qdbusabstractinterface.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtDBus Python extension module. // @@ -131,7 +131,7 @@ }; %ModuleHeaderCode -#include +#include "qpydbus_api.h" // Imports from QtCore. typedef PyObject *(*pyqt5_from_qvariant_by_type_t)(QVariant &, PyObject *); diff -Nru pyqt5-5.2+dfsg/sip/QtDBus/qdbusargument.sip pyqt5-5.2.1+dfsg/sip/QtDBus/qdbusargument.sip --- pyqt5-5.2+dfsg/sip/QtDBus/qdbusargument.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDBus/qdbusargument.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdbusargument.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qdbusargument.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtDBus Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDBus/qdbusconnectioninterface.sip pyqt5-5.2.1+dfsg/sip/QtDBus/qdbusconnectioninterface.sip --- pyqt5-5.2+dfsg/sip/QtDBus/qdbusconnectioninterface.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDBus/qdbusconnectioninterface.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdbusconnectioninterface.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qdbusconnectioninterface.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtDBus Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDBus/qdbusconnection.sip pyqt5-5.2.1+dfsg/sip/QtDBus/qdbusconnection.sip --- pyqt5-5.2+dfsg/sip/QtDBus/qdbusconnection.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDBus/qdbusconnection.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdbusconnection.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qdbusconnection.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtDBus Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDBus/qdbuserror.sip pyqt5-5.2.1+dfsg/sip/QtDBus/qdbuserror.sip --- pyqt5-5.2+dfsg/sip/QtDBus/qdbuserror.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDBus/qdbuserror.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdbuserror.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qdbuserror.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtDBus Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDBus/qdbusextratypes.sip pyqt5-5.2.1+dfsg/sip/QtDBus/qdbusextratypes.sip --- pyqt5-5.2+dfsg/sip/QtDBus/qdbusextratypes.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDBus/qdbusextratypes.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdbusextratypes.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qdbusextratypes.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtDBus Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDBus/qdbusinterface.sip pyqt5-5.2.1+dfsg/sip/QtDBus/qdbusinterface.sip --- pyqt5-5.2+dfsg/sip/QtDBus/qdbusinterface.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDBus/qdbusinterface.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdbusinterface.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qdbusinterface.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtDBus Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDBus/qdbusmessage.sip pyqt5-5.2.1+dfsg/sip/QtDBus/qdbusmessage.sip --- pyqt5-5.2+dfsg/sip/QtDBus/qdbusmessage.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDBus/qdbusmessage.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdbusmessage.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qdbusmessage.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtDBus Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDBus/qdbuspendingcall.sip pyqt5-5.2.1+dfsg/sip/QtDBus/qdbuspendingcall.sip --- pyqt5-5.2+dfsg/sip/QtDBus/qdbuspendingcall.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDBus/qdbuspendingcall.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdbuspendingcall.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qdbuspendingcall.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtDBus Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDBus/qdbusservicewatcher.sip pyqt5-5.2.1+dfsg/sip/QtDBus/qdbusservicewatcher.sip --- pyqt5-5.2+dfsg/sip/QtDBus/qdbusservicewatcher.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDBus/qdbusservicewatcher.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdbusservicewatcher.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qdbusservicewatcher.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtDBus Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDBus/qdbusunixfiledescriptor.sip pyqt5-5.2.1+dfsg/sip/QtDBus/qdbusunixfiledescriptor.sip --- pyqt5-5.2+dfsg/sip/QtDBus/qdbusunixfiledescriptor.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDBus/qdbusunixfiledescriptor.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdbusunixfiledescriptor.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qdbusunixfiledescriptor.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtDBus Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDBus/QtDBusmod.sip pyqt5-5.2.1+dfsg/sip/QtDBus/QtDBusmod.sip --- pyqt5-5.2+dfsg/sip/QtDBus/QtDBusmod.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDBus/QtDBusmod.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// QtDBusmod.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// QtDBusmod.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtDBus Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDesigner/abstractactioneditor.sip pyqt5-5.2.1+dfsg/sip/QtDesigner/abstractactioneditor.sip --- pyqt5-5.2+dfsg/sip/QtDesigner/abstractactioneditor.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDesigner/abstractactioneditor.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// abstractactioneditor.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// abstractactioneditor.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtDesigner Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDesigner/abstractformbuilder.sip pyqt5-5.2.1+dfsg/sip/QtDesigner/abstractformbuilder.sip --- pyqt5-5.2+dfsg/sip/QtDesigner/abstractformbuilder.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDesigner/abstractformbuilder.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// abstractformbuilder.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// abstractformbuilder.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtDesigner Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDesigner/abstractformeditor.sip pyqt5-5.2.1+dfsg/sip/QtDesigner/abstractformeditor.sip --- pyqt5-5.2+dfsg/sip/QtDesigner/abstractformeditor.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDesigner/abstractformeditor.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// abstractformeditor.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// abstractformeditor.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtDesigner Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDesigner/abstractformwindowcursor.sip pyqt5-5.2.1+dfsg/sip/QtDesigner/abstractformwindowcursor.sip --- pyqt5-5.2+dfsg/sip/QtDesigner/abstractformwindowcursor.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDesigner/abstractformwindowcursor.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// abstractformwindowcursor.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// abstractformwindowcursor.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtDesigner Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDesigner/abstractformwindowmanager.sip pyqt5-5.2.1+dfsg/sip/QtDesigner/abstractformwindowmanager.sip --- pyqt5-5.2+dfsg/sip/QtDesigner/abstractformwindowmanager.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDesigner/abstractformwindowmanager.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// abstractformwindowmanager.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// abstractformwindowmanager.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtDesigner Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDesigner/abstractformwindow.sip pyqt5-5.2.1+dfsg/sip/QtDesigner/abstractformwindow.sip --- pyqt5-5.2+dfsg/sip/QtDesigner/abstractformwindow.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDesigner/abstractformwindow.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// abstractformwindow.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// abstractformwindow.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtDesigner Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDesigner/abstractobjectinspector.sip pyqt5-5.2.1+dfsg/sip/QtDesigner/abstractobjectinspector.sip --- pyqt5-5.2+dfsg/sip/QtDesigner/abstractobjectinspector.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDesigner/abstractobjectinspector.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// abstractobjectinspector.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// abstractobjectinspector.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtDesigner Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDesigner/abstractpropertyeditor.sip pyqt5-5.2.1+dfsg/sip/QtDesigner/abstractpropertyeditor.sip --- pyqt5-5.2+dfsg/sip/QtDesigner/abstractpropertyeditor.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDesigner/abstractpropertyeditor.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// abstractpropertyeditor.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// abstractpropertyeditor.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtDesigner Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDesigner/abstractwidgetbox.sip pyqt5-5.2.1+dfsg/sip/QtDesigner/abstractwidgetbox.sip --- pyqt5-5.2+dfsg/sip/QtDesigner/abstractwidgetbox.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDesigner/abstractwidgetbox.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// abstractwidgetbox.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// abstractwidgetbox.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtDesigner Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDesigner/container.sip pyqt5-5.2.1+dfsg/sip/QtDesigner/container.sip --- pyqt5-5.2+dfsg/sip/QtDesigner/container.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDesigner/container.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// container.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// container.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtDesigner Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDesigner/customwidget.sip pyqt5-5.2.1+dfsg/sip/QtDesigner/customwidget.sip --- pyqt5-5.2+dfsg/sip/QtDesigner/customwidget.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDesigner/customwidget.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// customwidget.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// customwidget.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtDesigner Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDesigner/default_extensionfactory.sip pyqt5-5.2.1+dfsg/sip/QtDesigner/default_extensionfactory.sip --- pyqt5-5.2+dfsg/sip/QtDesigner/default_extensionfactory.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDesigner/default_extensionfactory.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// default_extensionfactory.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// default_extensionfactory.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtDesigner Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDesigner/extension.sip pyqt5-5.2.1+dfsg/sip/QtDesigner/extension.sip --- pyqt5-5.2+dfsg/sip/QtDesigner/extension.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDesigner/extension.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// extension.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// extension.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtDesigner Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDesigner/formbuilder.sip pyqt5-5.2.1+dfsg/sip/QtDesigner/formbuilder.sip --- pyqt5-5.2+dfsg/sip/QtDesigner/formbuilder.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDesigner/formbuilder.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// formbuilder.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// formbuilder.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtDesigner Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDesigner/membersheet.sip pyqt5-5.2.1+dfsg/sip/QtDesigner/membersheet.sip --- pyqt5-5.2+dfsg/sip/QtDesigner/membersheet.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDesigner/membersheet.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// membersheet.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// membersheet.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtDesigner Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDesigner/propertysheet.sip pyqt5-5.2.1+dfsg/sip/QtDesigner/propertysheet.sip --- pyqt5-5.2+dfsg/sip/QtDesigner/propertysheet.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDesigner/propertysheet.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// propertysheet.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// propertysheet.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtDesigner Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDesigner/qextensionmanager.sip pyqt5-5.2.1+dfsg/sip/QtDesigner/qextensionmanager.sip --- pyqt5-5.2+dfsg/sip/QtDesigner/qextensionmanager.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDesigner/qextensionmanager.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qextensionmanager.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qextensionmanager.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtDesigner Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDesigner/QtDesignermod.sip pyqt5-5.2.1+dfsg/sip/QtDesigner/QtDesignermod.sip --- pyqt5-5.2+dfsg/sip/QtDesigner/QtDesignermod.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDesigner/QtDesignermod.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// QtDesignermod.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// QtDesignermod.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtDesigner Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtDesigner/taskmenu.sip pyqt5-5.2.1+dfsg/sip/QtDesigner/taskmenu.sip --- pyqt5-5.2+dfsg/sip/QtDesigner/taskmenu.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtDesigner/taskmenu.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// taskmenu.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// taskmenu.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtDesigner Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/opengl_types.sip pyqt5-5.2.1+dfsg/sip/QtGui/opengl_types.sip --- pyqt5-5.2+dfsg/sip/QtGui/opengl_types.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/opengl_types.sip 2014-03-14 14:38:45.000000000 +0000 @@ -18,6 +18,8 @@ // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +%If (PyQt_OpenGL) + typedef char GLchar; typedef qint8 GLbyte; typedef quint8 GLubyte; @@ -37,3 +39,5 @@ typedef double GLdouble; typedef long GLintptr; typedef long GLsizeiptr; + +%End diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qabstracttextdocumentlayout.sip pyqt5-5.2.1+dfsg/sip/QtGui/qabstracttextdocumentlayout.sip --- pyqt5-5.2+dfsg/sip/QtGui/qabstracttextdocumentlayout.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qabstracttextdocumentlayout.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qabstracttextdocumentlayout.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qabstracttextdocumentlayout.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qbackingstore.sip pyqt5-5.2.1+dfsg/sip/QtGui/qbackingstore.sip --- pyqt5-5.2+dfsg/sip/QtGui/qbackingstore.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qbackingstore.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qbackingstore.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qbackingstore.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qbitmap.sip pyqt5-5.2.1+dfsg/sip/QtGui/qbitmap.sip --- pyqt5-5.2+dfsg/sip/QtGui/qbitmap.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qbitmap.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qbitmap.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qbitmap.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qbrush.sip pyqt5-5.2.1+dfsg/sip/QtGui/qbrush.sip --- pyqt5-5.2+dfsg/sip/QtGui/qbrush.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qbrush.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qbrush.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qbrush.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qclipboard.sip pyqt5-5.2.1+dfsg/sip/QtGui/qclipboard.sip --- pyqt5-5.2+dfsg/sip/QtGui/qclipboard.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qclipboard.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qclipboard.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qclipboard.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qcolor.sip pyqt5-5.2.1+dfsg/sip/QtGui/qcolor.sip --- pyqt5-5.2+dfsg/sip/QtGui/qcolor.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qcolor.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qcolor.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qcolor.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qcursor.sip pyqt5-5.2.1+dfsg/sip/QtGui/qcursor.sip --- pyqt5-5.2+dfsg/sip/QtGui/qcursor.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qcursor.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qcursor.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qcursor.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qdesktopservices.sip pyqt5-5.2.1+dfsg/sip/QtGui/qdesktopservices.sip --- pyqt5-5.2+dfsg/sip/QtGui/qdesktopservices.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qdesktopservices.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdesktopservices.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qdesktopservices.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qdrag.sip pyqt5-5.2.1+dfsg/sip/QtGui/qdrag.sip --- pyqt5-5.2+dfsg/sip/QtGui/qdrag.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qdrag.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdrag.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qdrag.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qevent.sip pyqt5-5.2.1+dfsg/sip/QtGui/qevent.sip --- pyqt5-5.2+dfsg/sip/QtGui/qevent.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qevent.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qevent.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qevent.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qfontdatabase.sip pyqt5-5.2.1+dfsg/sip/QtGui/qfontdatabase.sip --- pyqt5-5.2+dfsg/sip/QtGui/qfontdatabase.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qfontdatabase.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qfontdatabase.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qfontdatabase.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qfontinfo.sip pyqt5-5.2.1+dfsg/sip/QtGui/qfontinfo.sip --- pyqt5-5.2+dfsg/sip/QtGui/qfontinfo.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qfontinfo.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qfontinfo.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qfontinfo.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qfontmetrics.sip pyqt5-5.2.1+dfsg/sip/QtGui/qfontmetrics.sip --- pyqt5-5.2+dfsg/sip/QtGui/qfontmetrics.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qfontmetrics.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qfontmetrics.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qfontmetrics.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qfont.sip pyqt5-5.2.1+dfsg/sip/QtGui/qfont.sip --- pyqt5-5.2+dfsg/sip/QtGui/qfont.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qfont.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qfont.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qfont.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qgenericmatrix.sip pyqt5-5.2.1+dfsg/sip/QtGui/qgenericmatrix.sip --- pyqt5-5.2+dfsg/sip/QtGui/qgenericmatrix.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qgenericmatrix.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgenericmatrix.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qgenericmatrix.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qglyphrun.sip pyqt5-5.2.1+dfsg/sip/QtGui/qglyphrun.sip --- pyqt5-5.2+dfsg/sip/QtGui/qglyphrun.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qglyphrun.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qglyphrun.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qglyphrun.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qguiapplication.sip pyqt5-5.2.1+dfsg/sip/QtGui/qguiapplication.sip --- pyqt5-5.2+dfsg/sip/QtGui/qguiapplication.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qguiapplication.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qguiapplication.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qguiapplication.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // @@ -32,67 +32,83 @@ sipTypeDef **type; int yes, no; } graph[] = { - #if defined(SIP_FEATURE_PyQt_SessionManager) - {sipName_QSessionManager, &sipType_QSessionManager, -1, 1}, - #else - {0, 0, -1, 1}, - #endif - {sipName_QClipboard, &sipType_QClipboard, -1, 2}, - {sipName_QStandardItemModel, &sipType_QStandardItemModel, -1, 3}, - {sipName_QDrag, &sipType_QDrag, -1, 4}, - #if QT_VERSION >= 0x050100 - {sipName_QOffscreenSurface, &sipType_QOffscreenSurface, -1, 5}, + {sipName_QStandardItemModel, &sipType_QStandardItemModel, -1, 1}, + #if defined(SIP_FEATURE_PyQt_OpenGL) + {sipName_QOpenGLContext, &sipType_QOpenGLContext, -1, 2}, + #else + {0, 0, -1, 2}, + #endif + {sipName_QTextDocument, &sipType_QTextDocument, -1, 3}, + {sipName_QGuiApplication, &sipType_QGuiApplication, -1, 4}, + {sipName_QDrag, &sipType_QDrag, -1, 5}, + #if QT_VERSION >= 0x050100 && defined(SIP_FEATURE_PyQt_OpenGL) + {sipName_QOpenGLVertexArrayObject, &sipType_QOpenGLVertexArrayObject, -1, 6}, #else - {0, 0, -1, 5}, + {0, 0, -1, 6}, #endif - {sipName_QOpenGLContext, &sipType_QOpenGLContext, -1, 6}, - {sipName_QSyntaxHighlighter, &sipType_QSyntaxHighlighter, -1, 7}, - {sipName_QScreen, &sipType_QScreen, -1, 8}, #if QT_VERSION >= 0x050100 - {sipName_QOpenGLVertexArrayObject, &sipType_QOpenGLVertexArrayObject, -1, 9}, + {sipName_QOffscreenSurface, &sipType_QOffscreenSurface, -1, 7}, #else - {0, 0, -1, 9}, + {0, 0, -1, 7}, #endif - {sipName_QPdfWriter, &sipType_QPdfWriter, -1, 10}, - {sipName_QOpenGLContextGroup, &sipType_QOpenGLContextGroup, -1, 11}, - #if QT_VERSION >= 0x050100 - {sipName_QOpenGLDebugLogger, &sipType_QOpenGLDebugLogger, -1, 12}, + {sipName_QInputMethod, &sipType_QInputMethod, -1, 8}, + {sipName_QScreen, &sipType_QScreen, -1, 9}, + {sipName_QClipboard, &sipType_QClipboard, -1, 10}, + {sipName_QSyntaxHighlighter, &sipType_QSyntaxHighlighter, -1, 11}, + #if defined(SIP_FEATURE_PyQt_OpenGL) + {sipName_QOpenGLShaderProgram, &sipType_QOpenGLShaderProgram, -1, 12}, #else {0, 0, -1, 12}, #endif - {sipName_QValidator, &sipType_QValidator, 25, 13}, - {sipName_QTextObject, &sipType_QTextObject, 29, 14}, + {sipName_QTextObject, &sipType_QTextObject, 25, 13}, #if QT_VERSION >= 0x050100 && defined(SIP_FEATURE_PyQt_Desktop_OpenGL) - {sipName_QOpenGLTimeMonitor, &sipType_QOpenGLTimeMonitor, -1, 15}, + {sipName_QOpenGLTimerQuery, &sipType_QOpenGLTimerQuery, -1, 14}, #else - {0, 0, -1, 15}, + {0, 0, -1, 14}, #endif - {sipName_QInputMethod, &sipType_QInputMethod, -1, 16}, - {sipName_QOpenGLShaderProgram, &sipType_QOpenGLShaderProgram, -1, 17}, - {sipName_QWindow, &sipType_QWindow, -1, 18}, - {sipName_QAbstractTextDocumentLayout, &sipType_QAbstractTextDocumentLayout, -1, 19}, + {sipName_QValidator, &sipType_QValidator, 29, 15}, #if QT_VERSION >= 0x050100 && defined(SIP_FEATURE_PyQt_Desktop_OpenGL) - {sipName_QOpenGLTimerQuery, &sipType_QOpenGLTimerQuery, -1, 20}, + {sipName_QOpenGLTimeMonitor, &sipType_QOpenGLTimeMonitor, -1, 16}, #else - {0, 0, -1, 20}, + {0, 0, -1, 16}, #endif - {sipName_QStyleHints, &sipType_QStyleHints, -1, 21}, - {sipName_QTextDocument, &sipType_QTextDocument, -1, 22}, - {sipName_QMovie, &sipType_QMovie, -1, 23}, - {sipName_QOpenGLShader, &sipType_QOpenGLShader, -1, 24}, - {sipName_QGuiApplication, &sipType_QGuiApplication, -1, -1}, - #if QT_VERSION >= 0x050100 - {sipName_QRegularExpressionValidator, &sipType_QRegularExpressionValidator, -1, 26}, + {sipName_QAbstractTextDocumentLayout, &sipType_QAbstractTextDocumentLayout, -1, 17}, + {sipName_QMovie, &sipType_QMovie, -1, 18}, + {sipName_QPdfWriter, &sipType_QPdfWriter, -1, 19}, + {sipName_QWindow, &sipType_QWindow, -1, 20}, + #if defined(SIP_FEATURE_PyQt_OpenGL) + {sipName_QOpenGLContextGroup, &sipType_QOpenGLContextGroup, -1, 21}, + #else + {0, 0, -1, 21}, + #endif + {sipName_QStyleHints, &sipType_QStyleHints, -1, 22}, + #if QT_VERSION >= 0x050100 && defined(SIP_FEATURE_PyQt_OpenGL) + {sipName_QOpenGLDebugLogger, &sipType_QOpenGLDebugLogger, -1, 23}, #else - {0, 0, -1, 26}, + {0, 0, -1, 23}, #endif - {sipName_QIntValidator, &sipType_QIntValidator, -1, 27}, - {sipName_QDoubleValidator, &sipType_QDoubleValidator, -1, 28}, - {sipName_QRegExpValidator, &sipType_QRegExpValidator, -1, -1}, - {sipName_QTextFrame, &sipType_QTextFrame, 31, 30}, - {sipName_QTextBlockGroup, &sipType_QTextBlockGroup, 32, -1}, + #if defined(SIP_FEATURE_PyQt_SessionManager) + {sipName_QSessionManager, &sipType_QSessionManager, -1, 24}, + #else + {0, 0, -1, 24}, + #endif + #if defined(SIP_FEATURE_PyQt_OpenGL) + {sipName_QOpenGLShader, &sipType_QOpenGLShader, -1, -1}, + #else + {0, 0, -1, -1}, + #endif + {sipName_QTextFrame, &sipType_QTextFrame, 27, 26}, + {sipName_QTextBlockGroup, &sipType_QTextBlockGroup, 28, -1}, {sipName_QTextTable, &sipType_QTextTable, -1, -1}, {sipName_QTextList, &sipType_QTextList, -1, -1}, + {sipName_QRegExpValidator, &sipType_QRegExpValidator, -1, 30}, + {sipName_QIntValidator, &sipType_QIntValidator, -1, 31}, + #if QT_VERSION >= 0x050100 + {sipName_QRegularExpressionValidator, &sipType_QRegularExpressionValidator, -1, 32}, + #else + {0, 0, -1, 32}, + #endif + {sipName_QDoubleValidator, &sipType_QDoubleValidator, -1, -1}, }; int i = 0; diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qiconengine.sip pyqt5-5.2.1+dfsg/sip/QtGui/qiconengine.sip --- pyqt5-5.2+dfsg/sip/QtGui/qiconengine.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qiconengine.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qiconengine.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qiconengine.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qicon.sip pyqt5-5.2.1+dfsg/sip/QtGui/qicon.sip --- pyqt5-5.2+dfsg/sip/QtGui/qicon.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qicon.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qicon.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qicon.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qimageiohandler.sip pyqt5-5.2.1+dfsg/sip/QtGui/qimageiohandler.sip --- pyqt5-5.2+dfsg/sip/QtGui/qimageiohandler.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qimageiohandler.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qimageiohandler.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qimageiohandler.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qimagereader.sip pyqt5-5.2.1+dfsg/sip/QtGui/qimagereader.sip --- pyqt5-5.2+dfsg/sip/QtGui/qimagereader.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qimagereader.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qimagereader.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qimagereader.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qimage.sip pyqt5-5.2.1+dfsg/sip/QtGui/qimage.sip --- pyqt5-5.2+dfsg/sip/QtGui/qimage.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qimage.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qimage.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qimage.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qimagewriter.sip pyqt5-5.2.1+dfsg/sip/QtGui/qimagewriter.sip --- pyqt5-5.2+dfsg/sip/QtGui/qimagewriter.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qimagewriter.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qimagewriter.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qimagewriter.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qinputmethod.sip pyqt5-5.2.1+dfsg/sip/QtGui/qinputmethod.sip --- pyqt5-5.2+dfsg/sip/QtGui/qinputmethod.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qinputmethod.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qinputmethod.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qinputmethod.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qkeysequence.sip pyqt5-5.2.1+dfsg/sip/QtGui/qkeysequence.sip --- pyqt5-5.2+dfsg/sip/QtGui/qkeysequence.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qkeysequence.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qkeysequence.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qkeysequence.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qmatrix4x4.sip pyqt5-5.2.1+dfsg/sip/QtGui/qmatrix4x4.sip --- pyqt5-5.2+dfsg/sip/QtGui/qmatrix4x4.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qmatrix4x4.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmatrix4x4.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qmatrix4x4.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qmovie.sip pyqt5-5.2.1+dfsg/sip/QtGui/qmovie.sip --- pyqt5-5.2+dfsg/sip/QtGui/qmovie.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qmovie.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmovie.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qmovie.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qoffscreensurface.sip pyqt5-5.2.1+dfsg/sip/QtGui/qoffscreensurface.sip --- pyqt5-5.2+dfsg/sip/QtGui/qoffscreensurface.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qoffscreensurface.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qoffscreensurface.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qoffscreensurface.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qopenglbuffer.sip pyqt5-5.2.1+dfsg/sip/QtGui/qopenglbuffer.sip --- pyqt5-5.2+dfsg/sip/QtGui/qopenglbuffer.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qopenglbuffer.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qopenglbuffer.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qopenglbuffer.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // @@ -20,6 +20,8 @@ // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +%If (PyQt_OpenGL) + class QOpenGLBuffer { %TypeHeaderCode @@ -78,3 +80,5 @@ void *map(QOpenGLBuffer::Access access); bool unmap(); }; + +%End diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qopenglcontext.sip pyqt5-5.2.1+dfsg/sip/QtGui/qopenglcontext.sip --- pyqt5-5.2+dfsg/sip/QtGui/qopenglcontext.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qopenglcontext.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qopenglcontext.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qopenglcontext.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // @@ -24,6 +24,8 @@ #include %End +%If (PyQt_OpenGL) + class QOpenGLContextGroup : QObject { %TypeHeaderCode @@ -39,6 +41,9 @@ QOpenGLContextGroup(); }; +%End +%If (PyQt_OpenGL) + class QOpenGLContext : QObject { %TypeHeaderCode @@ -80,7 +85,9 @@ %End }; +%End %If (Qt_5_1_0 -) +%If (PyQt_OpenGL) class QOpenGLVersionProfile { @@ -103,9 +110,14 @@ }; %End +%End %If (Qt_5_1_0 -) +%If (PyQt_OpenGL) bool operator==(const QOpenGLVersionProfile &lhs, const QOpenGLVersionProfile &rhs); %End +%End %If (Qt_5_1_0 -) +%If (PyQt_OpenGL) bool operator!=(const QOpenGLVersionProfile &lhs, const QOpenGLVersionProfile &rhs); %End +%End diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qopengldebug.sip pyqt5-5.2.1+dfsg/sip/QtGui/qopengldebug.sip --- pyqt5-5.2+dfsg/sip/QtGui/qopengldebug.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qopengldebug.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qopengldebug.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qopengldebug.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // @@ -27,6 +27,7 @@ %End %If (Qt_5_1_0 -) +%If (PyQt_OpenGL) class QOpenGLDebugMessage { @@ -93,16 +94,24 @@ }; %End +%End %If (Qt_5_1_0 -) +%If (PyQt_OpenGL) QFlags operator|(QOpenGLDebugMessage::Source f1, QFlags f2); %End +%End %If (Qt_5_1_0 -) +%If (PyQt_OpenGL) QFlags operator|(QOpenGLDebugMessage::Type f1, QFlags f2); %End +%End %If (Qt_5_1_0 -) +%If (PyQt_OpenGL) QFlags operator|(QOpenGLDebugMessage::Severity f1, QFlags f2); %End +%End %If (Qt_5_1_0 -) +%If (PyQt_OpenGL) class QOpenGLDebugLogger : QObject { @@ -144,3 +153,4 @@ }; %End +%End diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qopenglframebufferobject.sip pyqt5-5.2.1+dfsg/sip/QtGui/qopenglframebufferobject.sip --- pyqt5-5.2+dfsg/sip/QtGui/qopenglframebufferobject.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qopenglframebufferobject.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qopenglframebufferobject.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qopenglframebufferobject.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // @@ -20,6 +20,8 @@ // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +%If (PyQt_OpenGL) + class QOpenGLFramebufferObject { %TypeHeaderCode @@ -73,6 +75,9 @@ QOpenGLFramebufferObject(const QOpenGLFramebufferObject &); }; +%End +%If (PyQt_OpenGL) + class QOpenGLFramebufferObjectFormat { %TypeHeaderCode @@ -96,3 +101,5 @@ bool operator==(const QOpenGLFramebufferObjectFormat &other) const; bool operator!=(const QOpenGLFramebufferObjectFormat &other) const; }; + +%End diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qopenglpaintdevice.sip pyqt5-5.2.1+dfsg/sip/QtGui/qopenglpaintdevice.sip --- pyqt5-5.2+dfsg/sip/QtGui/qopenglpaintdevice.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qopenglpaintdevice.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qopenglpaintdevice.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qopenglpaintdevice.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // @@ -20,6 +20,8 @@ // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +%If (PyQt_OpenGL) + class QOpenGLPaintDevice : QPaintDevice { %TypeHeaderCode @@ -54,3 +56,5 @@ QOpenGLPaintDevice(const QOpenGLPaintDevice &); %End }; + +%End diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qopenglpixeltransferoptions.sip pyqt5-5.2.1+dfsg/sip/QtGui/qopenglpixeltransferoptions.sip --- pyqt5-5.2+dfsg/sip/QtGui/qopenglpixeltransferoptions.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qopenglpixeltransferoptions.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qopenglpixeltransferoptions.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qopenglpixeltransferoptions.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // @@ -21,6 +21,7 @@ %If (Qt_5_2_0 -) +%If (PyQt_OpenGL) class QOpenGLPixelTransferOptions { @@ -52,3 +53,4 @@ }; %End +%End diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qopenglshaderprogram.sip pyqt5-5.2.1+dfsg/sip/QtGui/qopenglshaderprogram.sip --- pyqt5-5.2+dfsg/sip/QtGui/qopenglshaderprogram.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qopenglshaderprogram.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qopenglshaderprogram.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qopenglshaderprogram.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // @@ -24,6 +24,8 @@ #include %End +%If (PyQt_OpenGL) + class QOpenGLShader : QObject { %TypeHeaderCode @@ -66,7 +68,11 @@ QOpenGLShader(const QOpenGLShader &); }; +%End +%If (PyQt_OpenGL) QFlags operator|(QOpenGLShader::ShaderTypeBit f1, QFlags f2); +%End +%If (PyQt_OpenGL) class QOpenGLShaderProgram : QObject { @@ -321,10 +327,14 @@ QOpenGLShaderProgram(const QOpenGLShaderProgram &); }; +%End + %ModuleHeaderCode -#include +#include "qpyopengl_api.h" %End %InitialisationCode +#if defined(SIP_FEATURE_PyQt_OpenGL) qpyopengl_init(); +#endif %End diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qopengltexture.sip pyqt5-5.2.1+dfsg/sip/QtGui/qopengltexture.sip --- pyqt5-5.2+dfsg/sip/QtGui/qopengltexture.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qopengltexture.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qopengltexture.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qopengltexture.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // @@ -27,6 +27,7 @@ %End %If (Qt_5_2_0 -) +%If (PyQt_OpenGL) class QOpenGLTexture { @@ -382,6 +383,9 @@ }; %End +%End %If (Qt_5_2_0 -) +%If (PyQt_OpenGL) QFlags operator|(QOpenGLTexture::Feature f1, QFlags f2); %End +%End diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qopengltimerquery.sip pyqt5-5.2.1+dfsg/sip/QtGui/qopengltimerquery.sip --- pyqt5-5.2+dfsg/sip/QtGui/qopengltimerquery.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qopengltimerquery.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qopengltimerquery.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qopengltimerquery.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qopenglversionfunctions.sip pyqt5-5.2.1+dfsg/sip/QtGui/qopenglversionfunctions.sip --- pyqt5-5.2+dfsg/sip/QtGui/qopenglversionfunctions.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qopenglversionfunctions.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qopenglversionfunctions.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qopenglversionfunctions.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // @@ -21,6 +21,7 @@ %If (Qt_5_1_0 -) +%If (PyQt_OpenGL) class QAbstractOpenGLFunctions /NoDefaultCtors,Supertype=sip.wrapper/ { @@ -32,3 +33,4 @@ }; %End +%End diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qopenglvertexarrayobject.sip pyqt5-5.2.1+dfsg/sip/QtGui/qopenglvertexarrayobject.sip --- pyqt5-5.2+dfsg/sip/QtGui/qopenglvertexarrayobject.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qopenglvertexarrayobject.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qopenglvertexarrayobject.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qopenglvertexarrayobject.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // @@ -21,6 +21,7 @@ %If (Qt_5_1_0 -) +%If (PyQt_OpenGL) class QOpenGLVertexArrayObject : QObject { @@ -70,3 +71,4 @@ }; %End +%End diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qpagedpaintdevice.sip pyqt5-5.2.1+dfsg/sip/QtGui/qpagedpaintdevice.sip --- pyqt5-5.2+dfsg/sip/QtGui/qpagedpaintdevice.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qpagedpaintdevice.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qpagedpaintdevice.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qpagedpaintdevice.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qpaintdevice.sip pyqt5-5.2.1+dfsg/sip/QtGui/qpaintdevice.sip --- pyqt5-5.2+dfsg/sip/QtGui/qpaintdevice.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qpaintdevice.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qpaintdevice.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qpaintdevice.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qpaintengine.sip pyqt5-5.2.1+dfsg/sip/QtGui/qpaintengine.sip --- pyqt5-5.2+dfsg/sip/QtGui/qpaintengine.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qpaintengine.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qpaintengine.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qpaintengine.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qpainterpath.sip pyqt5-5.2.1+dfsg/sip/QtGui/qpainterpath.sip --- pyqt5-5.2+dfsg/sip/QtGui/qpainterpath.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qpainterpath.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qpainterpath.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qpainterpath.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qpainter.sip pyqt5-5.2.1+dfsg/sip/QtGui/qpainter.sip --- pyqt5-5.2+dfsg/sip/QtGui/qpainter.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qpainter.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qpainter.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qpainter.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qpalette.sip pyqt5-5.2.1+dfsg/sip/QtGui/qpalette.sip --- pyqt5-5.2+dfsg/sip/QtGui/qpalette.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qpalette.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qpalette.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qpalette.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qpdfwriter.sip pyqt5-5.2.1+dfsg/sip/QtGui/qpdfwriter.sip --- pyqt5-5.2+dfsg/sip/QtGui/qpdfwriter.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qpdfwriter.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qpdfwriter.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qpdfwriter.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qpen.sip pyqt5-5.2.1+dfsg/sip/QtGui/qpen.sip --- pyqt5-5.2+dfsg/sip/QtGui/qpen.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qpen.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qpen.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qpen.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qpicture.sip pyqt5-5.2.1+dfsg/sip/QtGui/qpicture.sip --- pyqt5-5.2+dfsg/sip/QtGui/qpicture.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qpicture.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qpicture.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qpicture.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qpixmapcache.sip pyqt5-5.2.1+dfsg/sip/QtGui/qpixmapcache.sip --- pyqt5-5.2+dfsg/sip/QtGui/qpixmapcache.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qpixmapcache.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qpixmapcache.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qpixmapcache.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qpixmap.sip pyqt5-5.2.1+dfsg/sip/QtGui/qpixmap.sip --- pyqt5-5.2+dfsg/sip/QtGui/qpixmap.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qpixmap.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qpixmap.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qpixmap.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qpolygon.sip pyqt5-5.2.1+dfsg/sip/QtGui/qpolygon.sip --- pyqt5-5.2+dfsg/sip/QtGui/qpolygon.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qpolygon.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qpolygon.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qpolygon.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qpygui_qpair.sip pyqt5-5.2.1+dfsg/sip/QtGui/qpygui_qpair.sip --- pyqt5-5.2+dfsg/sip/QtGui/qpygui_qpair.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qpygui_qpair.sip 2014-03-14 14:38:45.000000000 +0000 @@ -19,6 +19,10 @@ // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +%If (Qt_5_2_0 -) + +%If (PyQt_OpenGL) + %MappedType QPair /DocType="tuple-of-QOpenGLTexture.Filter-QOpenGLTexture.Filter"/ { @@ -110,6 +114,12 @@ %End }; +%End + +%End + + +%If (Qt_5_2_0 -) %MappedType QPair /DocType="tuple-of-float-float"/ { @@ -202,3 +212,5 @@ return sipGetState(sipTransferObj); %End }; + +%End diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qquaternion.sip pyqt5-5.2.1+dfsg/sip/QtGui/qquaternion.sip --- pyqt5-5.2+dfsg/sip/QtGui/qquaternion.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qquaternion.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qquaternion.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qquaternion.sip generated by MetaSIP on Fri Mar 14 14:38:40 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qrawfont.sip pyqt5-5.2.1+dfsg/sip/QtGui/qrawfont.sip --- pyqt5-5.2+dfsg/sip/QtGui/qrawfont.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qrawfont.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qrawfont.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qrawfont.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qregion.sip pyqt5-5.2.1+dfsg/sip/QtGui/qregion.sip --- pyqt5-5.2+dfsg/sip/QtGui/qregion.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qregion.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qregion.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qregion.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qrgb.sip pyqt5-5.2.1+dfsg/sip/QtGui/qrgb.sip --- pyqt5-5.2+dfsg/sip/QtGui/qrgb.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qrgb.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qrgb.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qrgb.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qscreen.sip pyqt5-5.2.1+dfsg/sip/QtGui/qscreen.sip --- pyqt5-5.2+dfsg/sip/QtGui/qscreen.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qscreen.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qscreen.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qscreen.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qsessionmanager.sip pyqt5-5.2.1+dfsg/sip/QtGui/qsessionmanager.sip --- pyqt5-5.2+dfsg/sip/QtGui/qsessionmanager.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qsessionmanager.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsessionmanager.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qsessionmanager.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qstandarditemmodel.sip pyqt5-5.2.1+dfsg/sip/QtGui/qstandarditemmodel.sip --- pyqt5-5.2+dfsg/sip/QtGui/qstandarditemmodel.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qstandarditemmodel.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qstandarditemmodel.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qstandarditemmodel.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qstatictext.sip pyqt5-5.2.1+dfsg/sip/QtGui/qstatictext.sip --- pyqt5-5.2+dfsg/sip/QtGui/qstatictext.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qstatictext.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qstatictext.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qstatictext.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qstylehints.sip pyqt5-5.2.1+dfsg/sip/QtGui/qstylehints.sip --- pyqt5-5.2+dfsg/sip/QtGui/qstylehints.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qstylehints.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qstylehints.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qstylehints.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qsurfaceformat.sip pyqt5-5.2.1+dfsg/sip/QtGui/qsurfaceformat.sip --- pyqt5-5.2+dfsg/sip/QtGui/qsurfaceformat.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qsurfaceformat.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsurfaceformat.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qsurfaceformat.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qsurface.sip pyqt5-5.2.1+dfsg/sip/QtGui/qsurface.sip --- pyqt5-5.2+dfsg/sip/QtGui/qsurface.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qsurface.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsurface.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qsurface.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qsyntaxhighlighter.sip pyqt5-5.2.1+dfsg/sip/QtGui/qsyntaxhighlighter.sip --- pyqt5-5.2+dfsg/sip/QtGui/qsyntaxhighlighter.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qsyntaxhighlighter.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsyntaxhighlighter.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qsyntaxhighlighter.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qtextcursor.sip pyqt5-5.2.1+dfsg/sip/QtGui/qtextcursor.sip --- pyqt5-5.2+dfsg/sip/QtGui/qtextcursor.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qtextcursor.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtextcursor.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qtextcursor.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qtextdocumentfragment.sip pyqt5-5.2.1+dfsg/sip/QtGui/qtextdocumentfragment.sip --- pyqt5-5.2+dfsg/sip/QtGui/qtextdocumentfragment.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qtextdocumentfragment.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtextdocumentfragment.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qtextdocumentfragment.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qtextdocument.sip pyqt5-5.2.1+dfsg/sip/QtGui/qtextdocument.sip --- pyqt5-5.2+dfsg/sip/QtGui/qtextdocument.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qtextdocument.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtextdocument.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qtextdocument.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qtextdocumentwriter.sip pyqt5-5.2.1+dfsg/sip/QtGui/qtextdocumentwriter.sip --- pyqt5-5.2+dfsg/sip/QtGui/qtextdocumentwriter.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qtextdocumentwriter.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtextdocumentwriter.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qtextdocumentwriter.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qtextformat.sip pyqt5-5.2.1+dfsg/sip/QtGui/qtextformat.sip --- pyqt5-5.2+dfsg/sip/QtGui/qtextformat.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qtextformat.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtextformat.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qtextformat.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qtextlayout.sip pyqt5-5.2.1+dfsg/sip/QtGui/qtextlayout.sip --- pyqt5-5.2+dfsg/sip/QtGui/qtextlayout.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qtextlayout.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtextlayout.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qtextlayout.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qtextlist.sip pyqt5-5.2.1+dfsg/sip/QtGui/qtextlist.sip --- pyqt5-5.2+dfsg/sip/QtGui/qtextlist.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qtextlist.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtextlist.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qtextlist.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qtextobject.sip pyqt5-5.2.1+dfsg/sip/QtGui/qtextobject.sip --- pyqt5-5.2+dfsg/sip/QtGui/qtextobject.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qtextobject.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtextobject.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qtextobject.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qtextoption.sip pyqt5-5.2.1+dfsg/sip/QtGui/qtextoption.sip --- pyqt5-5.2+dfsg/sip/QtGui/qtextoption.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qtextoption.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtextoption.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qtextoption.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qtexttable.sip pyqt5-5.2.1+dfsg/sip/QtGui/qtexttable.sip --- pyqt5-5.2+dfsg/sip/QtGui/qtexttable.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qtexttable.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtexttable.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qtexttable.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/QtGuimod.sip pyqt5-5.2.1+dfsg/sip/QtGui/QtGuimod.sip --- pyqt5-5.2+dfsg/sip/QtGui/QtGuimod.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/QtGuimod.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// QtGuimod.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// QtGuimod.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qtouchdevice.sip pyqt5-5.2.1+dfsg/sip/QtGui/qtouchdevice.sip --- pyqt5-5.2+dfsg/sip/QtGui/qtouchdevice.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qtouchdevice.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtouchdevice.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qtouchdevice.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qtransform.sip pyqt5-5.2.1+dfsg/sip/QtGui/qtransform.sip --- pyqt5-5.2+dfsg/sip/QtGui/qtransform.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qtransform.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtransform.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qtransform.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qvalidator.sip pyqt5-5.2.1+dfsg/sip/QtGui/qvalidator.sip --- pyqt5-5.2+dfsg/sip/QtGui/qvalidator.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qvalidator.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qvalidator.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qvalidator.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qvector2d.sip pyqt5-5.2.1+dfsg/sip/QtGui/qvector2d.sip --- pyqt5-5.2+dfsg/sip/QtGui/qvector2d.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qvector2d.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qvector2d.sip generated by MetaSIP on Tue Jan 7 16:20:12 2014 +// qvector2d.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qvector3d.sip pyqt5-5.2.1+dfsg/sip/QtGui/qvector3d.sip --- pyqt5-5.2+dfsg/sip/QtGui/qvector3d.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qvector3d.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qvector3d.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qvector3d.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qvector4d.sip pyqt5-5.2.1+dfsg/sip/QtGui/qvector4d.sip --- pyqt5-5.2+dfsg/sip/QtGui/qvector4d.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qvector4d.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qvector4d.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qvector4d.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qwindowdefs.sip pyqt5-5.2.1+dfsg/sip/QtGui/qwindowdefs.sip --- pyqt5-5.2+dfsg/sip/QtGui/qwindowdefs.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qwindowdefs.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qwindowdefs.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qwindowdefs.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtGui/qwindow.sip pyqt5-5.2.1+dfsg/sip/QtGui/qwindow.sip --- pyqt5-5.2+dfsg/sip/QtGui/qwindow.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtGui/qwindow.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qwindow.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qwindow.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtGui Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtHelp/qhelpcontentwidget.sip pyqt5-5.2.1+dfsg/sip/QtHelp/qhelpcontentwidget.sip --- pyqt5-5.2+dfsg/sip/QtHelp/qhelpcontentwidget.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtHelp/qhelpcontentwidget.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qhelpcontentwidget.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qhelpcontentwidget.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtHelp Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtHelp/qhelpenginecore.sip pyqt5-5.2.1+dfsg/sip/QtHelp/qhelpenginecore.sip --- pyqt5-5.2+dfsg/sip/QtHelp/qhelpenginecore.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtHelp/qhelpenginecore.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qhelpenginecore.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qhelpenginecore.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtHelp Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtHelp/qhelpengine.sip pyqt5-5.2.1+dfsg/sip/QtHelp/qhelpengine.sip --- pyqt5-5.2+dfsg/sip/QtHelp/qhelpengine.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtHelp/qhelpengine.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qhelpengine.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qhelpengine.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtHelp Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtHelp/qhelpindexwidget.sip pyqt5-5.2.1+dfsg/sip/QtHelp/qhelpindexwidget.sip --- pyqt5-5.2+dfsg/sip/QtHelp/qhelpindexwidget.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtHelp/qhelpindexwidget.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qhelpindexwidget.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qhelpindexwidget.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtHelp Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtHelp/qhelpsearchengine.sip pyqt5-5.2.1+dfsg/sip/QtHelp/qhelpsearchengine.sip --- pyqt5-5.2+dfsg/sip/QtHelp/qhelpsearchengine.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtHelp/qhelpsearchengine.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qhelpsearchengine.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qhelpsearchengine.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtHelp Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtHelp/qhelpsearchquerywidget.sip pyqt5-5.2.1+dfsg/sip/QtHelp/qhelpsearchquerywidget.sip --- pyqt5-5.2+dfsg/sip/QtHelp/qhelpsearchquerywidget.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtHelp/qhelpsearchquerywidget.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qhelpsearchquerywidget.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qhelpsearchquerywidget.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtHelp Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtHelp/qhelpsearchresultwidget.sip pyqt5-5.2.1+dfsg/sip/QtHelp/qhelpsearchresultwidget.sip --- pyqt5-5.2+dfsg/sip/QtHelp/qhelpsearchresultwidget.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtHelp/qhelpsearchresultwidget.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qhelpsearchresultwidget.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qhelpsearchresultwidget.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtHelp Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtHelp/QtHelpmod.sip pyqt5-5.2.1+dfsg/sip/QtHelp/QtHelpmod.sip --- pyqt5-5.2+dfsg/sip/QtHelp/QtHelpmod.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtHelp/QtHelpmod.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// QtHelpmod.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// QtHelpmod.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtHelp Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qabstractvideobuffer.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qabstractvideobuffer.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qabstractvideobuffer.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qabstractvideobuffer.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qabstractvideobuffer.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qabstractvideobuffer.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qabstractvideosurface.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qabstractvideosurface.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qabstractvideosurface.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qabstractvideosurface.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qabstractvideosurface.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qabstractvideosurface.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qaudiobuffer.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qaudiobuffer.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qaudiobuffer.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qaudiobuffer.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qaudiobuffer.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qaudiobuffer.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qaudiodecoder.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qaudiodecoder.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qaudiodecoder.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qaudiodecoder.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qaudiodecoder.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qaudiodecoder.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qaudiodeviceinfo.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qaudiodeviceinfo.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qaudiodeviceinfo.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qaudiodeviceinfo.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qaudiodeviceinfo.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qaudiodeviceinfo.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qaudioformat.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qaudioformat.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qaudioformat.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qaudioformat.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qaudioformat.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qaudioformat.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qaudioinput.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qaudioinput.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qaudioinput.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qaudioinput.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qaudioinput.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qaudioinput.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qaudiooutput.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qaudiooutput.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qaudiooutput.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qaudiooutput.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qaudiooutput.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qaudiooutput.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qaudioprobe.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qaudioprobe.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qaudioprobe.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qaudioprobe.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qaudioprobe.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qaudioprobe.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qaudiorecorder.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qaudiorecorder.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qaudiorecorder.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qaudiorecorder.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qaudiorecorder.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qaudiorecorder.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qaudio.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qaudio.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qaudio.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qaudio.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qaudio.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qaudio.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qcameraexposure.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qcameraexposure.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qcameraexposure.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qcameraexposure.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qcameraexposure.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qcameraexposure.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qcamerafocus.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qcamerafocus.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qcamerafocus.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qcamerafocus.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qcamerafocus.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qcamerafocus.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qcameraimagecapture.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qcameraimagecapture.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qcameraimagecapture.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qcameraimagecapture.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qcameraimagecapture.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qcameraimagecapture.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qcameraimageprocessing.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qcameraimageprocessing.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qcameraimageprocessing.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qcameraimageprocessing.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qcameraimageprocessing.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qcameraimageprocessing.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qcamera.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qcamera.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qcamera.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qcamera.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qcamera.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qcamera.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qmediabindableinterface.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qmediabindableinterface.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qmediabindableinterface.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qmediabindableinterface.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmediabindableinterface.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qmediabindableinterface.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qmediacontent.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qmediacontent.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qmediacontent.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qmediacontent.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmediacontent.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qmediacontent.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qmediacontrol.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qmediacontrol.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qmediacontrol.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qmediacontrol.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmediacontrol.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qmediacontrol.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qmediaencodersettings.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qmediaencodersettings.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qmediaencodersettings.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qmediaencodersettings.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmediaencodersettings.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qmediaencodersettings.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qmediametadata.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qmediametadata.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qmediametadata.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qmediametadata.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmediametadata.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qmediametadata.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qmediaobject.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qmediaobject.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qmediaobject.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qmediaobject.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmediaobject.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qmediaobject.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qmediaplayer.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qmediaplayer.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qmediaplayer.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qmediaplayer.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmediaplayer.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qmediaplayer.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qmediaplaylist.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qmediaplaylist.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qmediaplaylist.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qmediaplaylist.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmediaplaylist.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qmediaplaylist.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qmediarecorder.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qmediarecorder.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qmediarecorder.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qmediarecorder.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmediarecorder.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qmediarecorder.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qmediaresource.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qmediaresource.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qmediaresource.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qmediaresource.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmediaresource.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qmediaresource.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qmediaservice.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qmediaservice.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qmediaservice.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qmediaservice.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmediaservice.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qmediaservice.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qmediatimerange.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qmediatimerange.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qmediatimerange.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qmediatimerange.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmediatimerange.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qmediatimerange.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qmultimedia.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qmultimedia.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qmultimedia.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qmultimedia.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmultimedia.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qmultimedia.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qradiodata.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qradiodata.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qradiodata.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qradiodata.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qradiodata.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qradiodata.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qradiotuner.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qradiotuner.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qradiotuner.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qradiotuner.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qradiotuner.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qradiotuner.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qsoundeffect.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qsoundeffect.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qsoundeffect.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qsoundeffect.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsoundeffect.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsoundeffect.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qsound.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qsound.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qsound.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qsound.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsound.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsound.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/QtMultimediamod.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/QtMultimediamod.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/QtMultimediamod.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/QtMultimediamod.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// QtMultimediamod.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// QtMultimediamod.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qvideoframe.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qvideoframe.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qvideoframe.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qvideoframe.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qvideoframe.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qvideoframe.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qvideoprobe.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qvideoprobe.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qvideoprobe.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qvideoprobe.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qvideoprobe.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qvideoprobe.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimedia/qvideosurfaceformat.sip pyqt5-5.2.1+dfsg/sip/QtMultimedia/qvideosurfaceformat.sip --- pyqt5-5.2+dfsg/sip/QtMultimedia/qvideosurfaceformat.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimedia/qvideosurfaceformat.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qvideosurfaceformat.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qvideosurfaceformat.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtMultimedia Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimediaWidgets/qcameraviewfinder.sip pyqt5-5.2.1+dfsg/sip/QtMultimediaWidgets/qcameraviewfinder.sip --- pyqt5-5.2+dfsg/sip/QtMultimediaWidgets/qcameraviewfinder.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimediaWidgets/qcameraviewfinder.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qcameraviewfinder.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qcameraviewfinder.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtMultimediaWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimediaWidgets/qgraphicsvideoitem.sip pyqt5-5.2.1+dfsg/sip/QtMultimediaWidgets/qgraphicsvideoitem.sip --- pyqt5-5.2+dfsg/sip/QtMultimediaWidgets/qgraphicsvideoitem.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimediaWidgets/qgraphicsvideoitem.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgraphicsvideoitem.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qgraphicsvideoitem.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtMultimediaWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimediaWidgets/QtMultimediaWidgetsmod.sip pyqt5-5.2.1+dfsg/sip/QtMultimediaWidgets/QtMultimediaWidgetsmod.sip --- pyqt5-5.2+dfsg/sip/QtMultimediaWidgets/QtMultimediaWidgetsmod.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimediaWidgets/QtMultimediaWidgetsmod.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// QtMultimediaWidgetsmod.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// QtMultimediaWidgetsmod.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtMultimediaWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtMultimediaWidgets/qvideowidget.sip pyqt5-5.2.1+dfsg/sip/QtMultimediaWidgets/qvideowidget.sip --- pyqt5-5.2+dfsg/sip/QtMultimediaWidgets/qvideowidget.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtMultimediaWidgets/qvideowidget.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qvideowidget.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qvideowidget.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtMultimediaWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qabstractnetworkcache.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qabstractnetworkcache.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qabstractnetworkcache.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qabstractnetworkcache.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qabstractnetworkcache.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qabstractnetworkcache.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qabstractsocket.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qabstractsocket.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qabstractsocket.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qabstractsocket.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qabstractsocket.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qabstractsocket.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qauthenticator.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qauthenticator.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qauthenticator.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qauthenticator.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qauthenticator.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qauthenticator.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qdnslookup.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qdnslookup.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qdnslookup.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qdnslookup.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdnslookup.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qdnslookup.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qhostaddress.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qhostaddress.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qhostaddress.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qhostaddress.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qhostaddress.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qhostaddress.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qhostinfo.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qhostinfo.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qhostinfo.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qhostinfo.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qhostinfo.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qhostinfo.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qhttpmultipart.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qhttpmultipart.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qhttpmultipart.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qhttpmultipart.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qhttpmultipart.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qhttpmultipart.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qlocalserver.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qlocalserver.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qlocalserver.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qlocalserver.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qlocalserver.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qlocalserver.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qlocalsocket.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qlocalsocket.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qlocalsocket.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qlocalsocket.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qlocalsocket.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qlocalsocket.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qnetworkaccessmanager.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qnetworkaccessmanager.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qnetworkaccessmanager.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qnetworkaccessmanager.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qnetworkaccessmanager.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qnetworkaccessmanager.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // @@ -92,8 +92,10 @@ QStringList supportedSchemes() const; %End %If (Qt_5_2_0 -) +%If (PyQt_SSL) void connectToHostEncrypted(const QString &hostName, quint16 port = 443, const QSslConfiguration &sslConfiguration = QSslConfiguration::defaultConfiguration()); %End +%End %If (Qt_5_2_0 -) void connectToHost(const QString &hostName, quint16 port = 80); %End diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qnetworkconfigmanager.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qnetworkconfigmanager.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qnetworkconfigmanager.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qnetworkconfigmanager.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qnetworkconfigmanager.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qnetworkconfigmanager.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qnetworkconfiguration.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qnetworkconfiguration.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qnetworkconfiguration.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qnetworkconfiguration.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qnetworkconfiguration.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qnetworkconfiguration.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qnetworkcookiejar.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qnetworkcookiejar.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qnetworkcookiejar.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qnetworkcookiejar.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qnetworkcookiejar.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qnetworkcookiejar.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qnetworkcookie.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qnetworkcookie.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qnetworkcookie.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qnetworkcookie.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qnetworkcookie.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qnetworkcookie.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qnetworkdiskcache.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qnetworkdiskcache.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qnetworkdiskcache.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qnetworkdiskcache.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qnetworkdiskcache.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qnetworkdiskcache.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qnetworkinterface.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qnetworkinterface.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qnetworkinterface.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qnetworkinterface.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qnetworkinterface.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qnetworkinterface.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qnetworkproxy.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qnetworkproxy.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qnetworkproxy.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qnetworkproxy.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qnetworkproxy.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qnetworkproxy.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qnetworkreply.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qnetworkreply.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qnetworkreply.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qnetworkreply.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qnetworkreply.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qnetworkreply.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qnetworkrequest.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qnetworkrequest.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qnetworkrequest.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qnetworkrequest.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qnetworkrequest.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qnetworkrequest.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qnetworksession.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qnetworksession.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qnetworksession.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qnetworksession.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qnetworksession.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qnetworksession.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qsslcertificateextension.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qsslcertificateextension.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qsslcertificateextension.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qsslcertificateextension.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsslcertificateextension.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsslcertificateextension.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qsslcertificate.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qsslcertificate.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qsslcertificate.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qsslcertificate.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsslcertificate.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsslcertificate.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qsslcipher.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qsslcipher.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qsslcipher.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qsslcipher.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsslcipher.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsslcipher.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qsslconfiguration.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qsslconfiguration.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qsslconfiguration.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qsslconfiguration.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsslconfiguration.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsslconfiguration.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qsslerror.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qsslerror.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qsslerror.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qsslerror.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsslerror.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsslerror.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qsslkey.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qsslkey.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qsslkey.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qsslkey.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsslkey.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsslkey.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qssl.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qssl.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qssl.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qssl.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qssl.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qssl.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qsslsocket.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qsslsocket.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qsslsocket.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qsslsocket.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsslsocket.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsslsocket.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qtcpserver.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qtcpserver.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qtcpserver.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qtcpserver.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtcpserver.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qtcpserver.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qtcpsocket.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qtcpsocket.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qtcpsocket.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qtcpsocket.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtcpsocket.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qtcpsocket.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/QtNetworkmod.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/QtNetworkmod.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/QtNetworkmod.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/QtNetworkmod.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// QtNetworkmod.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// QtNetworkmod.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtNetwork/qudpsocket.sip pyqt5-5.2.1+dfsg/sip/QtNetwork/qudpsocket.sip --- pyqt5-5.2+dfsg/sip/QtNetwork/qudpsocket.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtNetwork/qudpsocket.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qudpsocket.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qudpsocket.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtNetwork Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtOpenGL/qgl.sip pyqt5-5.2.1+dfsg/sip/QtOpenGL/qgl.sip --- pyqt5-5.2+dfsg/sip/QtOpenGL/qgl.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtOpenGL/qgl.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgl.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qgl.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtOpenGL Python extension module. // @@ -24,6 +24,8 @@ #include %End +%If (PyQt_OpenGL) + namespace QGL { %TypeHeaderCode @@ -59,7 +61,11 @@ typedef QFlags FormatOptions; }; +%End +%If (PyQt_OpenGL) QFlags operator|(QGL::FormatOption f1, QFlags f2); +%End +%If (PyQt_OpenGL) class QGLFormat { @@ -162,8 +168,14 @@ QGLFormat::OpenGLContextProfile profile() const; }; +%End +%If (PyQt_OpenGL) bool operator==(const QGLFormat &, const QGLFormat &); +%End +%If (PyQt_OpenGL) bool operator!=(const QGLFormat &, const QGLFormat &); +%End +%If (PyQt_OpenGL) class QGLContext /Supertype=sip.wrapper/ { @@ -227,6 +239,9 @@ QGLContext(const QGLContext &); }; +%End +%If (PyQt_OpenGL) + class QGLWidget : QWidget { %TypeHeaderCode @@ -319,5 +334,10 @@ QGLWidget(const QGLWidget &); }; +%End +%If (PyQt_OpenGL) QFlags operator|(QGLFormat::OpenGLVersionFlag f1, QFlags f2); +%End +%If (PyQt_OpenGL) QFlags operator|(QGLContext::BindOption f1, QFlags f2); +%End diff -Nru pyqt5-5.2+dfsg/sip/QtOpenGL/QtOpenGLmod.sip pyqt5-5.2.1+dfsg/sip/QtOpenGL/QtOpenGLmod.sip --- pyqt5-5.2+dfsg/sip/QtOpenGL/QtOpenGLmod.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtOpenGL/QtOpenGLmod.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// QtOpenGLmod.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// QtOpenGLmod.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtOpenGL Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtPositioning/qgeoaddress.sip pyqt5-5.2.1+dfsg/sip/QtPositioning/qgeoaddress.sip --- pyqt5-5.2+dfsg/sip/QtPositioning/qgeoaddress.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtPositioning/qgeoaddress.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgeoaddress.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qgeoaddress.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtPositioning Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtPositioning/qgeoareamonitorinfo.sip pyqt5-5.2.1+dfsg/sip/QtPositioning/qgeoareamonitorinfo.sip --- pyqt5-5.2+dfsg/sip/QtPositioning/qgeoareamonitorinfo.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtPositioning/qgeoareamonitorinfo.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgeoareamonitorinfo.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qgeoareamonitorinfo.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtPositioning Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtPositioning/qgeoareamonitorsource.sip pyqt5-5.2.1+dfsg/sip/QtPositioning/qgeoareamonitorsource.sip --- pyqt5-5.2+dfsg/sip/QtPositioning/qgeoareamonitorsource.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtPositioning/qgeoareamonitorsource.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgeoareamonitorsource.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qgeoareamonitorsource.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtPositioning Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtPositioning/qgeocircle.sip pyqt5-5.2.1+dfsg/sip/QtPositioning/qgeocircle.sip --- pyqt5-5.2+dfsg/sip/QtPositioning/qgeocircle.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtPositioning/qgeocircle.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgeocircle.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qgeocircle.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtPositioning Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtPositioning/qgeocoordinate.sip pyqt5-5.2.1+dfsg/sip/QtPositioning/qgeocoordinate.sip --- pyqt5-5.2+dfsg/sip/QtPositioning/qgeocoordinate.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtPositioning/qgeocoordinate.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgeocoordinate.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qgeocoordinate.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtPositioning Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtPositioning/qgeolocation.sip pyqt5-5.2.1+dfsg/sip/QtPositioning/qgeolocation.sip --- pyqt5-5.2+dfsg/sip/QtPositioning/qgeolocation.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtPositioning/qgeolocation.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgeolocation.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qgeolocation.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtPositioning Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtPositioning/qgeopositioninfo.sip pyqt5-5.2.1+dfsg/sip/QtPositioning/qgeopositioninfo.sip --- pyqt5-5.2+dfsg/sip/QtPositioning/qgeopositioninfo.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtPositioning/qgeopositioninfo.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgeopositioninfo.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qgeopositioninfo.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtPositioning Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtPositioning/qgeopositioninfosource.sip pyqt5-5.2.1+dfsg/sip/QtPositioning/qgeopositioninfosource.sip --- pyqt5-5.2+dfsg/sip/QtPositioning/qgeopositioninfosource.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtPositioning/qgeopositioninfosource.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgeopositioninfosource.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qgeopositioninfosource.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtPositioning Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtPositioning/qgeorectangle.sip pyqt5-5.2.1+dfsg/sip/QtPositioning/qgeorectangle.sip --- pyqt5-5.2+dfsg/sip/QtPositioning/qgeorectangle.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtPositioning/qgeorectangle.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgeorectangle.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qgeorectangle.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtPositioning Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtPositioning/qgeosatelliteinfo.sip pyqt5-5.2.1+dfsg/sip/QtPositioning/qgeosatelliteinfo.sip --- pyqt5-5.2+dfsg/sip/QtPositioning/qgeosatelliteinfo.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtPositioning/qgeosatelliteinfo.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgeosatelliteinfo.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qgeosatelliteinfo.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtPositioning Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtPositioning/qgeosatelliteinfosource.sip pyqt5-5.2.1+dfsg/sip/QtPositioning/qgeosatelliteinfosource.sip --- pyqt5-5.2+dfsg/sip/QtPositioning/qgeosatelliteinfosource.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtPositioning/qgeosatelliteinfosource.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgeosatelliteinfosource.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qgeosatelliteinfosource.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtPositioning Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtPositioning/qgeoshape.sip pyqt5-5.2.1+dfsg/sip/QtPositioning/qgeoshape.sip --- pyqt5-5.2+dfsg/sip/QtPositioning/qgeoshape.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtPositioning/qgeoshape.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgeoshape.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qgeoshape.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtPositioning Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtPositioning/qnmeapositioninfosource.sip pyqt5-5.2.1+dfsg/sip/QtPositioning/qnmeapositioninfosource.sip --- pyqt5-5.2+dfsg/sip/QtPositioning/qnmeapositioninfosource.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtPositioning/qnmeapositioninfosource.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qnmeapositioninfosource.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qnmeapositioninfosource.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtPositioning Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtPositioning/QtPositioningmod.sip pyqt5-5.2.1+dfsg/sip/QtPositioning/QtPositioningmod.sip --- pyqt5-5.2+dfsg/sip/QtPositioning/QtPositioningmod.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtPositioning/QtPositioningmod.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// QtPositioningmod.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// QtPositioningmod.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtPositioning Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtPrintSupport/qabstractprintdialog.sip pyqt5-5.2.1+dfsg/sip/QtPrintSupport/qabstractprintdialog.sip --- pyqt5-5.2+dfsg/sip/QtPrintSupport/qabstractprintdialog.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtPrintSupport/qabstractprintdialog.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qabstractprintdialog.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qabstractprintdialog.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtPrintSupport Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtPrintSupport/qpagesetupdialog.sip pyqt5-5.2.1+dfsg/sip/QtPrintSupport/qpagesetupdialog.sip --- pyqt5-5.2+dfsg/sip/QtPrintSupport/qpagesetupdialog.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtPrintSupport/qpagesetupdialog.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qpagesetupdialog.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qpagesetupdialog.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtPrintSupport Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtPrintSupport/qprintdialog.sip pyqt5-5.2.1+dfsg/sip/QtPrintSupport/qprintdialog.sip --- pyqt5-5.2+dfsg/sip/QtPrintSupport/qprintdialog.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtPrintSupport/qprintdialog.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qprintdialog.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qprintdialog.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtPrintSupport Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtPrintSupport/qprintengine.sip pyqt5-5.2.1+dfsg/sip/QtPrintSupport/qprintengine.sip --- pyqt5-5.2+dfsg/sip/QtPrintSupport/qprintengine.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtPrintSupport/qprintengine.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qprintengine.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qprintengine.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtPrintSupport Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtPrintSupport/qprinterinfo.sip pyqt5-5.2.1+dfsg/sip/QtPrintSupport/qprinterinfo.sip --- pyqt5-5.2+dfsg/sip/QtPrintSupport/qprinterinfo.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtPrintSupport/qprinterinfo.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qprinterinfo.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qprinterinfo.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtPrintSupport Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtPrintSupport/qprinter.sip pyqt5-5.2.1+dfsg/sip/QtPrintSupport/qprinter.sip --- pyqt5-5.2+dfsg/sip/QtPrintSupport/qprinter.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtPrintSupport/qprinter.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qprinter.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qprinter.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtPrintSupport Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtPrintSupport/qprintpreviewdialog.sip pyqt5-5.2.1+dfsg/sip/QtPrintSupport/qprintpreviewdialog.sip --- pyqt5-5.2+dfsg/sip/QtPrintSupport/qprintpreviewdialog.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtPrintSupport/qprintpreviewdialog.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qprintpreviewdialog.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qprintpreviewdialog.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtPrintSupport Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtPrintSupport/qprintpreviewwidget.sip pyqt5-5.2.1+dfsg/sip/QtPrintSupport/qprintpreviewwidget.sip --- pyqt5-5.2+dfsg/sip/QtPrintSupport/qprintpreviewwidget.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtPrintSupport/qprintpreviewwidget.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qprintpreviewwidget.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qprintpreviewwidget.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtPrintSupport Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtPrintSupport/QtPrintSupportmod.sip pyqt5-5.2.1+dfsg/sip/QtPrintSupport/QtPrintSupportmod.sip --- pyqt5-5.2+dfsg/sip/QtPrintSupport/QtPrintSupportmod.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtPrintSupport/QtPrintSupportmod.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// QtPrintSupportmod.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// QtPrintSupportmod.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtPrintSupport Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQml/qjsengine.sip pyqt5-5.2.1+dfsg/sip/QtQml/qjsengine.sip --- pyqt5-5.2+dfsg/sip/QtQml/qjsengine.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQml/qjsengine.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qjsengine.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qjsengine.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQml Python extension module. // @@ -86,7 +86,7 @@ }; %ModuleHeaderCode -#include +#include "qpyqml_api.h" %End %PostInitialisationCode diff -Nru pyqt5-5.2+dfsg/sip/QtQml/qjsvalueiterator.sip pyqt5-5.2.1+dfsg/sip/QtQml/qjsvalueiterator.sip --- pyqt5-5.2+dfsg/sip/QtQml/qjsvalueiterator.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQml/qjsvalueiterator.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qjsvalueiterator.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qjsvalueiterator.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQml Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQml/qjsvalue.sip pyqt5-5.2.1+dfsg/sip/QtQml/qjsvalue.sip --- pyqt5-5.2+dfsg/sip/QtQml/qjsvalue.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQml/qjsvalue.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qjsvalue.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qjsvalue.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQml Python extension module. // @@ -28,6 +28,13 @@ #include %End +%ConvertToTypeCode +if (!sipIsErr) + return qpyqml_canConvertTo_QJSValue(sipPy); + +return qpyqml_convertTo_QJSValue(sipPy, sipTransferObj, sipCppPtr, sipIsErr); +%End + public: enum SpecialValue { diff -Nru pyqt5-5.2+dfsg/sip/QtQml/qqmlabstracturlinterceptor.sip pyqt5-5.2.1+dfsg/sip/QtQml/qqmlabstracturlinterceptor.sip --- pyqt5-5.2+dfsg/sip/QtQml/qqmlabstracturlinterceptor.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQml/qqmlabstracturlinterceptor.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qqmlabstracturlinterceptor.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qqmlabstracturlinterceptor.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQml Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQml/qqmlapplicationengine.sip pyqt5-5.2.1+dfsg/sip/QtQml/qqmlapplicationengine.sip --- pyqt5-5.2+dfsg/sip/QtQml/qqmlapplicationengine.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQml/qqmlapplicationengine.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qqmlapplicationengine.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qqmlapplicationengine.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQml Python extension module. // @@ -36,9 +36,9 @@ QList rootObjects(); public slots: - void load(const QUrl &url); - void load(const QString &filePath); - void loadData(const QByteArray &data, const QUrl &url = QUrl()); + void load(const QUrl &url) /ReleaseGIL/; + void load(const QString &filePath) /ReleaseGIL/; + void loadData(const QByteArray &data, const QUrl &url = QUrl()) /ReleaseGIL/; signals: void objectCreated(QObject *object, const QUrl &url); diff -Nru pyqt5-5.2+dfsg/sip/QtQml/qqmlcomponent.sip pyqt5-5.2.1+dfsg/sip/QtQml/qqmlcomponent.sip --- pyqt5-5.2+dfsg/sip/QtQml/qqmlcomponent.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQml/qqmlcomponent.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qqmlcomponent.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qqmlcomponent.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQml Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQml/qqmlcontext.sip pyqt5-5.2.1+dfsg/sip/QtQml/qqmlcontext.sip --- pyqt5-5.2+dfsg/sip/QtQml/qqmlcontext.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQml/qqmlcontext.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qqmlcontext.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qqmlcontext.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQml Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQml/qqmlengine.sip pyqt5-5.2.1+dfsg/sip/QtQml/qqmlengine.sip --- pyqt5-5.2+dfsg/sip/QtQml/qqmlengine.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQml/qqmlengine.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qqmlengine.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qqmlengine.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQml Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQml/qqmlerror.sip pyqt5-5.2.1+dfsg/sip/QtQml/qqmlerror.sip --- pyqt5-5.2+dfsg/sip/QtQml/qqmlerror.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQml/qqmlerror.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qqmlerror.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qqmlerror.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQml Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQml/qqmlexpression.sip pyqt5-5.2.1+dfsg/sip/QtQml/qqmlexpression.sip --- pyqt5-5.2+dfsg/sip/QtQml/qqmlexpression.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQml/qqmlexpression.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qqmlexpression.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qqmlexpression.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQml Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQml/qqmlextensionplugin.sip pyqt5-5.2.1+dfsg/sip/QtQml/qqmlextensionplugin.sip --- pyqt5-5.2+dfsg/sip/QtQml/qqmlextensionplugin.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQml/qqmlextensionplugin.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qqmlextensionplugin.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qqmlextensionplugin.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQml Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQml/qqmlfileselector.sip pyqt5-5.2.1+dfsg/sip/QtQml/qqmlfileselector.sip --- pyqt5-5.2+dfsg/sip/QtQml/qqmlfileselector.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQml/qqmlfileselector.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qqmlfileselector.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qqmlfileselector.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQml Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQml/qqmlincubator.sip pyqt5-5.2.1+dfsg/sip/QtQml/qqmlincubator.sip --- pyqt5-5.2+dfsg/sip/QtQml/qqmlincubator.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQml/qqmlincubator.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qqmlincubator.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qqmlincubator.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQml Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQml/qqmllist.sip pyqt5-5.2.1+dfsg/sip/QtQml/qqmllist.sip --- pyqt5-5.2+dfsg/sip/QtQml/qqmllist.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQml/qqmllist.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qqmllist.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qqmllist.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQml Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQml/qqmlnetworkaccessmanagerfactory.sip pyqt5-5.2.1+dfsg/sip/QtQml/qqmlnetworkaccessmanagerfactory.sip --- pyqt5-5.2+dfsg/sip/QtQml/qqmlnetworkaccessmanagerfactory.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQml/qqmlnetworkaccessmanagerfactory.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qqmlnetworkaccessmanagerfactory.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qqmlnetworkaccessmanagerfactory.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQml Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQml/qqmlparserstatus.sip pyqt5-5.2.1+dfsg/sip/QtQml/qqmlparserstatus.sip --- pyqt5-5.2+dfsg/sip/QtQml/qqmlparserstatus.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQml/qqmlparserstatus.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qqmlparserstatus.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qqmlparserstatus.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQml Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQml/qqmlpropertymap.sip pyqt5-5.2.1+dfsg/sip/QtQml/qqmlpropertymap.sip --- pyqt5-5.2+dfsg/sip/QtQml/qqmlpropertymap.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQml/qqmlpropertymap.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qqmlpropertymap.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qqmlpropertymap.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQml Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQml/qqmlproperty.sip pyqt5-5.2.1+dfsg/sip/QtQml/qqmlproperty.sip --- pyqt5-5.2+dfsg/sip/QtQml/qqmlproperty.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQml/qqmlproperty.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qqmlproperty.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qqmlproperty.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQml Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQml/qqmlpropertyvaluesource.sip pyqt5-5.2.1+dfsg/sip/QtQml/qqmlpropertyvaluesource.sip --- pyqt5-5.2+dfsg/sip/QtQml/qqmlpropertyvaluesource.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQml/qqmlpropertyvaluesource.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qqmlpropertyvaluesource.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qqmlpropertyvaluesource.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQml Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQml/qqmlscriptstring.sip pyqt5-5.2.1+dfsg/sip/QtQml/qqmlscriptstring.sip --- pyqt5-5.2+dfsg/sip/QtQml/qqmlscriptstring.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQml/qqmlscriptstring.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qqmlscriptstring.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qqmlscriptstring.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQml Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQml/QtQmlmod.sip pyqt5-5.2.1+dfsg/sip/QtQml/QtQmlmod.sip --- pyqt5-5.2+dfsg/sip/QtQml/QtQmlmod.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQml/QtQmlmod.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// QtQmlmod.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// QtQmlmod.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQml Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQuick/qquickframebufferobject.sip pyqt5-5.2.1+dfsg/sip/QtQuick/qquickframebufferobject.sip --- pyqt5-5.2+dfsg/sip/QtQuick/qquickframebufferobject.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQuick/qquickframebufferobject.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qquickframebufferobject.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qquickframebufferobject.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQuick Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQuick/qquickimageprovider.sip pyqt5-5.2.1+dfsg/sip/QtQuick/qquickimageprovider.sip --- pyqt5-5.2+dfsg/sip/QtQuick/qquickimageprovider.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQuick/qquickimageprovider.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qquickimageprovider.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qquickimageprovider.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQuick Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQuick/qquickitem.sip pyqt5-5.2.1+dfsg/sip/QtQuick/qquickitem.sip --- pyqt5-5.2+dfsg/sip/QtQuick/qquickitem.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQuick/qquickitem.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qquickitem.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qquickitem.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQuick Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQuick/qquickpainteditem.sip pyqt5-5.2.1+dfsg/sip/QtQuick/qquickpainteditem.sip --- pyqt5-5.2+dfsg/sip/QtQuick/qquickpainteditem.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQuick/qquickpainteditem.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qquickpainteditem.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qquickpainteditem.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQuick Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQuick/qquicktextdocument.sip pyqt5-5.2.1+dfsg/sip/QtQuick/qquicktextdocument.sip --- pyqt5-5.2+dfsg/sip/QtQuick/qquicktextdocument.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQuick/qquicktextdocument.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qquicktextdocument.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qquicktextdocument.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQuick Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQuick/qquickview.sip pyqt5-5.2.1+dfsg/sip/QtQuick/qquickview.sip --- pyqt5-5.2+dfsg/sip/QtQuick/qquickview.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQuick/qquickview.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qquickview.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qquickview.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQuick Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQuick/qquickwindow.sip pyqt5-5.2.1+dfsg/sip/QtQuick/qquickwindow.sip --- pyqt5-5.2+dfsg/sip/QtQuick/qquickwindow.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQuick/qquickwindow.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qquickwindow.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qquickwindow.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQuick Python extension module. // @@ -164,7 +164,7 @@ }; %ModuleHeaderCode -#include +#include "qpyquick_api.h" %End %PostInitialisationCode diff -Nru pyqt5-5.2+dfsg/sip/QtQuick/qsgflatcolormaterial.sip pyqt5-5.2.1+dfsg/sip/QtQuick/qsgflatcolormaterial.sip --- pyqt5-5.2+dfsg/sip/QtQuick/qsgflatcolormaterial.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQuick/qsgflatcolormaterial.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsgflatcolormaterial.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qsgflatcolormaterial.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQuick Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQuick/qsggeometry.sip pyqt5-5.2.1+dfsg/sip/QtQuick/qsggeometry.sip --- pyqt5-5.2+dfsg/sip/QtQuick/qsggeometry.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQuick/qsggeometry.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsggeometry.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qsggeometry.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQuick Python extension module. // @@ -27,7 +27,15 @@ %End public: -// Convenient drawing modes. +// Convenient primitives and drawing modes. +enum /NoScope/ +{ + GL_BYTE, + GL_DOUBLE, + GL_FLOAT, + GL_INT +}; + enum /NoScope/ { GL_POINTS, @@ -49,13 +57,151 @@ int tupleSize; int type; uint isVertexCoordinate; - static QSGGeometry::Attribute create(int pos, int tupleSize, int primitiveType, bool isPosition = false); + static QSGGeometry::Attribute create(int pos, int tupleSize, int primitiveType, bool isPosition = false) /Factory/; }; - struct AttributeSet + struct AttributeSet /NoDefaultCtors/ { %TypeHeaderCode #include +#include +%End + + AttributeSet(SIP_PYOBJECT attributes /DocType="sequence-of-QSGGeometry.Attribute"/, int stride = 0); +%MethodCode + PyObject *iter = PyObject_GetIter(a0); + + if (!iter + #if PY_MAJOR_VERSION < 3 + || PyString_Check(a0) + #endif + || PyUnicode_Check(a0)) + { + Py_XDECREF(iter); + PyErr_SetString(PyExc_TypeError, "iterable object expected"); + sipError = sipErrorContinue; + } + else + { + QVector attrs; + int stride = 0; + + for (SIP_SSIZE_T i = 0; ; ++i) + { + PyErr_Clear(); + PyObject *itm = PyIter_Next(iter); + + if (!itm) + { + if (PyErr_Occurred()) + sipError = sipErrorFail; + + break; + } + + int state, is_err = 0; + QSGGeometry::Attribute *attr; + + attr = reinterpret_cast( + sipForceConvertToType(itm, sipType_QSGGeometry_Attribute, 0, + SIP_NOT_NONE, &state, &is_err)); + + if (is_err) + { + PyErr_Format(PyExc_TypeError, + "index " SIP_SSIZE_T_FORMAT " has type '%s' but 'QSGGeometry.Attribute' is expected", + i, Py_TYPE(itm)->tp_name); + + Py_DECREF(itm); + sipError = sipErrorFail; + + break; + } + + // Calculate the stride if there no explicit one. + if (a1 <= 0) + { + int size; + + switch (attr->type) + { + case GL_BYTE: + size = sizeof (qint8); + break; + + #if GL_DOUBLE != GL_FLOAT + case GL_DOUBLE: + size = sizeof (double); + break; + #endif + + case GL_FLOAT: + size = sizeof (float); + break; + + case GL_INT: + size = sizeof (qint32); + break; + + default: + size = 0; + } + + if (!size) + { + PyErr_Format(PyExc_TypeError, + "index " SIP_SSIZE_T_FORMAT " has an unsupported primitive type", + i); + + sipReleaseType(attr, sipType_QSGGeometry_Attribute, state); + Py_DECREF(itm); + sipError = sipErrorFail; + + break; + } + + stride += attr->tupleSize * size; + } + + attrs.append(*attr); + + sipReleaseType(attr, sipType_QSGGeometry_Attribute, state); + Py_DECREF(itm); + } + + Py_DECREF(iter); + + if (sipError == sipErrorNone) + { + if (attrs.isEmpty()) + { + PyErr_SetString(PyExc_TypeError, "no attributes defined"); + sipError = sipErrorFail; + } + else + { + PyObject *bytes = SIPBytes_FromStringAndSize( + reinterpret_cast(attrs.data()), + sizeof (QSGGeometry::Attribute) * attrs.size()); + + if (!bytes) + { + sipError = sipErrorFail; + } + else + { + sipCpp = new QSGGeometry::AttributeSet; + + sipCpp->count = attrs.size(); + sipCpp->stride = (a1 > 0 ? a1 : stride); + sipCpp->attributes = reinterpret_cast( + SIPBytes_AS_STRING(bytes)); + + sipSelf->user = bytes; + } + } + } + } %End int count; @@ -63,8 +209,8 @@ const QSGGeometry::Attribute *attributes /DocType="read-only-array-of-QSGGeometry.Attribute"/ { %GetCode sipPy = sipConvertToTypedArray((void *)sipCpp->attributes, - sipType_QSGGeometry_Attribute, "iiiI", sipCpp->stride, sipCpp->count, - SIP_READ_ONLY); + sipType_QSGGeometry_Attribute, "iiiI", sizeof (QSGGeometry::Attribute), + sipCpp->count, SIP_READ_ONLY); %End %SetCode diff -Nru pyqt5-5.2+dfsg/sip/QtQuick/qsgmaterial.sip pyqt5-5.2.1+dfsg/sip/QtQuick/qsgmaterial.sip --- pyqt5-5.2+dfsg/sip/QtQuick/qsgmaterial.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQuick/qsgmaterial.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsgmaterial.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qsgmaterial.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQuick Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQuick/qsgnode.sip pyqt5-5.2.1+dfsg/sip/QtQuick/qsgnode.sip --- pyqt5-5.2+dfsg/sip/QtQuick/qsgnode.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQuick/qsgnode.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsgnode.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qsgnode.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQuick Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQuick/qsgsimplerectnode.sip pyqt5-5.2.1+dfsg/sip/QtQuick/qsgsimplerectnode.sip --- pyqt5-5.2+dfsg/sip/QtQuick/qsgsimplerectnode.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQuick/qsgsimplerectnode.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsgsimplerectnode.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qsgsimplerectnode.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQuick Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQuick/qsgsimpletexturenode.sip pyqt5-5.2.1+dfsg/sip/QtQuick/qsgsimpletexturenode.sip --- pyqt5-5.2+dfsg/sip/QtQuick/qsgsimpletexturenode.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQuick/qsgsimpletexturenode.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsgsimpletexturenode.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qsgsimpletexturenode.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQuick Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQuick/qsgtexturematerial.sip pyqt5-5.2.1+dfsg/sip/QtQuick/qsgtexturematerial.sip --- pyqt5-5.2+dfsg/sip/QtQuick/qsgtexturematerial.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQuick/qsgtexturematerial.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsgtexturematerial.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qsgtexturematerial.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQuick Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQuick/qsgtextureprovider.sip pyqt5-5.2.1+dfsg/sip/QtQuick/qsgtextureprovider.sip --- pyqt5-5.2+dfsg/sip/QtQuick/qsgtextureprovider.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQuick/qsgtextureprovider.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsgtextureprovider.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qsgtextureprovider.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQuick Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQuick/qsgtexture.sip pyqt5-5.2.1+dfsg/sip/QtQuick/qsgtexture.sip --- pyqt5-5.2+dfsg/sip/QtQuick/qsgtexture.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQuick/qsgtexture.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsgtexture.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qsgtexture.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQuick Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQuick/qsgvertexcolormaterial.sip pyqt5-5.2.1+dfsg/sip/QtQuick/qsgvertexcolormaterial.sip --- pyqt5-5.2+dfsg/sip/QtQuick/qsgvertexcolormaterial.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQuick/qsgvertexcolormaterial.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsgvertexcolormaterial.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qsgvertexcolormaterial.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQuick Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtQuick/QtQuickmod.sip pyqt5-5.2.1+dfsg/sip/QtQuick/QtQuickmod.sip --- pyqt5-5.2+dfsg/sip/QtQuick/QtQuickmod.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtQuick/QtQuickmod.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// QtQuickmod.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// QtQuickmod.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtQuick Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSensors/qaccelerometer.sip pyqt5-5.2.1+dfsg/sip/QtSensors/qaccelerometer.sip --- pyqt5-5.2+dfsg/sip/QtSensors/qaccelerometer.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSensors/qaccelerometer.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qaccelerometer.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qaccelerometer.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtSensors Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSensors/qaltimeter.sip pyqt5-5.2.1+dfsg/sip/QtSensors/qaltimeter.sip --- pyqt5-5.2+dfsg/sip/QtSensors/qaltimeter.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSensors/qaltimeter.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qaltimeter.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qaltimeter.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtSensors Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSensors/qambientlightsensor.sip pyqt5-5.2.1+dfsg/sip/QtSensors/qambientlightsensor.sip --- pyqt5-5.2+dfsg/sip/QtSensors/qambientlightsensor.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSensors/qambientlightsensor.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qambientlightsensor.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qambientlightsensor.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtSensors Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSensors/qambienttemperaturesensor.sip pyqt5-5.2.1+dfsg/sip/QtSensors/qambienttemperaturesensor.sip --- pyqt5-5.2+dfsg/sip/QtSensors/qambienttemperaturesensor.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSensors/qambienttemperaturesensor.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qambienttemperaturesensor.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qambienttemperaturesensor.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtSensors Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSensors/qcompass.sip pyqt5-5.2.1+dfsg/sip/QtSensors/qcompass.sip --- pyqt5-5.2+dfsg/sip/QtSensors/qcompass.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSensors/qcompass.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qcompass.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qcompass.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtSensors Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSensors/qgyroscope.sip pyqt5-5.2.1+dfsg/sip/QtSensors/qgyroscope.sip --- pyqt5-5.2+dfsg/sip/QtSensors/qgyroscope.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSensors/qgyroscope.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgyroscope.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qgyroscope.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtSensors Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSensors/qholstersensor.sip pyqt5-5.2.1+dfsg/sip/QtSensors/qholstersensor.sip --- pyqt5-5.2+dfsg/sip/QtSensors/qholstersensor.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSensors/qholstersensor.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qholstersensor.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qholstersensor.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtSensors Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSensors/qirproximitysensor.sip pyqt5-5.2.1+dfsg/sip/QtSensors/qirproximitysensor.sip --- pyqt5-5.2+dfsg/sip/QtSensors/qirproximitysensor.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSensors/qirproximitysensor.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qirproximitysensor.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qirproximitysensor.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtSensors Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSensors/qlightsensor.sip pyqt5-5.2.1+dfsg/sip/QtSensors/qlightsensor.sip --- pyqt5-5.2+dfsg/sip/QtSensors/qlightsensor.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSensors/qlightsensor.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qlightsensor.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qlightsensor.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtSensors Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSensors/qmagnetometer.sip pyqt5-5.2.1+dfsg/sip/QtSensors/qmagnetometer.sip --- pyqt5-5.2+dfsg/sip/QtSensors/qmagnetometer.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSensors/qmagnetometer.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmagnetometer.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qmagnetometer.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtSensors Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSensors/qorientationsensor.sip pyqt5-5.2.1+dfsg/sip/QtSensors/qorientationsensor.sip --- pyqt5-5.2+dfsg/sip/QtSensors/qorientationsensor.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSensors/qorientationsensor.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qorientationsensor.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qorientationsensor.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtSensors Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSensors/qpressuresensor.sip pyqt5-5.2.1+dfsg/sip/QtSensors/qpressuresensor.sip --- pyqt5-5.2+dfsg/sip/QtSensors/qpressuresensor.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSensors/qpressuresensor.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qpressuresensor.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qpressuresensor.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtSensors Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSensors/qproximitysensor.sip pyqt5-5.2.1+dfsg/sip/QtSensors/qproximitysensor.sip --- pyqt5-5.2+dfsg/sip/QtSensors/qproximitysensor.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSensors/qproximitysensor.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qproximitysensor.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qproximitysensor.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtSensors Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSensors/qrotationsensor.sip pyqt5-5.2.1+dfsg/sip/QtSensors/qrotationsensor.sip --- pyqt5-5.2+dfsg/sip/QtSensors/qrotationsensor.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSensors/qrotationsensor.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qrotationsensor.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qrotationsensor.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtSensors Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSensors/qsensor.sip pyqt5-5.2.1+dfsg/sip/QtSensors/qsensor.sip --- pyqt5-5.2+dfsg/sip/QtSensors/qsensor.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSensors/qsensor.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsensor.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qsensor.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtSensors Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSensors/qtapsensor.sip pyqt5-5.2.1+dfsg/sip/QtSensors/qtapsensor.sip --- pyqt5-5.2+dfsg/sip/QtSensors/qtapsensor.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSensors/qtapsensor.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtapsensor.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qtapsensor.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtSensors Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSensors/qtiltsensor.sip pyqt5-5.2.1+dfsg/sip/QtSensors/qtiltsensor.sip --- pyqt5-5.2+dfsg/sip/QtSensors/qtiltsensor.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSensors/qtiltsensor.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtiltsensor.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qtiltsensor.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtSensors Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSensors/QtSensorsmod.sip pyqt5-5.2.1+dfsg/sip/QtSensors/QtSensorsmod.sip --- pyqt5-5.2+dfsg/sip/QtSensors/QtSensorsmod.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSensors/QtSensorsmod.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// QtSensorsmod.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// QtSensorsmod.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtSensors Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSerialPort/qserialportinfo.sip pyqt5-5.2.1+dfsg/sip/QtSerialPort/qserialportinfo.sip --- pyqt5-5.2+dfsg/sip/QtSerialPort/qserialportinfo.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSerialPort/qserialportinfo.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qserialportinfo.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qserialportinfo.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtSerialPort Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSerialPort/qserialport.sip pyqt5-5.2.1+dfsg/sip/QtSerialPort/qserialport.sip --- pyqt5-5.2+dfsg/sip/QtSerialPort/qserialport.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSerialPort/qserialport.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qserialport.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qserialport.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtSerialPort Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSerialPort/QtSerialPortmod.sip pyqt5-5.2.1+dfsg/sip/QtSerialPort/QtSerialPortmod.sip --- pyqt5-5.2+dfsg/sip/QtSerialPort/QtSerialPortmod.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSerialPort/QtSerialPortmod.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// QtSerialPortmod.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// QtSerialPortmod.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtSerialPort Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSql/qsqldatabase.sip pyqt5-5.2.1+dfsg/sip/QtSql/qsqldatabase.sip --- pyqt5-5.2+dfsg/sip/QtSql/qsqldatabase.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSql/qsqldatabase.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsqldatabase.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsqldatabase.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtSql Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSql/qsqldriver.sip pyqt5-5.2.1+dfsg/sip/QtSql/qsqldriver.sip --- pyqt5-5.2+dfsg/sip/QtSql/qsqldriver.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSql/qsqldriver.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsqldriver.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsqldriver.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtSql Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSql/qsqlerror.sip pyqt5-5.2.1+dfsg/sip/QtSql/qsqlerror.sip --- pyqt5-5.2+dfsg/sip/QtSql/qsqlerror.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSql/qsqlerror.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsqlerror.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsqlerror.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtSql Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSql/qsqlfield.sip pyqt5-5.2.1+dfsg/sip/QtSql/qsqlfield.sip --- pyqt5-5.2+dfsg/sip/QtSql/qsqlfield.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSql/qsqlfield.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsqlfield.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsqlfield.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtSql Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSql/qsqlindex.sip pyqt5-5.2.1+dfsg/sip/QtSql/qsqlindex.sip --- pyqt5-5.2+dfsg/sip/QtSql/qsqlindex.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSql/qsqlindex.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsqlindex.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsqlindex.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtSql Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSql/qsqlquerymodel.sip pyqt5-5.2.1+dfsg/sip/QtSql/qsqlquerymodel.sip --- pyqt5-5.2+dfsg/sip/QtSql/qsqlquerymodel.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSql/qsqlquerymodel.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsqlquerymodel.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsqlquerymodel.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtSql Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSql/qsqlquery.sip pyqt5-5.2.1+dfsg/sip/QtSql/qsqlquery.sip --- pyqt5-5.2+dfsg/sip/QtSql/qsqlquery.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSql/qsqlquery.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsqlquery.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsqlquery.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtSql Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSql/qsqlrecord.sip pyqt5-5.2.1+dfsg/sip/QtSql/qsqlrecord.sip --- pyqt5-5.2+dfsg/sip/QtSql/qsqlrecord.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSql/qsqlrecord.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsqlrecord.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsqlrecord.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtSql Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSql/qsqlrelationaldelegate.sip pyqt5-5.2.1+dfsg/sip/QtSql/qsqlrelationaldelegate.sip --- pyqt5-5.2+dfsg/sip/QtSql/qsqlrelationaldelegate.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSql/qsqlrelationaldelegate.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsqlrelationaldelegate.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsqlrelationaldelegate.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtSql Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSql/qsqlrelationaltablemodel.sip pyqt5-5.2.1+dfsg/sip/QtSql/qsqlrelationaltablemodel.sip --- pyqt5-5.2+dfsg/sip/QtSql/qsqlrelationaltablemodel.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSql/qsqlrelationaltablemodel.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsqlrelationaltablemodel.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsqlrelationaltablemodel.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtSql Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSql/qsqlresult.sip pyqt5-5.2.1+dfsg/sip/QtSql/qsqlresult.sip --- pyqt5-5.2+dfsg/sip/QtSql/qsqlresult.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSql/qsqlresult.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsqlresult.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsqlresult.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtSql Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSql/qsql.sip pyqt5-5.2.1+dfsg/sip/QtSql/qsql.sip --- pyqt5-5.2+dfsg/sip/QtSql/qsql.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSql/qsql.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsql.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsql.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtSql Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSql/qsqltablemodel.sip pyqt5-5.2.1+dfsg/sip/QtSql/qsqltablemodel.sip --- pyqt5-5.2+dfsg/sip/QtSql/qsqltablemodel.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSql/qsqltablemodel.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsqltablemodel.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsqltablemodel.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtSql Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSql/QtSqlmod.sip pyqt5-5.2.1+dfsg/sip/QtSql/QtSqlmod.sip --- pyqt5-5.2+dfsg/sip/QtSql/QtSqlmod.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSql/QtSqlmod.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// QtSqlmod.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// QtSqlmod.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtSql Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSvg/qgraphicssvgitem.sip pyqt5-5.2.1+dfsg/sip/QtSvg/qgraphicssvgitem.sip --- pyqt5-5.2+dfsg/sip/QtSvg/qgraphicssvgitem.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSvg/qgraphicssvgitem.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgraphicssvgitem.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qgraphicssvgitem.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtSvg Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSvg/qsvggenerator.sip pyqt5-5.2.1+dfsg/sip/QtSvg/qsvggenerator.sip --- pyqt5-5.2+dfsg/sip/QtSvg/qsvggenerator.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSvg/qsvggenerator.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsvggenerator.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsvggenerator.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtSvg Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSvg/qsvgrenderer.sip pyqt5-5.2.1+dfsg/sip/QtSvg/qsvgrenderer.sip --- pyqt5-5.2+dfsg/sip/QtSvg/qsvgrenderer.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSvg/qsvgrenderer.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsvgrenderer.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsvgrenderer.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtSvg Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSvg/qsvgwidget.sip pyqt5-5.2.1+dfsg/sip/QtSvg/qsvgwidget.sip --- pyqt5-5.2+dfsg/sip/QtSvg/qsvgwidget.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSvg/qsvgwidget.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsvgwidget.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsvgwidget.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtSvg Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtSvg/QtSvgmod.sip pyqt5-5.2.1+dfsg/sip/QtSvg/QtSvgmod.sip --- pyqt5-5.2+dfsg/sip/QtSvg/QtSvgmod.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtSvg/QtSvgmod.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// QtSvgmod.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// QtSvgmod.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtSvg Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtTest/qsignalspy.sip pyqt5-5.2.1+dfsg/sip/QtTest/qsignalspy.sip --- pyqt5-5.2+dfsg/sip/QtTest/qsignalspy.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtTest/qsignalspy.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsignalspy.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsignalspy.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtTest Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtTest/qtestcase.sip pyqt5-5.2.1+dfsg/sip/QtTest/qtestcase.sip --- pyqt5-5.2+dfsg/sip/QtTest/qtestcase.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtTest/qtestcase.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtestcase.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qtestcase.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtTest Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtTest/qtestkeyboard.sip pyqt5-5.2.1+dfsg/sip/QtTest/qtestkeyboard.sip --- pyqt5-5.2+dfsg/sip/QtTest/qtestkeyboard.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtTest/qtestkeyboard.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtestkeyboard.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qtestkeyboard.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtTest Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtTest/qtestmouse.sip pyqt5-5.2.1+dfsg/sip/QtTest/qtestmouse.sip --- pyqt5-5.2+dfsg/sip/QtTest/qtestmouse.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtTest/qtestmouse.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtestmouse.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qtestmouse.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtTest Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtTest/qtestsystem.sip pyqt5-5.2.1+dfsg/sip/QtTest/qtestsystem.sip --- pyqt5-5.2+dfsg/sip/QtTest/qtestsystem.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtTest/qtestsystem.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtestsystem.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qtestsystem.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtTest Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtTest/qtesttouch.sip pyqt5-5.2.1+dfsg/sip/QtTest/qtesttouch.sip --- pyqt5-5.2+dfsg/sip/QtTest/qtesttouch.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtTest/qtesttouch.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtesttouch.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qtesttouch.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtTest Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtTest/QtTestmod.sip pyqt5-5.2.1+dfsg/sip/QtTest/QtTestmod.sip --- pyqt5-5.2+dfsg/sip/QtTest/QtTestmod.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtTest/QtTestmod.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// QtTestmod.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// QtTestmod.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtTest Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWebKit/QtWebKitmod.sip pyqt5-5.2.1+dfsg/sip/QtWebKit/QtWebKitmod.sip --- pyqt5-5.2+dfsg/sip/QtWebKit/QtWebKitmod.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWebKit/QtWebKitmod.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// QtWebKitmod.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// QtWebKitmod.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtWebKit Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWebKit/qwebdatabase.sip pyqt5-5.2.1+dfsg/sip/QtWebKit/qwebdatabase.sip --- pyqt5-5.2+dfsg/sip/QtWebKit/qwebdatabase.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWebKit/qwebdatabase.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qwebdatabase.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qwebdatabase.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtWebKit Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWebKit/qwebelement.sip pyqt5-5.2.1+dfsg/sip/QtWebKit/qwebelement.sip --- pyqt5-5.2+dfsg/sip/QtWebKit/qwebelement.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWebKit/qwebelement.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qwebelement.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qwebelement.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtWebKit Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWebKit/qwebhistoryinterface.sip pyqt5-5.2.1+dfsg/sip/QtWebKit/qwebhistoryinterface.sip --- pyqt5-5.2+dfsg/sip/QtWebKit/qwebhistoryinterface.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWebKit/qwebhistoryinterface.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qwebhistoryinterface.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qwebhistoryinterface.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtWebKit Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWebKit/qwebhistory.sip pyqt5-5.2.1+dfsg/sip/QtWebKit/qwebhistory.sip --- pyqt5-5.2+dfsg/sip/QtWebKit/qwebhistory.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWebKit/qwebhistory.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qwebhistory.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qwebhistory.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtWebKit Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWebKit/qwebkitglobal.sip pyqt5-5.2.1+dfsg/sip/QtWebKit/qwebkitglobal.sip --- pyqt5-5.2+dfsg/sip/QtWebKit/qwebkitglobal.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWebKit/qwebkitglobal.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qwebkitglobal.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qwebkitglobal.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtWebKit Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWebKit/qwebpluginfactory.sip pyqt5-5.2.1+dfsg/sip/QtWebKit/qwebpluginfactory.sip --- pyqt5-5.2+dfsg/sip/QtWebKit/qwebpluginfactory.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWebKit/qwebpluginfactory.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qwebpluginfactory.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qwebpluginfactory.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtWebKit Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWebKit/qwebsecurityorigin.sip pyqt5-5.2.1+dfsg/sip/QtWebKit/qwebsecurityorigin.sip --- pyqt5-5.2+dfsg/sip/QtWebKit/qwebsecurityorigin.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWebKit/qwebsecurityorigin.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qwebsecurityorigin.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qwebsecurityorigin.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtWebKit Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWebKit/qwebsettings.sip pyqt5-5.2.1+dfsg/sip/QtWebKit/qwebsettings.sip --- pyqt5-5.2+dfsg/sip/QtWebKit/qwebsettings.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWebKit/qwebsettings.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qwebsettings.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qwebsettings.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtWebKit Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWebKitWidgets/qgraphicswebview.sip pyqt5-5.2.1+dfsg/sip/QtWebKitWidgets/qgraphicswebview.sip --- pyqt5-5.2+dfsg/sip/QtWebKitWidgets/qgraphicswebview.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWebKitWidgets/qgraphicswebview.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgraphicswebview.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qgraphicswebview.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtWebKitWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWebKitWidgets/QtWebKitWidgetsmod.sip pyqt5-5.2.1+dfsg/sip/QtWebKitWidgets/QtWebKitWidgetsmod.sip --- pyqt5-5.2+dfsg/sip/QtWebKitWidgets/QtWebKitWidgetsmod.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWebKitWidgets/QtWebKitWidgetsmod.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// QtWebKitWidgetsmod.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// QtWebKitWidgetsmod.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtWebKitWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWebKitWidgets/qwebframe.sip pyqt5-5.2.1+dfsg/sip/QtWebKitWidgets/qwebframe.sip --- pyqt5-5.2+dfsg/sip/QtWebKitWidgets/qwebframe.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWebKitWidgets/qwebframe.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qwebframe.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qwebframe.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtWebKitWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWebKitWidgets/qwebinspector.sip pyqt5-5.2.1+dfsg/sip/QtWebKitWidgets/qwebinspector.sip --- pyqt5-5.2+dfsg/sip/QtWebKitWidgets/qwebinspector.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWebKitWidgets/qwebinspector.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qwebinspector.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qwebinspector.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtWebKitWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWebKitWidgets/qwebpage.sip pyqt5-5.2.1+dfsg/sip/QtWebKitWidgets/qwebpage.sip --- pyqt5-5.2+dfsg/sip/QtWebKitWidgets/qwebpage.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWebKitWidgets/qwebpage.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qwebpage.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qwebpage.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtWebKitWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWebKitWidgets/qwebview.sip pyqt5-5.2.1+dfsg/sip/QtWebKitWidgets/qwebview.sip --- pyqt5-5.2+dfsg/sip/QtWebKitWidgets/qwebview.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWebKitWidgets/qwebview.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qwebview.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qwebview.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtWebKitWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qabstractbutton.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qabstractbutton.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qabstractbutton.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qabstractbutton.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qabstractbutton.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qabstractbutton.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qabstractitemdelegate.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qabstractitemdelegate.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qabstractitemdelegate.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qabstractitemdelegate.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qabstractitemdelegate.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qabstractitemdelegate.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qabstractitemview.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qabstractitemview.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qabstractitemview.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qabstractitemview.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qabstractitemview.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qabstractitemview.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qabstractscrollarea.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qabstractscrollarea.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qabstractscrollarea.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qabstractscrollarea.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qabstractscrollarea.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qabstractscrollarea.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qabstractslider.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qabstractslider.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qabstractslider.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qabstractslider.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qabstractslider.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qabstractslider.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qabstractspinbox.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qabstractspinbox.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qabstractspinbox.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qabstractspinbox.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qabstractspinbox.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qabstractspinbox.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qactiongroup.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qactiongroup.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qactiongroup.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qactiongroup.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qactiongroup.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qactiongroup.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qaction.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qaction.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qaction.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qaction.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qaction.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qaction.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qapplication.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qapplication.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qapplication.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qapplication.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qapplication.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qapplication.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qboxlayout.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qboxlayout.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qboxlayout.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qboxlayout.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qboxlayout.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qboxlayout.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qbuttongroup.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qbuttongroup.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qbuttongroup.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qbuttongroup.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qbuttongroup.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qbuttongroup.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qcalendarwidget.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qcalendarwidget.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qcalendarwidget.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qcalendarwidget.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qcalendarwidget.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qcalendarwidget.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qcheckbox.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qcheckbox.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qcheckbox.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qcheckbox.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qcheckbox.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qcheckbox.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qcolordialog.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qcolordialog.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qcolordialog.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qcolordialog.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qcolordialog.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qcolordialog.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qcolumnview.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qcolumnview.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qcolumnview.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qcolumnview.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qcolumnview.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qcolumnview.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qcombobox.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qcombobox.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qcombobox.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qcombobox.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qcombobox.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qcombobox.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qcommandlinkbutton.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qcommandlinkbutton.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qcommandlinkbutton.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qcommandlinkbutton.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qcommandlinkbutton.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qcommandlinkbutton.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qcommonstyle.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qcommonstyle.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qcommonstyle.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qcommonstyle.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qcommonstyle.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qcommonstyle.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qcompleter.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qcompleter.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qcompleter.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qcompleter.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qcompleter.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qcompleter.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qdatawidgetmapper.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qdatawidgetmapper.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qdatawidgetmapper.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qdatawidgetmapper.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdatawidgetmapper.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qdatawidgetmapper.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qdatetimeedit.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qdatetimeedit.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qdatetimeedit.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qdatetimeedit.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdatetimeedit.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qdatetimeedit.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qdesktopwidget.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qdesktopwidget.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qdesktopwidget.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qdesktopwidget.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdesktopwidget.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qdesktopwidget.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qdialogbuttonbox.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qdialogbuttonbox.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qdialogbuttonbox.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qdialogbuttonbox.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdialogbuttonbox.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qdialogbuttonbox.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qdialog.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qdialog.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qdialog.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qdialog.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdialog.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qdialog.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qdial.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qdial.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qdial.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qdial.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdial.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qdial.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qdirmodel.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qdirmodel.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qdirmodel.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qdirmodel.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdirmodel.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qdirmodel.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qdockwidget.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qdockwidget.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qdockwidget.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qdockwidget.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdockwidget.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qdockwidget.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qdrawutil.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qdrawutil.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qdrawutil.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qdrawutil.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qdrawutil.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qdrawutil.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qerrormessage.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qerrormessage.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qerrormessage.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qerrormessage.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qerrormessage.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qerrormessage.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qfiledialog.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qfiledialog.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qfiledialog.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qfiledialog.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qfiledialog.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qfiledialog.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qfileiconprovider.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qfileiconprovider.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qfileiconprovider.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qfileiconprovider.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qfileiconprovider.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qfileiconprovider.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qfilesystemmodel.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qfilesystemmodel.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qfilesystemmodel.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qfilesystemmodel.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qfilesystemmodel.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qfilesystemmodel.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qfocusframe.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qfocusframe.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qfocusframe.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qfocusframe.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qfocusframe.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qfocusframe.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qfontcombobox.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qfontcombobox.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qfontcombobox.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qfontcombobox.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qfontcombobox.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qfontcombobox.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qfontdialog.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qfontdialog.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qfontdialog.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qfontdialog.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qfontdialog.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qfontdialog.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qformlayout.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qformlayout.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qformlayout.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qformlayout.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qformlayout.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qformlayout.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qframe.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qframe.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qframe.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qframe.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qframe.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qframe.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qgesturerecognizer.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qgesturerecognizer.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qgesturerecognizer.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qgesturerecognizer.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgesturerecognizer.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qgesturerecognizer.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qgesture.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qgesture.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qgesture.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qgesture.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgesture.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qgesture.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qgraphicsanchorlayout.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qgraphicsanchorlayout.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qgraphicsanchorlayout.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qgraphicsanchorlayout.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgraphicsanchorlayout.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qgraphicsanchorlayout.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qgraphicseffect.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qgraphicseffect.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qgraphicseffect.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qgraphicseffect.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgraphicseffect.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qgraphicseffect.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qgraphicsgridlayout.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qgraphicsgridlayout.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qgraphicsgridlayout.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qgraphicsgridlayout.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgraphicsgridlayout.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qgraphicsgridlayout.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qgraphicsitem.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qgraphicsitem.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qgraphicsitem.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qgraphicsitem.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgraphicsitem.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qgraphicsitem.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qgraphicslayoutitem.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qgraphicslayoutitem.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qgraphicslayoutitem.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qgraphicslayoutitem.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgraphicslayoutitem.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qgraphicslayoutitem.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qgraphicslayout.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qgraphicslayout.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qgraphicslayout.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qgraphicslayout.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgraphicslayout.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qgraphicslayout.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qgraphicslinearlayout.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qgraphicslinearlayout.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qgraphicslinearlayout.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qgraphicslinearlayout.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgraphicslinearlayout.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qgraphicslinearlayout.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qgraphicsproxywidget.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qgraphicsproxywidget.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qgraphicsproxywidget.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qgraphicsproxywidget.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgraphicsproxywidget.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qgraphicsproxywidget.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qgraphicssceneevent.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qgraphicssceneevent.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qgraphicssceneevent.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qgraphicssceneevent.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgraphicssceneevent.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qgraphicssceneevent.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qgraphicsscene.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qgraphicsscene.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qgraphicsscene.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qgraphicsscene.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgraphicsscene.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qgraphicsscene.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qgraphicstransform.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qgraphicstransform.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qgraphicstransform.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qgraphicstransform.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgraphicstransform.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qgraphicstransform.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qgraphicsview.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qgraphicsview.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qgraphicsview.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qgraphicsview.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgraphicsview.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qgraphicsview.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qgraphicswidget.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qgraphicswidget.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qgraphicswidget.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qgraphicswidget.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgraphicswidget.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qgraphicswidget.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qgridlayout.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qgridlayout.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qgridlayout.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qgridlayout.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgridlayout.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qgridlayout.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qgroupbox.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qgroupbox.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qgroupbox.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qgroupbox.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qgroupbox.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qgroupbox.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qheaderview.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qheaderview.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qheaderview.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qheaderview.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qheaderview.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qheaderview.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qinputdialog.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qinputdialog.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qinputdialog.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qinputdialog.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qinputdialog.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qinputdialog.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qitemdelegate.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qitemdelegate.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qitemdelegate.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qitemdelegate.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qitemdelegate.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qitemdelegate.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qitemeditorfactory.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qitemeditorfactory.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qitemeditorfactory.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qitemeditorfactory.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qitemeditorfactory.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qitemeditorfactory.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qkeyeventtransition.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qkeyeventtransition.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qkeyeventtransition.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qkeyeventtransition.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qkeyeventtransition.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qkeyeventtransition.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qkeysequenceedit.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qkeysequenceedit.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qkeysequenceedit.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qkeysequenceedit.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qkeysequenceedit.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qkeysequenceedit.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qlabel.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qlabel.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qlabel.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qlabel.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qlabel.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qlabel.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qlayoutitem.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qlayoutitem.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qlayoutitem.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qlayoutitem.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qlayoutitem.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qlayoutitem.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qlayout.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qlayout.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qlayout.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qlayout.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qlayout.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qlayout.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qlcdnumber.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qlcdnumber.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qlcdnumber.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qlcdnumber.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qlcdnumber.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qlcdnumber.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qlineedit.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qlineedit.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qlineedit.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qlineedit.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qlineedit.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qlineedit.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qlistview.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qlistview.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qlistview.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qlistview.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qlistview.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qlistview.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qlistwidget.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qlistwidget.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qlistwidget.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qlistwidget.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qlistwidget.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qlistwidget.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qmainwindow.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qmainwindow.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qmainwindow.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qmainwindow.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmainwindow.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qmainwindow.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qmdiarea.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qmdiarea.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qmdiarea.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qmdiarea.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmdiarea.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qmdiarea.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qmdisubwindow.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qmdisubwindow.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qmdisubwindow.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qmdisubwindow.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmdisubwindow.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qmdisubwindow.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qmenubar.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qmenubar.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qmenubar.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qmenubar.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmenubar.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qmenubar.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qmenu.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qmenu.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qmenu.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qmenu.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmenu.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qmenu.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qmessagebox.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qmessagebox.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qmessagebox.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qmessagebox.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmessagebox.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qmessagebox.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qmouseeventtransition.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qmouseeventtransition.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qmouseeventtransition.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qmouseeventtransition.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qmouseeventtransition.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qmouseeventtransition.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qplaintextedit.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qplaintextedit.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qplaintextedit.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qplaintextedit.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qplaintextedit.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qplaintextedit.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qprogressbar.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qprogressbar.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qprogressbar.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qprogressbar.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qprogressbar.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qprogressbar.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qprogressdialog.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qprogressdialog.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qprogressdialog.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qprogressdialog.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qprogressdialog.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qprogressdialog.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qpushbutton.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qpushbutton.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qpushbutton.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qpushbutton.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qpushbutton.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qpushbutton.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qradiobutton.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qradiobutton.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qradiobutton.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qradiobutton.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qradiobutton.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qradiobutton.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qrubberband.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qrubberband.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qrubberband.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qrubberband.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qrubberband.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qrubberband.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qscrollarea.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qscrollarea.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qscrollarea.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qscrollarea.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qscrollarea.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qscrollarea.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qscrollbar.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qscrollbar.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qscrollbar.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qscrollbar.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qscrollbar.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qscrollbar.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qscrollerproperties.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qscrollerproperties.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qscrollerproperties.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qscrollerproperties.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qscrollerproperties.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qscrollerproperties.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qscroller.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qscroller.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qscroller.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qscroller.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qscroller.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qscroller.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qshortcut.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qshortcut.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qshortcut.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qshortcut.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qshortcut.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qshortcut.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qsizegrip.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qsizegrip.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qsizegrip.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qsizegrip.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsizegrip.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qsizegrip.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qsizepolicy.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qsizepolicy.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qsizepolicy.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qsizepolicy.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsizepolicy.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qsizepolicy.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qslider.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qslider.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qslider.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qslider.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qslider.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qslider.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qspinbox.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qspinbox.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qspinbox.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qspinbox.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qspinbox.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qspinbox.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qsplashscreen.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qsplashscreen.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qsplashscreen.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qsplashscreen.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsplashscreen.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qsplashscreen.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qsplitter.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qsplitter.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qsplitter.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qsplitter.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsplitter.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qsplitter.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qstackedlayout.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qstackedlayout.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qstackedlayout.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qstackedlayout.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qstackedlayout.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qstackedlayout.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qstackedwidget.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qstackedwidget.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qstackedwidget.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qstackedwidget.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qstackedwidget.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qstackedwidget.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qstatusbar.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qstatusbar.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qstatusbar.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qstatusbar.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qstatusbar.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qstatusbar.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qstyleditemdelegate.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qstyleditemdelegate.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qstyleditemdelegate.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qstyleditemdelegate.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qstyleditemdelegate.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qstyleditemdelegate.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qstylefactory.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qstylefactory.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qstylefactory.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qstylefactory.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qstylefactory.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qstylefactory.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qstyleoption.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qstyleoption.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qstyleoption.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qstyleoption.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qstyleoption.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qstyleoption.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qstylepainter.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qstylepainter.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qstylepainter.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qstylepainter.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qstylepainter.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qstylepainter.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qstyle.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qstyle.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qstyle.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qstyle.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qstyle.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qstyle.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qsystemtrayicon.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qsystemtrayicon.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qsystemtrayicon.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qsystemtrayicon.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsystemtrayicon.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qsystemtrayicon.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qtabbar.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qtabbar.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qtabbar.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qtabbar.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtabbar.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qtabbar.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qtableview.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qtableview.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qtableview.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qtableview.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtableview.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qtableview.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qtablewidget.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qtablewidget.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qtablewidget.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qtablewidget.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtablewidget.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qtablewidget.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qtabwidget.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qtabwidget.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qtabwidget.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qtabwidget.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtabwidget.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qtabwidget.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qtextbrowser.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qtextbrowser.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qtextbrowser.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qtextbrowser.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtextbrowser.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qtextbrowser.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qtextedit.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qtextedit.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qtextedit.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qtextedit.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtextedit.sip generated by MetaSIP on Tue Jan 7 16:20:14 2014 +// qtextedit.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qtoolbar.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qtoolbar.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qtoolbar.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qtoolbar.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtoolbar.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qtoolbar.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qtoolbox.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qtoolbox.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qtoolbox.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qtoolbox.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtoolbox.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qtoolbox.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qtoolbutton.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qtoolbutton.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qtoolbutton.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qtoolbutton.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtoolbutton.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qtoolbutton.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qtooltip.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qtooltip.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qtooltip.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qtooltip.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtooltip.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qtooltip.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qtreeview.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qtreeview.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qtreeview.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qtreeview.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtreeview.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qtreeview.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qtreewidgetitemiterator.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qtreewidgetitemiterator.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qtreewidgetitemiterator.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qtreewidgetitemiterator.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtreewidgetitemiterator.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qtreewidgetitemiterator.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qtreewidget.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qtreewidget.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qtreewidget.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qtreewidget.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qtreewidget.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qtreewidget.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/QtWidgetsmod.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/QtWidgetsmod.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/QtWidgetsmod.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/QtWidgetsmod.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// QtWidgetsmod.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// QtWidgetsmod.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qundogroup.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qundogroup.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qundogroup.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qundogroup.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qundogroup.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qundogroup.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qundostack.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qundostack.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qundostack.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qundostack.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qundostack.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qundostack.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qundoview.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qundoview.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qundoview.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qundoview.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qundoview.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qundoview.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qwhatsthis.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qwhatsthis.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qwhatsthis.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qwhatsthis.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qwhatsthis.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qwhatsthis.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qwidgetaction.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qwidgetaction.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qwidgetaction.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qwidgetaction.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qwidgetaction.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qwidgetaction.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qwidget.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qwidget.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qwidget.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qwidget.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qwidget.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qwidget.sip generated by MetaSIP on Fri Mar 14 14:38:43 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtWidgets/qwizard.sip pyqt5-5.2.1+dfsg/sip/QtWidgets/qwizard.sip --- pyqt5-5.2+dfsg/sip/QtWidgets/qwizard.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtWidgets/qwizard.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qwizard.sip generated by MetaSIP on Tue Jan 7 16:20:15 2014 +// qwizard.sip generated by MetaSIP on Fri Mar 14 14:38:44 2014 // // This file is part of the QtWidgets Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtX11Extras/qx11info_x11.sip pyqt5-5.2.1+dfsg/sip/QtX11Extras/qx11info_x11.sip --- pyqt5-5.2+dfsg/sip/QtX11Extras/qx11info_x11.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtX11Extras/qx11info_x11.sip 2014-03-14 14:38:45.000000000 +0000 @@ -31,7 +31,9 @@ %End public: +%If (Qt_5_2_0 -) static bool isPlatformX11(); +%End static int appDpiX(int screen = -1); static int appDpiY(int screen = -1); @@ -45,7 +47,9 @@ static void setAppTime(unsigned long time); static void setAppUserTime(unsigned long time); +%If (Qt_5_2_0 -) static unsigned long getTimestamp(); +%End static Display *display(); static xcb_connection_t *connection(); diff -Nru pyqt5-5.2+dfsg/sip/QtXmlPatterns/qabstractmessagehandler.sip pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qabstractmessagehandler.sip --- pyqt5-5.2+dfsg/sip/QtXmlPatterns/qabstractmessagehandler.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qabstractmessagehandler.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qabstractmessagehandler.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qabstractmessagehandler.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtXmlPatterns Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtXmlPatterns/qabstracturiresolver.sip pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qabstracturiresolver.sip --- pyqt5-5.2+dfsg/sip/QtXmlPatterns/qabstracturiresolver.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qabstracturiresolver.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qabstracturiresolver.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qabstracturiresolver.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtXmlPatterns Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtXmlPatterns/qabstractxmlnodemodel.sip pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qabstractxmlnodemodel.sip --- pyqt5-5.2+dfsg/sip/QtXmlPatterns/qabstractxmlnodemodel.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qabstractxmlnodemodel.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qabstractxmlnodemodel.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qabstractxmlnodemodel.sip generated by MetaSIP on Fri Mar 14 14:38:41 2014 // // This file is part of the QtXmlPatterns Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtXmlPatterns/qabstractxmlreceiver.sip pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qabstractxmlreceiver.sip --- pyqt5-5.2+dfsg/sip/QtXmlPatterns/qabstractxmlreceiver.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qabstractxmlreceiver.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qabstractxmlreceiver.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qabstractxmlreceiver.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtXmlPatterns Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtXmlPatterns/qsimplexmlnodemodel.sip pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qsimplexmlnodemodel.sip --- pyqt5-5.2+dfsg/sip/QtXmlPatterns/qsimplexmlnodemodel.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qsimplexmlnodemodel.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsimplexmlnodemodel.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsimplexmlnodemodel.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtXmlPatterns Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtXmlPatterns/qsourcelocation.sip pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qsourcelocation.sip --- pyqt5-5.2+dfsg/sip/QtXmlPatterns/qsourcelocation.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qsourcelocation.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qsourcelocation.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qsourcelocation.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtXmlPatterns Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtXmlPatterns/QtXmlPatternsmod.sip pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/QtXmlPatternsmod.sip --- pyqt5-5.2+dfsg/sip/QtXmlPatterns/QtXmlPatternsmod.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/QtXmlPatternsmod.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// QtXmlPatternsmod.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// QtXmlPatternsmod.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtXmlPatterns Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtXmlPatterns/qxmlformatter.sip pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qxmlformatter.sip --- pyqt5-5.2+dfsg/sip/QtXmlPatterns/qxmlformatter.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qxmlformatter.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qxmlformatter.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qxmlformatter.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtXmlPatterns Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtXmlPatterns/qxmlnamepool.sip pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qxmlnamepool.sip --- pyqt5-5.2+dfsg/sip/QtXmlPatterns/qxmlnamepool.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qxmlnamepool.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qxmlnamepool.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qxmlnamepool.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtXmlPatterns Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtXmlPatterns/qxmlname.sip pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qxmlname.sip --- pyqt5-5.2+dfsg/sip/QtXmlPatterns/qxmlname.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qxmlname.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qxmlname.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qxmlname.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtXmlPatterns Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtXmlPatterns/qxmlquery.sip pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qxmlquery.sip --- pyqt5-5.2+dfsg/sip/QtXmlPatterns/qxmlquery.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qxmlquery.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qxmlquery.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qxmlquery.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtXmlPatterns Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtXmlPatterns/qxmlresultitems.sip pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qxmlresultitems.sip --- pyqt5-5.2+dfsg/sip/QtXmlPatterns/qxmlresultitems.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qxmlresultitems.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qxmlresultitems.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qxmlresultitems.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtXmlPatterns Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtXmlPatterns/qxmlschema.sip pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qxmlschema.sip --- pyqt5-5.2+dfsg/sip/QtXmlPatterns/qxmlschema.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qxmlschema.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qxmlschema.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qxmlschema.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtXmlPatterns Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtXmlPatterns/qxmlschemavalidator.sip pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qxmlschemavalidator.sip --- pyqt5-5.2+dfsg/sip/QtXmlPatterns/qxmlschemavalidator.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qxmlschemavalidator.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qxmlschemavalidator.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qxmlschemavalidator.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtXmlPatterns Python extension module. // diff -Nru pyqt5-5.2+dfsg/sip/QtXmlPatterns/qxmlserializer.sip pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qxmlserializer.sip --- pyqt5-5.2+dfsg/sip/QtXmlPatterns/qxmlserializer.sip 2014-01-07 16:20:16.000000000 +0000 +++ pyqt5-5.2.1+dfsg/sip/QtXmlPatterns/qxmlserializer.sip 2014-03-14 14:38:45.000000000 +0000 @@ -1,4 +1,4 @@ -// qxmlserializer.sip generated by MetaSIP on Tue Jan 7 16:20:13 2014 +// qxmlserializer.sip generated by MetaSIP on Fri Mar 14 14:38:42 2014 // // This file is part of the QtXmlPatterns Python extension module. //