xref: /aosp_15_r20/external/deqp/scripts/opengl/gen_all.py (revision 35238bce31c2a825756842865a792f8cf7f89930)
1# -*- coding: utf-8 -*-
2
3#-------------------------------------------------------------------------
4# drawElements Quality Program utilities
5# --------------------------------------
6#
7# Copyright 2015 The Android Open Source Project
8#
9# Licensed under the Apache License, Version 2.0 (the "License");
10# you may not use this file except in compliance with the License.
11# You may obtain a copy of the License at
12#
13#      http://www.apache.org/licenses/LICENSE-2.0
14#
15# Unless required by applicable law or agreed to in writing, software
16# distributed under the License is distributed on an "AS IS" BASIS,
17# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18# See the License for the specific language governing permissions and
19# limitations under the License.
20#
21#-------------------------------------------------------------------------
22
23from src_util import getGLRegistry, getHybridInterface
24from gen_call_log_wrapper import genCallLogWrapper
25from gen_enums import genEnums
26from gen_versions import genVersions
27from gen_es_direct_init import genESDirectInit
28from gen_es_static_library import genESStaticLibrary
29from gen_ext_init import genExtInit
30from gen_func_init import genFuncInit
31from gen_func_ptrs import genFunctionPointers
32from gen_null_render_context import genNullRenderContext
33from gen_str_util import genStrUtil
34from gen_wrapper import genWrapper
35from gen_query_util import genQueryUtil
36import logging
37import sys
38
39def genAll ():
40    # https://docs.python.org/3/howto/logging.html#what-happens-if-no-configuration-is-provided
41    # To obtain the pre-3.2 behaviour, logging.lastResort can be set to None.
42    if (sys.version_info >= (3, 2)):
43        logging.lastResort=None
44
45    registry = getGLRegistry()
46    iface = getHybridInterface()
47    genCallLogWrapper(iface)
48    genEnums(iface)
49    genVersions(iface)
50    genESDirectInit(registry)
51    genESStaticLibrary(registry)
52    genExtInit(registry, iface)
53    genFuncInit(registry)
54    genFunctionPointers(iface)
55    genNullRenderContext(iface)
56    genStrUtil(iface)
57    genWrapper(iface)
58    genQueryUtil(iface)
59
60if __name__ == "__main__":
61    genAll()
62