From 7bb5775189fbcdf0ddb62f72f00a69c635270a08 Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Tue, 19 Apr 2016 15:30:41 -0400 Subject: [PATCH] eglinfo: Note when an EGLConfig is streams-compatible Reviewed-by: Alex Deucher Signed-off-by: Adam Jackson --- src/egl/opengl/eglinfo.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/egl/opengl/eglinfo.c b/src/egl/opengl/eglinfo.c index 1f79fef8..ca22df24 100644 --- a/src/egl/opengl/eglinfo.c +++ b/src/egl/opengl/eglinfo.c @@ -93,6 +93,8 @@ PrintConfigs(EGLDisplay d) strcat(surfString, "pb,"); if (surfaces & EGL_PIXMAP_BIT) strcat(surfString, "pix,"); + if (surfaces & EGL_STREAM_BIT_KHR) + strcat(surfString, "str,"); if (strlen(surfString) > 0) surfString[strlen(surfString) - 1] = 0; -- 2.11.4.GIT