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