Lines Matching refs:int_attribs
334 EGLint *int_attribs = NULL; in _eglConvertAttribsToInt() local
345 int_attribs = calloc(size, sizeof(int_attribs[0])); in _eglConvertAttribsToInt()
346 if (!int_attribs) in _eglConvertAttribsToInt()
350 int_attribs[i] = attr_list[i]; in _eglConvertAttribsToInt()
352 return int_attribs; in _eglConvertAttribsToInt()
415 const EGLint *int_attribs) in eglGetPlatformDisplayEXT() argument
422 if (_eglConvertIntsToAttribs(int_attribs, &attrib_list) != EGL_SUCCESS) in eglGetPlatformDisplayEXT()
965 EGLint *int_attribs; in eglCreatePlatformWindowSurface() local
969 int_attribs = _eglConvertAttribsToInt(attrib_list); in eglCreatePlatformWindowSurface()
970 if (attrib_list && !int_attribs) in eglCreatePlatformWindowSurface()
975 int_attribs); in eglCreatePlatformWindowSurface()
976 free(int_attribs); in eglCreatePlatformWindowSurface()
1071 EGLint *int_attribs; in eglCreatePlatformPixmapSurface() local
1075 int_attribs = _eglConvertAttribsToInt(attrib_list); in eglCreatePlatformPixmapSurface()
1076 if (attrib_list && !int_attribs) in eglCreatePlatformPixmapSurface()
1081 int_attribs); in eglCreatePlatformPixmapSurface()
1082 free(int_attribs); in eglCreatePlatformPixmapSurface()
1691 EGLint *int_attribs; in eglCreateImage() local
1695 int_attribs = _eglConvertAttribsToInt(attr_list); in eglCreateImage()
1696 if (attr_list && !int_attribs) in eglCreateImage()
1699 image = _eglCreateImageCommon(disp, ctx, target, buffer, int_attribs); in eglCreateImage()
1700 free(int_attribs); in eglCreateImage()