Fix warning introduced in 2c9e3ec9 am: 521361d83d am: 5f34117776 am: eba2559865 am...
[platform/upstream/VK-GL-CTS.git] / scripts / opengl / gen_all.py
index 3508542..c012ba0 100644 (file)
@@ -1,5 +1,25 @@
 # -*- 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 getGLRegistry, getHybridInterface
 from gen_call_log_wrapper import genCallLogWrapper
 from gen_enums import genEnums
@@ -12,6 +32,7 @@ from gen_func_ptrs import genFunctionPointers
 from gen_null_render_context import genNullRenderContext
 from gen_str_util import genStrUtil
 from gen_wrapper import genWrapper
+from gen_query_util import genQueryUtil
 
 def genAll ():
        registry = getGLRegistry()
@@ -27,6 +48,7 @@ def genAll ():
        genNullRenderContext(iface)
        genStrUtil(iface)
        genWrapper(iface)
+       genQueryUtil(iface)
 
 if __name__ == "__main__":
        genAll()