Searched refs:imports (Results 1 - 25 of 213) sorted by relevance

123456789

/xsrc/external/mit/MesaLib.old/dist/src/glx/
H A Dglxglvnd.c58 __GLXvendorInfo *vendor, __GLXapiImports *imports)
72 imports->isScreenSupported = __glXGLVNDIsScreenSupported;
73 imports->getProcAddress = __glXGLVNDGetProcAddress;
74 imports->getDispatchAddress = __glXGLVNDGetDispatchAddress;
75 imports->setDispatchIndex = __glXGLVNDSetDispatchIndex;
76 imports->notifyError = NULL;
77 imports->isPatchSupported = NULL;
78 imports->initiatePatch = NULL;
57 __glx_Main(uint32_t version,const __GLXapiExports * exports,__GLXvendorInfo * vendor,__GLXapiImports * imports) argument
/xsrc/external/mit/MesaLib/dist/src/glx/
H A Dglxglvnd.c58 __GLXvendorInfo *vendor, __GLXapiImports *imports)
72 imports->isScreenSupported = __glXGLVNDIsScreenSupported;
73 imports->getProcAddress = __glXGLVNDGetProcAddress;
74 imports->getDispatchAddress = __glXGLVNDGetDispatchAddress;
75 imports->setDispatchIndex = __glXGLVNDSetDispatchIndex;
76 imports->notifyError = NULL;
77 imports->isPatchSupported = NULL;
78 imports->initiatePatch = NULL;
57 __glx_Main(uint32_t version,const __GLXapiExports * exports,__GLXvendorInfo * vendor,__GLXapiImports * imports) argument
/xsrc/external/mit/MesaLib.old/dist/src/egl/main/
H A Deglglvnd.c64 __EGLvendorInfo *vendor, __EGLapiImports *imports)
73 imports->getPlatformDisplay = __eglGLVNDGetPlatformDisplay;
74 imports->getSupportsAPI = _eglIsApiValid;
75 imports->getVendorString = __eglGLVNDGetVendorString;
76 imports->getProcAddress = __eglGLVNDGetProcAddress;
77 imports->getDispatchAddress = __eglDispatchFindDispatchFunction;
78 imports->setDispatchIndex = __eglSetDispatchIndex;
63 __egl_Main(uint32_t version,const __EGLapiExports * exports,__EGLvendorInfo * vendor,__EGLapiImports * imports) argument
/xsrc/external/mit/MesaLib/dist/src/egl/main/
H A Deglglvnd.c84 __EGLvendorInfo *vendor, __EGLapiImports *imports)
93 imports->getPlatformDisplay = __eglGLVNDGetPlatformDisplay;
94 imports->getSupportsAPI = _eglIsApiValid;
95 imports->getVendorString = __eglGLVNDGetVendorString;
96 imports->getProcAddress = __eglGLVNDGetProcAddress;
97 imports->getDispatchAddress = __eglDispatchFindDispatchFunction;
98 imports->setDispatchIndex = __eglSetDispatchIndex;
83 __egl_Main(uint32_t version,const __EGLapiExports * exports,__EGLvendorInfo * vendor,__EGLapiImports * imports) argument
/xsrc/external/mit/xorg-server/dist/glx/
H A Dvndservervendor.c34 GlxServerVendor *GlxCreateVendor(const GlxServerImports *imports) argument
38 if (imports == NULL) {
39 ErrorF("GLX: Vendor library did not provide an imports table\n");
43 if (imports->extensionCloseDown == NULL
44 || imports->handleRequest == NULL
45 || imports->getDispatchAddress == NULL
46 || imports->makeCurrent == NULL) {
56 memcpy(&vendor->glxvc, imports, sizeof(GlxServerImports));
H A Dvndservervendor.h59 GlxServerVendor *GlxCreateVendor(const GlxServerImports *imports);
H A Dglxext.c510 GlxServerImports *imports = NULL; local in function:xorgGlxInitGLVNDVendor
511 imports = glxServer.allocateServerImports();
513 if (imports != NULL) {
514 imports->extensionCloseDown = xorgGlxCloseExtension;
515 imports->handleRequest = xorgGlxHandleRequest;
516 imports->getDispatchAddress = xorgGlxGetDispatchAddress;
517 imports->makeCurrent = xorgGlxMakeCurrent;
518 glvnd_vendor = glxServer.createVendor(imports);
519 glxServer.freeServerImports(imports);
H A Dvndext.c301 GlxFreeServerImports(GlxServerImports *imports) argument
303 free(imports);
/xsrc/external/mit/xorg-server/dist/include/
H A Dglxvndabi.h126 void (* freeServerImports) (GlxServerImports *imports);
131 GlxServerVendor * (* createVendor) (const GlxServerImports *imports);
/xsrc/external/mit/MesaLib.old/dist/src/mesa/
H A DAndroid.libmesa_glsl_utils.mk46 main/imports.c \
71 main/imports.c \
H A DMakefile.sources137 main/imports.c \
138 main/imports.h \
/xsrc/external/mit/xcb-proto/dist/xcbgen/
H A Dstate.py86 self.imports = []
139 self.imports.append((name, namespace.header))
143 for (name_, header) in self.imports:
/xsrc/external/mit/MesaLib/dist/docs/relnotes/
H A D20.1.10.rst60 - glsl/xxd.py: fix imports
H A D20.2.1.rst84 - glsl/xxd.py: fix imports
H A D17.2.6.rst93 - radv: Free syncobj with multiple imports.
H A D10.6.0.rst213 imports.h:452:58: error: expected declaration specifiers or '...'
H A D20.1.0.rst1466 - replace malloc macros in imports.h with u_memory.h versions
1468 - replace imports memory functions with utils memory functions
1472 - remove final imports.h and imports.c bits
3102 - Move compiler.h and imports.h/c from src/mesa/main into src/util
/xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
H A Dnir_opt_copy_propagate.c29 #include <main/imports.h>
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/nir_to_spirv/
H A Dspirv_builder.c1531 size_t pos = b->imports.num_words;
1532 spirv_buffer_prepare(&b->imports, b->mem_ctx, 2);
1533 spirv_buffer_emit_word(&b->imports, SpvOpExtInstImport);
1534 spirv_buffer_emit_word(&b->imports, result);
1535 int len = spirv_buffer_emit_string(&b->imports, b->mem_ctx, name);
1536 b->imports.words[pos] |= (2 + len) << 16;
1547 b->imports.num_words +
1579 &b->imports,
H A Dspirv_builder.h48 struct spirv_buffer imports; member in struct:spirv_builder
/xsrc/external/mit/MesaLib/dist/docs/drivers/
H A Dvenus.rst167 renderer might need to import GBM BOs. The imports will fail unless the host
/xsrc/external/mit/libXfontcache/dist/
H A Dltmain.sh4698 /* DATA imports from DLLs on WIN32 can't be const, because
/xsrc/external/mit/libxkbui/dist/
H A Dltmain.sh4623 /* DATA imports from DLLs on WIN32 can't be const, because
/xsrc/external/mit/xf86-video-imstt/dist/
H A Dltmain.sh4623 /* DATA imports from DLLs on WIN32 can't be const, because
/xsrc/external/mit/xf86-video-nsc/dist/
H A Dltmain.sh4654 /* DATA imports from DLLs on WIN32 can't be const, because

Completed in 39 milliseconds

123456789