summaryrefslogtreecommitdiff
path: root/src/egl/main/egldriver.c
diff options
context:
space:
mode:
authorEric Engestrom <eric.engestrom@imgtec.com>2017-10-18 16:32:33 +0100
committerEric Engestrom <eric.engestrom@imgtec.com>2017-10-18 17:25:41 +0100
commit6414d6bd8d2897f4ba643357fe3037f3acd60879 (patch)
tree9400cdacb8d923048e540a7fcc0bc57f3224070e /src/egl/main/egldriver.c
parentd7e769abec732fd23b93145a519065c82b2ccb2b (diff)
egl: drop EGL driver `name`
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. Cc: Kai Wasserbäch <kai@dev.carbon-project.org> Suggested-by: Emil Velikov <emil.l.velikov@gmail.com> Related-to: b174a1ae720cb404738c ("egl: Simplify the "driver" interface") Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
Diffstat (limited to 'src/egl/main/egldriver.c')
-rw-r--r--src/egl/main/egldriver.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/egl/main/egldriver.c b/src/egl/main/egldriver.c
index 003f74ed63d..33f8f57aeb1 100644
--- a/src/egl/main/egldriver.c
+++ b/src/egl/main/egldriver.c
@@ -95,8 +95,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;
}