朱国豪
unread,Feb 22, 2025, 1:27:36 PMFeb 22Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to angleproject
Thank you for the great work and maintaining ANGLE, really appreciate that.
On my Samsung device, with Adreno 730 GPU. During the very basic EGL initialization steps, I often see this warning:
E/qdgralloc(16806): GetSize: Unrecognized pixel format: 0x38
E/Gralloc4(16806): isSupported(1, 1, 56, 1, ...) failed with 5
E/GraphicBufferAllocator(16806): Failed to allocate (4 x 4) layerCount 1 format 56 usage b00: 5
E/AHardwareBuffer(16806): GraphicBuffer(w=4, h=4, lc=1) failed (Unknown error -5), handle=0x0
E/qdgralloc(16806): GetSize: Unrecognized pixel format: 0x3b
E/Gralloc4(16806): isSupported(1, 1, 59, 1, ...) failed with 5
E/GraphicBufferAllocator(16806): Failed to allocate (4 x 4) layerCount 1 format 59 usage b00: 5
E/AHardwareBuffer(16806): GraphicBuffer(w=4, h=4, lc=1) failed (Unknown error -5), handle=0x0
E/qdgralloc(16806): GetSize: Unrecognized pixel format: 0x38
E/Gralloc4(16806): isSupported(1, 1, 56, 1, ...) failed with 5
E/GraphicBufferAllocator(16806): Failed to allocate (4 x 4) layerCount 1 format 56 usage b00: 5
E/AHardwareBuffer(16806): GraphicBuffer(w=4, h=4, lc=1) failed (Unknown error -5), handle=0x0
E/qdgralloc(16806): GetSize: Unrecognized pixel format: 0x3b
E/Gralloc4(16806): isSupported(1, 1, 59, 1, ...) failed with 5
E/GraphicBufferAllocator(16806): Failed to allocate (4 x 4) layerCount 1 format 59 usage b00: 5
This is my configs
" const EGLint configAttribs[] = {
EGL_RENDERABLE_TYPE, EGL_OPENGL_ES3_BIT_KHR,
EGL_SURFACE_TYPE, EGL_PBUFFER_BIT,
EGL_RED_SIZE, 8,
EGL_GREEN_SIZE, 8,
EGL_BLUE_SIZE, 8,
EGL_ALPHA_SIZE, 8,
EGL_DEPTH_SIZE, 24,
EGL_STENCIL_SIZE, 8,
EGL_NONE
};"
Things run without any problem so far. But seeing this warning all the time is a bit uneasy for me. Any comments and help would be appreciated, thank you.