/external/deqp/scripts/opengl/ |
src_util.py | 29 import khr_util.format namespace 30 import khr_util.registry namespace 31 import khr_util.registry_cache namespace 38 GL_SOURCE = khr_util.registry_cache.RegistrySource( 73 return khr_util.registry_cache.getRegistry(GL_SOURCE) 87 spec = khr_util.registry.InterfaceSpec() 107 return khr_util.registry.createInterface(registry, spec, 'gles2') 110 spec = khr_util.registry.spec(registry, api, version, profile, **kwargs) 115 return khr_util.registry.createInterface(registry, spec, api) 151 INL_HEADER = khr_util.format.genInlHeader("Khronos GL API description (gl.xml)", GL_SOURCE.getRevision() [all...] |
gen_query_util.py | 24 from khr_util.gen_str_util import genSetEnumUtilImpls, genQueryEnumUtilImpls
|
gen_str_util.py | 31 from khr_util.gen_str_util import addValuePrefix, genStrUtilProtos, genStrUtilImpls
|
/external/deqp/scripts/egl/ |
common.py | 32 import khr_util.format namespace 33 import khr_util.registry namespace 34 import khr_util.registry_cache namespace 40 EGL_SOURCE = khr_util.registry_cache.RegistrySource( 73 return khr_util.registry_cache.getRegistry(EGL_SOURCE) 76 spec = khr_util.registry.spec(registry, api, version, profile, **kwargs) 77 return khr_util.registry.createInterface(registry, spec, api) 92 lines = khr_util.format.indentLines(lines) 111 INL_HEADER = khr_util.format.genInlHeader("Khronos EGL API description (egl.xml)", EGL_SOURCE.getRevision()) 114 khr_util.format.writeInlFile(filename, INL_HEADER, source [all...] |
library.py | 24 from khr_util.format import indentLines, commandParams, commandArgs 25 import khr_util.registry namespace 61 spec = khr_util.registry.InterfaceSpec() 64 if not khr_util.registry.getExtensionName(extension) in extensions: 67 if not khr_util.registry.extensionSupports(extension, api): 72 return khr_util.registry.createInterface(registry, spec, api)
|
proc_address_tests.py | 30 import khr_util.registry namespace 31 from khr_util.format import indentLines 76 if not khr_util.registry.extensionSupports(extension, api): 79 spec = khr_util.registry.InterfaceSpec() 81 iface = khr_util.registry.createInterface(registry, spec, api) 86 exts.append((khr_util.registry.getExtensionName(extension), 103 spec = khr_util.registry.InterfaceSpec() 110 return khr_util.registry.createInterface(registry, spec, api)
|
str_util.py | 27 from khr_util.format import indentLines 28 from khr_util.gen_str_util import addValuePrefix, genStrUtilProtos, genStrUtilImpls
|
enums.py | 27 from khr_util.format import indentLines, normalizeConstant
|
func_ptrs.py | 24 from khr_util.format import commandParams
|
call_log_wrapper.py | 27 from khr_util.format import indentLines
|
/external/deqp/external/vulkancts/ |
gen_framework.py | 30 from khr_util.format import indentLines, writeInlFile
|