普通文本  |  54行  |  1.98 KB

# -*- coding: utf-8 -*-

#-------------------------------------------------------------------------
# drawElements Quality Program utilities
# --------------------------------------
#
# Copyright 2015 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
#-------------------------------------------------------------------------

from src_util import *

def genExtensions (registry, iface, api):
    for extName in EXTENSIONS:
        extIface = getInterface(registry, api, version=False, profile='core', extensionNames=[extName])
        if not extIface.commands:
            continue

        yield ""
        yield "if (de::contains(extSet, \"%s\"))" % extName
        yield "{"

        def genInit (command):
            coreName = getCoreName(command.name)
            ifaceName = coreName if coreName in iface.commands else command.name
            return "gl->%s\t= (%s)\tloader->get(\"%s\");" % (
                getFunctionMemberName(ifaceName),
                getFunctionTypeName(ifaceName),
                command.name)

        for line in indentLines(genInit(command) for command in extIface.commands):
            yield "\t" + line

        yield "}"

def genExtInit (registry, iface):
    writeInlFile(os.path.join(OPENGL_INC_DIR, "glwInitExtES.inl"), genExtensions(registry, iface, 'gles2'))
    writeInlFile(os.path.join(OPENGL_INC_DIR, "glwInitExtGL.inl"), genExtensions(registry, iface, 'gl'))

if __name__ == '__main__':
    genExtInit(getGLRegistry(), getHybridInterface())