Home | History | Annotate | Download | only in main

Lines Matching refs:attrib_list

83  * Parse the attrib_list to fill in the fields of the given _eglMode
87 _eglParseModeAttribs(_EGLMode *mode, const EGLint *attrib_list)
100 for (i = 0; attrib_list && attrib_list[i] != EGL_NONE; i++) {
101 switch (attrib_list[i]) {
103 mode->Handle = attrib_list[++i];
110 mode->Width = attrib_list[++i];
117 mode->Height = attrib_list[++i];
124 mode->RefreshRate = attrib_list[++i];
131 mode->Interlaced = attrib_list[++i];
138 mode->Optimal = attrib_list[++i];
261 const EGLint *attrib_list, EGLModeMESA *modes,
267 if (!_eglParseModeAttribs(&min, attrib_list)) {