From: Brian Paul Date: Mon, 16 May 2005 02:17:49 +0000 (+0000) Subject: separate ext strings with a space X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a495ed372f7056c84cbf9c5a38622367c0fac36e;p=mesa.git separate ext strings with a space --- diff --git a/src/egl/main/egldriver.c b/src/egl/main/egldriver.c index 8cad3d895ec..a52a7aa3c90 100644 --- a/src/egl/main/egldriver.c +++ b/src/egl/main/egldriver.c @@ -207,9 +207,9 @@ UpdateExtensionsString(_EGLDriver *drv) drv->Extensions[0] = 0; if (drv->MESA_screen_surface) - strcat(drv->Extensions, "EGL_MESA_screen_surface"); + strcat(drv->Extensions, "EGL_MESA_screen_surface "); if (drv->MESA_copy_context) - strcat(drv->Extensions, "EGL_MESA_copy_context"); + strcat(drv->Extensions, "EGL_MESA_copy_context "); assert(strlen(drv->Extensions) < MAX_EXTENSIONS_LEN); }