diff options
author | Adam Jackson <ajax@redhat.com> | 2016-04-19 15:30:41 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2016-04-20 16:47:23 -0400 |
commit | 7bb5775189fbcdf0ddb62f72f00a69c635270a08 (patch) | |
tree | 20e6b7e773ae78e7cb952e9c2233a08ed3fb03e9 | |
parent | 3e718db463207df7058edb49d2201ab1acc8bf25 (diff) |
eglinfo: Note when an EGLConfig is streams-compatible
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Adam Jackson <ajax@redhat.com>
-rw-r--r-- | src/egl/opengl/eglinfo.c | 2 |
1 files changed, 2 insertions, 0 deletions
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; |