mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 07:28:11 +02:00
egl: drop EGL driver name
This is a revert of Marek's2cb9ab53ddrevert. It was needed to revert the previous commit, and didn't have any issue itself. -- The "DRI2" name was reported as confusing when printing EGL infos (one user reported thinking DRI3 was not working on his X server), and the only alternative is Haiku, which can only be used on a Haiku machine. The name therefore doesn't add any information that the user wouldn't know already, so let's just drop it. Suggested-by: Emil Velikov <emil.l.velikov@gmail.com> Related-to:b174a1ae72("egl: Simplify the "driver" interface") Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com> Reviewed-by: Kai Wasserbäch <kai@dev.carbon-project.org> Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
This commit is contained in:
parent
cb0980e69a
commit
a96749b13c
5 changed files with 1 additions and 10 deletions
|
|
@ -3309,6 +3309,4 @@ _eglInitDriver(_EGLDriver *dri2_drv)
|
|||
dri2_drv->API.GLInteropExportObject = dri2_interop_export_object;
|
||||
dri2_drv->API.DupNativeFenceFDANDROID = dri2_dup_native_fence_fd;
|
||||
dri2_drv->API.SetBlobCacheFuncsANDROID = dri2_set_blob_cache_funcs;
|
||||
|
||||
dri2_drv->Name = "DRI2";
|
||||
}
|
||||
|
|
|
|||
|
|
@ -325,7 +325,5 @@ _eglInitDriver(_EGLDriver *driver)
|
|||
|
||||
driver->API.SwapBuffers = haiku_swap_buffers;
|
||||
|
||||
driver->Name = "Haiku";
|
||||
|
||||
TRACE("API Calls defined\n");
|
||||
}
|
||||
|
|
|
|||
|
|
@ -634,8 +634,7 @@ eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor)
|
|||
_eglCreateExtensionsString(disp);
|
||||
_eglCreateAPIsString(disp);
|
||||
snprintf(disp->VersionString, sizeof(disp->VersionString),
|
||||
"%d.%d (%s)", disp->Version / 10, disp->Version % 10,
|
||||
disp->Driver->Name);
|
||||
"%d.%d", disp->Version / 10, disp->Version % 10);
|
||||
}
|
||||
|
||||
/* Update applications version of major and minor if not NULL */
|
||||
|
|
|
|||
|
|
@ -99,8 +99,6 @@ _eglMatchDriver(_EGLDisplay *dpy)
|
|||
}
|
||||
|
||||
if (best_drv) {
|
||||
_eglLog(_EGL_DEBUG, "the best driver is %s",
|
||||
best_drv->Name);
|
||||
dpy->Driver = best_drv;
|
||||
dpy->Initialized = EGL_TRUE;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -75,8 +75,6 @@ extern "C" {
|
|||
*/
|
||||
struct _egl_driver
|
||||
{
|
||||
const char *Name; /**< name of this driver */
|
||||
|
||||
_EGLAPI API; /**< EGL API dispatch table */
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue