aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside2/PySide2/QtOpenGLFunctions
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2020-11-02 16:11:52 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2020-11-02 16:12:04 +0000
commit25180730194bec25f915f32ab846ea583fb1493f (patch)
tree9a73e0336ecf21e085d99d6a651c5547b9eb99f8 /sources/pyside2/PySide2/QtOpenGLFunctions
parent6e3e7b9ca0548430aaa5e2555d6e02c64625fa3f (diff)
Rename PySide2 to PySide6
Adapt CMake files, build scripts, tests and examples. Task-number: PYSIDE-904 Change-Id: I845f7b006e9ad274fed5444ec4c1f9dbe176ff88 Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'sources/pyside2/PySide2/QtOpenGLFunctions')
-rw-r--r--sources/pyside2/PySide2/QtOpenGLFunctions/CMakeLists.txt74
-rw-r--r--sources/pyside2/PySide2/QtOpenGLFunctions/QtOpenGLFunctions_global.post.h.in61
-rw-r--r--sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions.xml404
-rw-r--r--sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_0.xml51
-rw-r--r--sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_0_compat.xml103
-rw-r--r--sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_1.xml44
-rw-r--r--sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_1_compat.xml44
-rw-r--r--sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_2_compat.xml46
-rw-r--r--sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_3_compat.xml46
-rw-r--r--sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_4.xml47
-rw-r--r--sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_4_compat.xml49
-rw-r--r--sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications2_0.xml49
-rw-r--r--sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications2_0_compat.xml1
-rw-r--r--sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications2_1.xml43
-rw-r--r--sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications3_0.xml46
-rw-r--r--sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications3_3.xml46
-rw-r--r--sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications3_3a.xml57
-rw-r--r--sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_0.xml46
-rw-r--r--sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_1.xml58
-rw-r--r--sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_3.xml43
-rw-r--r--sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_4.xml56
-rw-r--r--sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_4_core.xml43
-rw-r--r--sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_5.xml57
-rw-r--r--sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_5_core.xml41
-rw-r--r--sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications_va.xml43
25 files changed, 0 insertions, 1598 deletions
diff --git a/sources/pyside2/PySide2/QtOpenGLFunctions/CMakeLists.txt b/sources/pyside2/PySide2/QtOpenGLFunctions/CMakeLists.txt
deleted file mode 100644
index 7e795989f..000000000
--- a/sources/pyside2/PySide2/QtOpenGLFunctions/CMakeLists.txt
+++ /dev/null
@@ -1,74 +0,0 @@
-project(QtOpenGLFunctions)
-
-get_property(QtOpenGLFunctions_enabled_features TARGET Qt${QT_MAJOR_VERSION}::Gui
- PROPERTY QT_ENABLED_PUBLIC_FEATURES)
-
-set(QtOpenGLFunctions_SRC ${QtOpenGLFunctions_GEN_DIR}/qtopenglfunctions_module_wrapper.cpp)
-
-get_property(QtGui_enabled_features TARGET Qt${QT_MAJOR_VERSION}::Gui
- PROPERTY QT_ENABLED_PUBLIC_FEATURES)
-
-if("opengles2" IN_LIST QtGui_enabled_features)
- list(APPEND QtOpenGLFunctions_SRC
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_es2_wrapper.cpp)
- message(STATUS "Qt${QT_MAJOR_VERSION}OpenGLFunctions: Dropping Desktop OpenGL classes (GLES2)")
-else()
- list(APPEND QtOpenGLFunctions_SRC
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_1_0_wrapper.cpp
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_1_1_wrapper.cpp
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_1_2_wrapper.cpp
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_1_3_wrapper.cpp
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_1_4_wrapper.cpp
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_1_5_wrapper.cpp
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_2_0_wrapper.cpp
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_2_1_wrapper.cpp
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_3_0_wrapper.cpp
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_3_1_wrapper.cpp
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_3_2_compatibility_wrapper.cpp
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_3_2_core_wrapper.cpp
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_3_3_compatibility_wrapper.cpp
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_3_3_core_wrapper.cpp
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_4_0_compatibility_wrapper.cpp
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_4_0_core_wrapper.cpp
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_4_1_compatibility_wrapper.cpp
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_4_1_core_wrapper.cpp
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_4_2_compatibility_wrapper.cpp
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_4_2_core_wrapper.cpp
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_4_3_compatibility_wrapper.cpp
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_4_3_core_wrapper.cpp
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_4_4_compatibility_wrapper.cpp
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_4_4_core_wrapper.cpp
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_4_5_compatibility_wrapper.cpp
- ${QtOpenGLFunctions_GEN_DIR}/qopenglfunctions_4_5_core_wrapper.cpp)
- message(STATUS "Qt${QT_MAJOR_VERSION}OpenGLFunctions: Adding Desktop OpenGL classes")
-endif()
-
-configure_file("${QtOpenGLFunctions_SOURCE_DIR}/QtOpenGLFunctions_global.post.h.in"
- "${QtOpenGLFunctions_BINARY_DIR}/QtOpenGLFunctions_global.post.h" @ONLY)
-
-set(QtOpenGLFunctions_include_dirs ${QtOpenGLFunctions_SOURCE_DIR}
- ${QtOpenGLFunctions_BINARY_DIR}
- ${pyside2_SOURCE_DIR}
- ${Qt${QT_MAJOR_VERSION}Core_INCLUDE_DIRS}
- ${Qt${QT_MAJOR_VERSION}Gui_INCLUDE_DIRS}
- ${Qt${QT_MAJOR_VERSION}OpenGL_INCLUDE_DIRS}
- ${libpyside_SOURCE_DIR}
- ${QtCore_GEN_DIR}
- ${QtGui_GEN_DIR}
- ${QtOpenGL_GEN_DIR}
- )
-
-set(QtOpenGLFunctions_libraries pyside2
- ${Qt${QT_MAJOR_VERSION}Gui_LIBRARIES}
- ${Qt${QT_MAJOR_VERSION}OpenGL_LIBRARIES})
-
-set(QtOpenGLFunctions_deps QtGui QtOpenGL)
-
-create_pyside_module(NAME QtOpenGLFunctions
- INCLUDE_DIRS QtOpenGLFunctions_include_dirs
- LIBRARIES QtOpenGLFunctions_libraries
- DEPS QtOpenGLFunctions_deps
- TYPESYSTEM_PATH QtOpenGLFunctions_SOURCE_DIR
- SOURCES QtOpenGLFunctions_SRC
- TYPESYSTEM_NAME ${QtOpenGLFunctions_BINARY_DIR}/typesystem_openglfunctions.xml
- DROPPED_ENTRIES QtOpenGLFunctions_DROPPED_ENTRIES)
diff --git a/sources/pyside2/PySide2/QtOpenGLFunctions/QtOpenGLFunctions_global.post.h.in b/sources/pyside2/PySide2/QtOpenGLFunctions/QtOpenGLFunctions_global.post.h.in
deleted file mode 100644
index c25343e05..000000000
--- a/sources/pyside2/PySide2/QtOpenGLFunctions/QtOpenGLFunctions_global.post.h.in
+++ /dev/null
@@ -1,61 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:GPL-EXCEPT$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3 as published by the Free Software
-** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#include <QtGui/qtgui-config.h>
-// OpenGL functions are not in the QtGui module header
-#if QT_CONFIG(opengl)
-# include <QtOpenGL/qopenglfunctions_1_0.h>
-# include <QtOpenGL/qopenglfunctions_1_1.h>
-# include <QtOpenGL/qopenglfunctions_1_2.h>
-# include <QtOpenGL/qopenglfunctions_1_3.h>
-# include <QtOpenGL/qopenglfunctions_1_4.h>
-# include <QtOpenGL/qopenglfunctions_1_5.h>
-# include <QtOpenGL/qopenglfunctions_2_0.h>
-# include <QtOpenGL/qopenglfunctions_2_1.h>
-# include <QtOpenGL/qopenglfunctions_3_0.h>
-# include <QtOpenGL/qopenglfunctions_3_1.h>
-# include <QtOpenGL/qopenglfunctions_3_2_compatibility.h>
-# include <QtOpenGL/qopenglfunctions_3_2_core.h>
-# include <QtOpenGL/qopenglfunctions_3_3_compatibility.h>
-# include <QtOpenGL/qopenglfunctions_3_3_core.h>
-# include <QtOpenGL/qopenglfunctions_4_0_compatibility.h>
-# include <QtOpenGL/qopenglfunctions_4_0_core.h>
-# include <QtOpenGL/qopenglfunctions_4_1_compatibility.h>
-# include <QtOpenGL/qopenglfunctions_4_1_core.h>
-# include <QtOpenGL/qopenglfunctions_4_2_compatibility.h>
-# include <QtOpenGL/qopenglfunctions_4_2_core.h>
-# include <QtOpenGL/qopenglfunctions_4_3_compatibility.h>
-# include <QtOpenGL/qopenglfunctions_4_3_core.h>
-# include <QtOpenGL/qopenglfunctions_4_4_compatibility.h>
-# include <QtOpenGL/qopenglfunctions_4_4_core.h>
-# include <QtOpenGL/qopenglfunctions_4_5_compatibility.h>
-# include <QtOpenGL/qopenglfunctions_4_5_core.h>
-#endif
-#if QT_CONFIG(opengles2)
-# include <QtOpenGL/qopenglfunctions_es2.h>
-#endif
diff --git a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions.xml b/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions.xml
deleted file mode 100644
index f749d1d7c..000000000
--- a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions.xml
+++ /dev/null
@@ -1,404 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-/****************************************************************************
-**
-** Copyright (C) 2020 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
--->
-<typesystem package="PySide2.QtOpenGLFunctions">
- <load-typesystem name="QtOpenGL/typesystem_opengl.xml" generate="no"/>
- <load-typesystem name="templates/openglfunctions_common.xml" generate="no"/>
-
- <rejection class="^QOpenGL.*$" argument-type="^(const )?GLboolean ?\*$"/>
- <rejection class="^QOpenGL.*$" argument-type="^GLchar\*$"/>
- <rejection class="^QOpenGL.*$" argument-type="^(const )?GLchar ?\*(const)?\*$"/>
- <rejection class="^QOpenGL.*$" argument-type="^char\*$"/>
- <rejection class="^QOpenGL.*$" argument-type="^(const )?char ?\*\*$"/>
- <rejection class="^QOpenGL.*$" argument-type="GLintptr"/>
- <rejection class="^QOpenGL.*$" argument-type="GLsizeiptr"/>
- <rejection class="^QOpenGL.*$" argument-type="GLsync"/>
- <rejection class="^QOpenGL.*$" argument-type="^GLubyte( const)?\*$"/>
- <rejection class="^QOpenGL.*$" argument-type="^(const )?QMatrix.x. ?\*$"/>
- <rejection class="^QOpenGL.*$" argument-type="qopengl_GLintptr"/>
- <rejection class="^QOpenGL.*$" argument-type="qopengl_GLsizeiptr"/>
- <rejection class="^QOpenGL.*$" argument-type="QOpenGLTextureHelper*"/>
- <rejection class="^QOpenGL.*$" argument-type="^(const )?QVector.D ?\*$"/>
- <rejection class="^QOpenGL.*$" argument-type="^(const )?void ?\*\*$"/>
- <rejection class="^QOpenGLFunctions.*$" function-name="^glGet(Buffer|VertexAttrib)?Pointer.*$"/>
- <rejection class="^QOpenGLFunctions.*$" function-name="^glMultiDrawElements.*$"/>
- <!-- Reject any non-const array of the version functions -->
- <rejection class="^QOpenGLFunctions_\d_\d.*$" argument-type="^GL\w+ ?\*$"/>
-
- <object-type name="QOpenGLFunctions_1_0" since="5.1">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_0_compat;
- </object-type>
- <object-type name="QOpenGLFunctions_1_1" since="5.1">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_0_compat;
- &openglfunctions_modifications1_1;
- &openglfunctions_modifications1_1_compat;
- </object-type>
- <object-type name="QOpenGLFunctions_1_2" since="5.1">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_0_compat;
- &openglfunctions_modifications1_1;
- &openglfunctions_modifications1_1_compat;
- &openglfunctions_modifications1_2_compat;
- </object-type>
- <object-type name="QOpenGLFunctions_1_3" since="5.1">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_0_compat;
- &openglfunctions_modifications1_1;
- &openglfunctions_modifications1_1_compat;
- &openglfunctions_modifications1_2_compat;
- &openglfunctions_modifications1_3_compat;
- </object-type>
- <object-type name="QOpenGLFunctions_1_4" since="5.1">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_0_compat;
- &openglfunctions_modifications1_1;
- &openglfunctions_modifications1_1_compat;
- &openglfunctions_modifications1_2_compat;
- &openglfunctions_modifications1_3_compat;
- &openglfunctions_modifications1_4;
- &openglfunctions_modifications1_4_compat;
- </object-type>
- <object-type name="QOpenGLFunctions_1_5" since="5.1">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_0_compat;
- &openglfunctions_modifications1_1;
- &openglfunctions_modifications1_1_compat;
- &openglfunctions_modifications1_2_compat;
- &openglfunctions_modifications1_3_compat;
- &openglfunctions_modifications1_4;
- &openglfunctions_modifications1_4_compat;
- </object-type>
- <object-type name="QOpenGLFunctions_2_0" since="5.1">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_0_compat;
- &openglfunctions_modifications1_1;
- &openglfunctions_modifications1_1_compat;
- &openglfunctions_modifications1_2_compat;
- &openglfunctions_modifications1_3_compat;
- &openglfunctions_modifications1_4;
- &openglfunctions_modifications1_4_compat;
- &openglfunctions_modifications2_0;
- &openglfunctions_modifications2_0_compat;
- </object-type>
- <object-type name="QOpenGLFunctions_2_1" since="5.1">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_0_compat;
- &openglfunctions_modifications1_1;
- &openglfunctions_modifications1_1_compat;
- &openglfunctions_modifications1_2_compat;
- &openglfunctions_modifications1_3_compat;
- &openglfunctions_modifications1_4;
- &openglfunctions_modifications1_4_compat;
- &openglfunctions_modifications2_0;
- &openglfunctions_modifications2_0_compat;
- &openglfunctions_modifications2_1;
- </object-type>
- <object-type name="QOpenGLFunctions_3_0" since="5.1">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_0_compat;
- &openglfunctions_modifications1_1;
- &openglfunctions_modifications1_1_compat;
- &openglfunctions_modifications1_2_compat;
- &openglfunctions_modifications1_3_compat;
- &openglfunctions_modifications1_4;
- &openglfunctions_modifications1_4_compat;
- &openglfunctions_modifications2_0;
- &openglfunctions_modifications2_0_compat;
- &openglfunctions_modifications2_1;
- &openglfunctions_modifications3_0;
- </object-type>
- <object-type name="QOpenGLFunctions_3_1" since="5.1">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_1;
- &openglfunctions_modifications1_4;
- &openglfunctions_modifications2_0;
- &openglfunctions_modifications2_1;
- &openglfunctions_modifications3_0;
- </object-type>
- <object-type name="QOpenGLFunctions_3_2_Compatibility" since="5.1">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_0_compat;
- &openglfunctions_modifications1_1;
- &openglfunctions_modifications1_1_compat;
- &openglfunctions_modifications1_2_compat;
- &openglfunctions_modifications1_3_compat;
- &openglfunctions_modifications1_4;
- &openglfunctions_modifications1_4_compat;
- &openglfunctions_modifications2_0;
- &openglfunctions_modifications2_0_compat;
- &openglfunctions_modifications2_1;
- &openglfunctions_modifications3_0;
- </object-type>
- <object-type name="QOpenGLFunctions_3_2_Core" since="5.1">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_1;
- &openglfunctions_modifications1_4;
- &openglfunctions_modifications2_0;
- &openglfunctions_modifications2_1;
- &openglfunctions_modifications3_0;
- </object-type>
- <object-type name="QOpenGLFunctions_3_3_Compatibility" since="5.1">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_0_compat;
- &openglfunctions_modifications1_1;
- &openglfunctions_modifications1_1_compat;
- &openglfunctions_modifications1_2_compat;
- &openglfunctions_modifications1_3_compat;
- &openglfunctions_modifications1_4;
- &openglfunctions_modifications1_4_compat;
- &openglfunctions_modifications2_0;
- &openglfunctions_modifications2_0_compat;
- &openglfunctions_modifications2_1;
- &openglfunctions_modifications3_0;
- &openglfunctions_modifications3_3;
- &openglfunctions_modifications3_3a;
- </object-type>
- <object-type name="QOpenGLFunctions_3_3_Core" since="5.1">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_1;
- &openglfunctions_modifications1_4;
- &openglfunctions_modifications2_0;
- &openglfunctions_modifications2_1;
- &openglfunctions_modifications3_0;
- &openglfunctions_modifications3_3;
- </object-type>
- <object-type name="QOpenGLFunctions_4_0_Compatibility" since="5.1">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_0_compat;
- &openglfunctions_modifications1_1;
- &openglfunctions_modifications1_1_compat;
- &openglfunctions_modifications1_2_compat;
- &openglfunctions_modifications1_3_compat;
- &openglfunctions_modifications1_4;
- &openglfunctions_modifications1_4_compat;
- &openglfunctions_modifications2_0;
- &openglfunctions_modifications2_0_compat;
- &openglfunctions_modifications2_1;
- &openglfunctions_modifications3_0;
- &openglfunctions_modifications3_3;
- &openglfunctions_modifications3_3a;
- &openglfunctions_modifications4_0;
- </object-type>
- <object-type name="QOpenGLFunctions_4_0_Core" since="5.1">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_1;
- &openglfunctions_modifications1_4;
- &openglfunctions_modifications2_0;
- &openglfunctions_modifications2_1;
- &openglfunctions_modifications3_0;
- &openglfunctions_modifications3_3;
- &openglfunctions_modifications4_0;
- </object-type>
- <object-type name="QOpenGLFunctions_4_1_Compatibility" since="5.1">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_0_compat;
- &openglfunctions_modifications1_1;
- &openglfunctions_modifications1_1_compat;
- &openglfunctions_modifications1_2_compat;
- &openglfunctions_modifications1_3_compat;
- &openglfunctions_modifications1_4;
- &openglfunctions_modifications1_4_compat;
- &openglfunctions_modifications2_0;
- &openglfunctions_modifications2_0_compat;
- &openglfunctions_modifications2_1;
- &openglfunctions_modifications3_0;
- &openglfunctions_modifications3_3;
- &openglfunctions_modifications3_3a;
- &openglfunctions_modifications4_1;
- &openglfunctions_modifications4_0;
- </object-type>
- <object-type name="QOpenGLFunctions_4_1_Core" since="5.1">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_1;
- &openglfunctions_modifications1_4;
- &openglfunctions_modifications2_0;
- &openglfunctions_modifications2_1;
- &openglfunctions_modifications3_0;
- &openglfunctions_modifications3_3;
- &openglfunctions_modifications4_0;
- &openglfunctions_modifications4_1;
- &openglfunctions_modifications_va;
- </object-type>
- <object-type name="QOpenGLFunctions_4_2_Compatibility" since="5.1">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_0_compat;
- &openglfunctions_modifications1_1;
- &openglfunctions_modifications1_1_compat;
- &openglfunctions_modifications1_2_compat;
- &openglfunctions_modifications1_3_compat;
- &openglfunctions_modifications1_4;
- &openglfunctions_modifications1_4_compat;
- &openglfunctions_modifications2_0;
- &openglfunctions_modifications2_0_compat;
- &openglfunctions_modifications2_1;
- &openglfunctions_modifications3_0;
- &openglfunctions_modifications3_3;
- &openglfunctions_modifications3_3a;
- &openglfunctions_modifications4_0;
- &openglfunctions_modifications4_1;
- </object-type>
- <object-type name="QOpenGLFunctions_4_2_Core" since="5.1">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_1;
- &openglfunctions_modifications1_4;
- &openglfunctions_modifications2_0;
- &openglfunctions_modifications2_1;
- &openglfunctions_modifications3_0;
- &openglfunctions_modifications3_3;
- &openglfunctions_modifications4_0;
- &openglfunctions_modifications4_1;
- &openglfunctions_modifications_va;
- </object-type>
- <object-type name="QOpenGLFunctions_4_3_Compatibility" since="5.1">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_0_compat;
- &openglfunctions_modifications1_1;
- &openglfunctions_modifications1_1_compat;
- &openglfunctions_modifications1_2_compat;
- &openglfunctions_modifications1_3_compat;
- &openglfunctions_modifications1_4;
- &openglfunctions_modifications1_4_compat;
- &openglfunctions_modifications2_0;
- &openglfunctions_modifications2_0_compat;
- &openglfunctions_modifications2_1;
- &openglfunctions_modifications3_0;
- &openglfunctions_modifications3_3;
- &openglfunctions_modifications3_3a;
- &openglfunctions_modifications4_0;
- &openglfunctions_modifications4_1;
- &openglfunctions_modifications4_3;
- </object-type>
- <object-type name="QOpenGLFunctions_4_3_Core" since="5.1">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_1;
- &openglfunctions_modifications1_4;
- &openglfunctions_modifications2_0;
- &openglfunctions_modifications2_1;
- &openglfunctions_modifications3_0;
- &openglfunctions_modifications3_3;
- &openglfunctions_modifications4_0;
- &openglfunctions_modifications4_3;
- &openglfunctions_modifications4_1;
- &openglfunctions_modifications_va;
- </object-type>
- <object-type name="QOpenGLFunctions_4_4_Compatibility" since="5.5">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_0_compat;
- &openglfunctions_modifications1_1;
- &openglfunctions_modifications1_1_compat;
- &openglfunctions_modifications1_2_compat;
- &openglfunctions_modifications1_3_compat;
- &openglfunctions_modifications1_4;
- &openglfunctions_modifications1_4_compat;
- &openglfunctions_modifications2_0;
- &openglfunctions_modifications2_0_compat;
- &openglfunctions_modifications2_1;
- &openglfunctions_modifications3_0;
- &openglfunctions_modifications3_3;
- &openglfunctions_modifications3_3a;
- &openglfunctions_modifications4_0;
- &openglfunctions_modifications4_1;
- &openglfunctions_modifications4_3;
- &openglfunctions_modifications4_4;
- &openglfunctions_modifications4_4_core;
- </object-type>
- <object-type name="QOpenGLFunctions_4_4_Core" since="5.5">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_1;
- &openglfunctions_modifications1_4;
- &openglfunctions_modifications2_0;
- &openglfunctions_modifications2_1;
- &openglfunctions_modifications3_0;
- &openglfunctions_modifications3_3;
- &openglfunctions_modifications4_0;
- &openglfunctions_modifications4_1;
- &openglfunctions_modifications_va;
- &openglfunctions_modifications4_3;
- &openglfunctions_modifications4_4;
- &openglfunctions_modifications4_4_core;
- </object-type>
- <object-type name="QOpenGLFunctions_4_5_Compatibility" since="5.5">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_0_compat;
- &openglfunctions_modifications1_1;
- &openglfunctions_modifications1_1_compat;
- &openglfunctions_modifications1_2_compat;
- &openglfunctions_modifications1_3_compat;
- &openglfunctions_modifications1_4;
- &openglfunctions_modifications1_4_compat;
- &openglfunctions_modifications2_0;
- &openglfunctions_modifications2_0_compat;
- &openglfunctions_modifications2_1;
- &openglfunctions_modifications3_0;
- &openglfunctions_modifications3_3;
- &openglfunctions_modifications3_3a;
- &openglfunctions_modifications4_0;
- &openglfunctions_modifications4_1;
- &openglfunctions_modifications4_3;
- &openglfunctions_modifications4_4;
- &openglfunctions_modifications4_4_core;
- &openglfunctions_modifications4_5;
- </object-type>
- <object-type name="QOpenGLFunctions_4_5_Core" since="5.5">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_1;
- &openglfunctions_modifications1_4;
- &openglfunctions_modifications2_0;
- &openglfunctions_modifications2_1;
- &openglfunctions_modifications3_0;
- &openglfunctions_modifications3_3;
- &openglfunctions_modifications4_0;
- &openglfunctions_modifications4_1;
- &openglfunctions_modifications4_3;
- &openglfunctions_modifications4_4;
- &openglfunctions_modifications4_4_core;
- &openglfunctions_modifications4_5;
- &openglfunctions_modifications_va;
- </object-type>
- <object-type name="QOpenGLFunctions_ES2" since="5.1">
- &openglfunctions_modifications1_0;
- &openglfunctions_modifications1_1;
- </object-type>
- <suppress-warning text="^There's no user provided way.*QOpenGLFunctions_\d_\d.*::glIndex.*$"/>
-
-</typesystem>
diff --git a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_0.xml b/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_0.xml
deleted file mode 100644
index 5652ad6b6..000000000
--- a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_0.xml
+++ /dev/null
@@ -1,51 +0,0 @@
-<!--
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
--->
-<modify-function signature="^glGetStringi?\(.*$">
- <modify-argument index="return">
- <replace-type modified-type="QString"/>
- </modify-argument>
- <inject-code class="target" position="beginning">
- <insert-template name="glGetString_return_QString"/>
- </inject-code>
-</modify-function>
-<modify-function signature="^glTexParameterI?u?[fi]v\(.*$">
- <modify-argument index="3"><array/></modify-argument>
-</modify-function>
diff --git a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_0_compat.xml b/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_0_compat.xml
deleted file mode 100644
index 5793048cd..000000000
--- a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_0_compat.xml
+++ /dev/null
@@ -1,103 +0,0 @@
-<!--
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
--->
-<modify-function signature="^glBitmap\(.*$" remove="all"/>
-<modify-function signature="^glColor[34][a-z]{1,2}v\(.*$">
- <modify-argument index="1"><array/></modify-argument>
-</modify-function>
-<modify-function signature="glClipPlane(unsigned int,const double *)">
- <modify-argument index="2"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glEvalCoord\d[a-z]{1,2}v\(.*$">
- <modify-argument index="1"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glFog[fi]v\(.*$">
- <modify-argument index="2"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glIndex[a-z]v\(.*$">
- <modify-argument index="1"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glLoadMatrix[df]\(.*$">
- <modify-argument index="1"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glLight[fi]v\(.*$">
- <modify-argument index="3"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glLightModel[fi]v\(.*$">
- <modify-argument index="2"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glMap1[df]\(.*$">
- <modify-argument index="6"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glMap2[df]\(.*$">
- <modify-argument index="10"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glMaterial[fi]v\(.*$">
- <modify-argument index="3"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glMultMatrix[df]\(.*$">
- <modify-argument index="1"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glNormal3.v\(.*$">
- <modify-argument index="1"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glPixelMap[a-z]{1,2}v\(.*$">
- <modify-argument index="3"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glPolygonStipple\(.*$" remove="all"/>
-<modify-function signature="^glRasterPos\d[a-z]v\(.*$">
- <modify-argument index="1"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glRect[dfis]v\(.*$">
- <modify-argument index="1"><array/></modify-argument>
- <modify-argument index="2"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glTexCoord\d[dfis]v\(.*$">
- <modify-argument index="1"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glTexEnv[fi]v\(.*$">
- <modify-argument index="3"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glTexGen[dfi]v\(.*$">
- <modify-argument index="3"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glVertex\d[dfis]v\(.*$">
- <modify-argument index="1"><array/></modify-argument>
-</modify-function>
diff --git a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_1.xml b/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_1.xml
deleted file mode 100644
index 9383fb83f..000000000
--- a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_1.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<!--
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
--->
-<!-- Except glGenLists/glDeleteLists -->
-<modify-function signature="^glDelete[A-KM-Z].*s\(.*$">
- <modify-argument index="2"><array/></modify-argument>
-</modify-function>
diff --git a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_1_compat.xml b/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_1_compat.xml
deleted file mode 100644
index 3f8075b30..000000000
--- a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_1_compat.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-<!--
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
--->
-<modify-function signature="^glPrioritizeTextures\(.*$">
- <modify-argument index="2"><array/></modify-argument>
- <modify-argument index="3"><array/></modify-argument>
-</modify-function>
diff --git a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_2_compat.xml b/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_2_compat.xml
deleted file mode 100644
index c13b09b5b..000000000
--- a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_2_compat.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-<!--
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
--->
-<modify-function signature="^glColorTableParameter[fi]v\(.*$">
- <modify-argument index="3"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glConvolutionParameter[fi]v\(.*$">
- <modify-argument index="3"><array/></modify-argument>
-</modify-function>
diff --git a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_3_compat.xml b/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_3_compat.xml
deleted file mode 100644
index e35f3b334..000000000
--- a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_3_compat.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-<!--
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
--->
-<modify-function signature="^gl(Load|Mult)TransposeMatrix[df]\(.*$">
- <modify-argument index="1"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glMultiTexCoord\d[a-z]v\(.*$">
- <modify-argument index="2"><array/></modify-argument>
-</modify-function>
diff --git a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_4.xml b/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_4.xml
deleted file mode 100644
index 1102daea8..000000000
--- a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_4.xml
+++ /dev/null
@@ -1,47 +0,0 @@
-<!--
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
--->
-<modify-function signature="^glMultiDrawArrays\(.*$">
- <modify-argument index="2"><array/></modify-argument>
- <modify-argument index="3"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glPointParameter[fi]v\(.*$">
- <modify-argument index="2"><array/></modify-argument>
-</modify-function>
diff --git a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_4_compat.xml b/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_4_compat.xml
deleted file mode 100644
index 4cb75d418..000000000
--- a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications1_4_compat.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<!--
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
--->
-<modify-function signature="^glFogCoord[df]v\(.*$">
- <modify-argument index="1"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glSecondaryColor3u?[bdfis]v\(.*$">
- <modify-argument index="1"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glWindowPos[23][dfis]v\(.*$">
- <modify-argument index="1"><array/></modify-argument>
-</modify-function>
diff --git a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications2_0.xml b/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications2_0.xml
deleted file mode 100644
index 28a424e1a..000000000
--- a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications2_0.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<!--
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
--->
-<modify-function signature="^glDrawBuffers\(.*$">
- <modify-argument index="2"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glUniformMatrix\d[df]v\(.*$">
- <modify-argument index="4"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glUniform\d?.v\(.*$">
- <modify-argument index="3"><array/></modify-argument>
-</modify-function>
diff --git a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications2_0_compat.xml b/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications2_0_compat.xml
deleted file mode 100644
index 49cbd5c05..000000000
--- a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications2_0_compat.xml
+++ /dev/null
@@ -1 +0,0 @@
-&typesystem_openglfunctions_modifications_va.xml;
diff --git a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications2_1.xml b/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications2_1.xml
deleted file mode 100644
index af515ed8c..000000000
--- a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications2_1.xml
+++ /dev/null
@@ -1,43 +0,0 @@
-<!--
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
--->
-<modify-function signature="^glUniformMatrix\dx\d[a-z]v\(.*$">
- <modify-argument index="4"><array/></modify-argument>
-</modify-function>
diff --git a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications3_0.xml b/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications3_0.xml
deleted file mode 100644
index 8377e440b..000000000
--- a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications3_0.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-<!--
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
--->
-<modify-function signature="^glClearBufferu?[fi]v\(.*$">
- <modify-argument index="3"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glUniform\duiv\(.*$">
- <modify-argument index="3"><array/></modify-argument>
-</modify-function>
diff --git a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications3_3.xml b/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications3_3.xml
deleted file mode 100644
index 7f4717170..000000000
--- a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications3_3.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-<!--
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
--->
-<modify-function signature="^glSamplerParameterI?u?[dfi]v\(.*$">
- <modify-argument index="3"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glVertexAttribP\duiv\(.*$">
- <modify-argument index="4"><array/></modify-argument>
-</modify-function>
diff --git a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications3_3a.xml b/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications3_3a.xml
deleted file mode 100644
index 4bf2bc8f5..000000000
--- a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications3_3a.xml
+++ /dev/null
@@ -1,57 +0,0 @@
-<!--
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-Present from 3.3..4.5 except 4.4 Core/4.5 Core
--->
-<modify-function signature="^glColorP[34]uiv\(.*$">
- <modify-argument index="2"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glMultiTexCoordP\duiv\(.*$">
- <modify-argument index="3"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^gl(Normal|SecondaryColor)P3uiv\(.*$">
- <modify-argument index="2"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glTexCoordP\duiv\(.*$">
- <modify-argument index="2"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glVertexP\duiv\(.*$">
- <modify-argument index="2"><array/></modify-argument>
-</modify-function>
diff --git a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_0.xml b/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_0.xml
deleted file mode 100644
index cf2e47a5c..000000000
--- a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_0.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-<!--
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
--->
-<modify-function signature="^glPatchParameterfv\(.*$">
- <modify-argument index="2"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glUniformSubroutinesuiv\(.*$">
- <modify-argument index="3"><array/></modify-argument>
-</modify-function>
diff --git a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_1.xml b/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_1.xml
deleted file mode 100644
index bc92ce80d..000000000
--- a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_1.xml
+++ /dev/null
@@ -1,58 +0,0 @@
-<!--
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
--->
-<modify-function signature="^gl(DepthRange|Scissor|Viewport)Arrayv\(.*$">
- <modify-argument index="3"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glProgramUniform\du?[dfi]v\(.*$">
- <modify-argument index="4"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glProgramUniformMatrix\d[df]v\(.*$">
- <modify-argument index="5"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glProgramUniformMatrix\dx\d[df]v\(.*$">
- <modify-argument index="5"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^gl(Scissor|Viewport)Indexedf?v\(.*$">
- <modify-argument index="2"><array/></modify-argument>
-</modify-function>
-<modify-function signature="glShaderBinary(int,const unsigned int*,unsigned int,const void *,int)">
- <modify-argument index="2"><array/></modify-argument>
-</modify-function>
diff --git a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_3.xml b/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_3.xml
deleted file mode 100644
index b3c2b618d..000000000
--- a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_3.xml
+++ /dev/null
@@ -1,43 +0,0 @@
-<!--
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
--->
-<modify-function signature="^glInvalidate(Sub)?Framebuffer\(.*$">
- <modify-argument index="3"><array/></modify-argument>
-</modify-function>
diff --git a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_4.xml b/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_4.xml
deleted file mode 100644
index 6b59f174a..000000000
--- a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_4.xml
+++ /dev/null
@@ -1,56 +0,0 @@
-<!--
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
--->
-<modify-function signature="^glBindBuffersBase\(.*$">
- <modify-argument index="4"><array/></modify-argument>
-</modify-function>
-<modify-function signature="glBindBuffersRange(unsigned int, unsigned int,int,const unsigned int *,const long *,const long*)">
- <modify-argument index="4"><array/></modify-argument>
- <modify-argument index="5"><array/></modify-argument>
- <modify-argument index="6"><array/></modify-argument>
-</modify-function>
-<modify-function signature="glBindVertexBuffers(unsigned int,int,const unsigned int *,const long *,const int *)">
- <modify-argument index="3"><array/></modify-argument>
- <modify-argument index="4"><array/></modify-argument>
- <modify-argument index="5"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glBind(ImageTextures|Samplers|Textures)\(.*$">
- <modify-argument index="3"><array/></modify-argument>
-</modify-function>
diff --git a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_4_core.xml b/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_4_core.xml
deleted file mode 100644
index c747997aa..000000000
--- a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_4_core.xml
+++ /dev/null
@@ -1,43 +0,0 @@
-<!--
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
--->
-<modify-function signature="^glDebugMessageControl\(.*$">
- <modify-argument index="5"><array/></modify-argument>
-</modify-function>
diff --git a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_5.xml b/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_5.xml
deleted file mode 100644
index 2ea0a458d..000000000
--- a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_5.xml
+++ /dev/null
@@ -1,57 +0,0 @@
-<!--
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
--->
-<modify-function signature="^glClearNamedFramebufferu?[fi]v\(.*$">
- <modify-argument index="4"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glInvalidateNamedFramebuffer(Sub)?Data\(.*$">
- <modify-argument index="3"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glNamedFramebufferDrawBuffers\(.*$">
- <modify-argument index="3"><array/></modify-argument>
-</modify-function>
-<modify-function signature="^glTextureParameterI?u?[fi]v\(.*$">
- <modify-argument index="3"><array/></modify-argument>
-</modify-function>
-<modify-function signature="glVertexArrayVertexBuffers(unsigned int, unsigned int,int,const unsigned int *,const long *,const int *)">
- <modify-argument index="4"><array/></modify-argument>
- <modify-argument index="5"><array/></modify-argument>
- <modify-argument index="6"><array/></modify-argument>
-</modify-function>
diff --git a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_5_core.xml b/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_5_core.xml
deleted file mode 100644
index 5cd5161f8..000000000
--- a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications4_5_core.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-<!--
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
- Remove me!
--->
diff --git a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications_va.xml b/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications_va.xml
deleted file mode 100644
index ae4d49ab1..000000000
--- a/sources/pyside2/PySide2/QtOpenGLFunctions/typesystem_openglfunctions_modifications_va.xml
+++ /dev/null
@@ -1,43 +0,0 @@
-<!--
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
--->
-<modify-function signature="^glVertexAttrib[IL]?\dN?u?[bdfis]v\(.*$">
- <modify-argument index="2"><array/></modify-argument>
-</modify-function>