separate ext strings with a space

This commit is contained in:
Brian Paul 2005-05-16 02:17:49 +00:00
parent d9789b7861
commit a495ed372f
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}