Is it possible to create RGBA10_10_10_2 EGL Window with Jetpack4.6.3 ?
When I used the following parameters, Error in creating egl surface 12293 was occured at calling eglCreateWindowSurface.

static EGLint rgba1010102 = {
EGL_RED_SIZE, 10,
EGL_GREEN_SIZE, 10,
EGL_BLUE_SIZE, 10,
EGL_ALPHA_SIZE, 2,
EGL_RENDERABLE_TYPE, EGL_OPENGL_ES3_BIT,
EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
EGL_NONE,
};

Hi,
This is not supported. Please use RGBA8888.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.