diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-02-15 08:32:51 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-15 08:32:51 -0500 |
commit | 4ded535354229022dda66c474b097d9e9234effa (patch) | |
tree | 53888034adde9a227c400196f1185c435a784aa6 /render | |
parent | 31dde23e407f4bb1c9986100967e55915d866d27 (diff) | |
parent | 4d496802dd8d5c01c8b87453e705362f73260e04 (diff) |
Merge pull request #634 from agx/glvendor
Log GL and EGL vendor
Diffstat (limited to 'render')
-rw-r--r-- | render/egl.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/render/egl.c b/render/egl.c index f1208a72..21c446f1 100644 --- a/render/egl.c +++ b/render/egl.c @@ -132,7 +132,9 @@ bool wlr_egl_init(struct wlr_egl *egl, EGLenum platform, void *remote_display, wlr_log(L_INFO, "Using EGL %d.%d", (int)major, (int)minor); wlr_log(L_INFO, "Supported EGL extensions: %s", egl->egl_exts_str); + wlr_log(L_INFO, "EGL vendor: %s", eglQueryString(egl->display, EGL_VENDOR)); wlr_log(L_INFO, "Using %s", glGetString(GL_VERSION)); + wlr_log(L_INFO, "GL vendor: %s", glGetString(GL_VENDOR)); wlr_log(L_INFO, "Supported OpenGL ES extensions: %s", egl->gl_exts_str); if (strstr(egl->egl_exts_str, "EGL_WL_bind_wayland_display") == NULL || |