init attribs to EGL_DONT_CARE in _eglParseConfigAttribs()

This commit is contained in:
Brian Paul 2005-11-24 03:41:56 +00:00
parent 181f2b92cb
commit ff707ead2b

View file

@ -147,7 +147,10 @@ _eglParseConfigAttribs(_EGLConfig *config, const EGLint *attrib_list)
{
EGLint i;
/* XXX set all config attribs to EGL_DONT_CARE */
/* set all config attribs to EGL_DONT_CARE */
for (i = 0; i < MAX_ATTRIBS; i++) {
config->Attrib[i] = EGL_DONT_CARE;
}
for (i = 0; attrib_list && attrib_list[i] != EGL_NONE; i++) {
EGLint k = attrib_list[i] - FIRST_ATTRIB;