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()
433 const EGLint *int_attribs) in eglGetPlatformDisplayEXT() argument
440 if (_eglConvertIntsToAttribs(int_attribs, &attrib_list) != EGL_SUCCESS) in eglGetPlatformDisplayEXT()
1060 EGLint *int_attribs; in eglCreatePlatformWindowSurface() local
1064 int_attribs = _eglConvertAttribsToInt(attrib_list); in eglCreatePlatformWindowSurface()
1065 if (attrib_list && !int_attribs) in eglCreatePlatformWindowSurface()
1070 int_attribs); in eglCreatePlatformWindowSurface()
1071 free(int_attribs); in eglCreatePlatformWindowSurface()
1166 EGLint *int_attribs; in eglCreatePlatformPixmapSurface() local
1170 int_attribs = _eglConvertAttribsToInt(attrib_list); in eglCreatePlatformPixmapSurface()
1171 if (attrib_list && !int_attribs) in eglCreatePlatformPixmapSurface()
1176 int_attribs); in eglCreatePlatformPixmapSurface()
1177 free(int_attribs); in eglCreatePlatformPixmapSurface()
1772 EGLint *int_attribs; in eglCreateImage() local
1776 int_attribs = _eglConvertAttribsToInt(attr_list); in eglCreateImage()
1777 if (attr_list && !int_attribs) in eglCreateImage()
1780 image = _eglCreateImageCommon(disp, ctx, target, buffer, int_attribs); in eglCreateImage()
1781 free(int_attribs); in eglCreateImage()