Lines Matching full:vendor
52 static __eglMustCastToProperFunctionPointerType FetchVendorFunc(__EGLvendorInfo *vendor, in FetchVendorFunc() argument
57 if (vendor != NULL) { in FetchVendorFunc()
58 func = exports->fetchDispatchEntry(vendor, __EGL_DISPATCH_FUNC_INDICES[index]); in FetchVendorFunc()
62 // Since we have no vendor, the follow-up eglGetError() call will in FetchVendorFunc()
64 if (vendor == NULL) { in FetchVendorFunc()
72 if (!exports->setLastVendor(vendor)) { in FetchVendorFunc()
84 __EGLvendorInfo *vendor; in __eglDispatchFetchByCurrent() local
90 vendor = exports->getCurrentVendor(); in __eglDispatchFetchByCurrent()
91 return FetchVendorFunc(vendor, index, EGL_SUCCESS); in __eglDispatchFetchByCurrent()
96 __EGLvendorInfo *vendor; in __eglDispatchFetchByDisplay() local
99 vendor = exports->getVendorFromDisplay(dpy); in __eglDispatchFetchByDisplay()
100 return FetchVendorFunc(vendor, index, EGL_BAD_DISPLAY); in __eglDispatchFetchByDisplay()
105 __EGLvendorInfo *vendor; in __eglDispatchFetchByDevice() local
108 vendor = exports->getVendorFromDevice(dev); in __eglDispatchFetchByDevice()
109 return FetchVendorFunc(vendor, index, EGL_BAD_DEVICE_EXT); in __eglDispatchFetchByDevice()