Lines Matching refs:int_attribs
343 EGLint *int_attribs = NULL; in _eglConvertAttribsToInt() local
347 int_attribs = calloc(size, sizeof(int_attribs[0])); in _eglConvertAttribsToInt()
348 if (!int_attribs) in _eglConvertAttribsToInt()
352 int_attribs[i] = attr_list[i]; in _eglConvertAttribsToInt()
354 return int_attribs; in _eglConvertAttribsToInt()
423 const EGLint *int_attribs) in eglGetPlatformDisplayEXT() argument
430 if (_eglConvertIntsToAttribs(int_attribs, &attrib_list) != EGL_SUCCESS) in eglGetPlatformDisplayEXT()
1049 EGLint *int_attribs; in eglCreatePlatformWindowSurface() local
1053 int_attribs = _eglConvertAttribsToInt(attrib_list); in eglCreatePlatformWindowSurface()
1054 if (attrib_list && !int_attribs) in eglCreatePlatformWindowSurface()
1059 int_attribs); in eglCreatePlatformWindowSurface()
1060 free(int_attribs); in eglCreatePlatformWindowSurface()
1155 EGLint *int_attribs; in eglCreatePlatformPixmapSurface() local
1159 int_attribs = _eglConvertAttribsToInt(attrib_list); in eglCreatePlatformPixmapSurface()
1160 if (attrib_list && !int_attribs) in eglCreatePlatformPixmapSurface()
1165 int_attribs); in eglCreatePlatformPixmapSurface()
1166 free(int_attribs); in eglCreatePlatformPixmapSurface()
1761 EGLint *int_attribs; in eglCreateImage() local
1765 int_attribs = _eglConvertAttribsToInt(attr_list); in eglCreateImage()
1766 if (attr_list && !int_attribs) in eglCreateImage()
1769 image = _eglCreateImageCommon(disp, ctx, target, buffer, int_attribs); in eglCreateImage()
1770 free(int_attribs); in eglCreateImage()