Hi,
I have found a solution.
I first have to set the same color-format in the buffer-info of the fbdev-driver, cause they have to match and openvg-lib does not set itself this information.
fb = fopen("fbdev:0", NULL);
buf_info.FORMAT = FBDEV_COLOR_RGB888;
...
ioctl(fb, IO_IOCTL_FBDEV_SET_BUFFER_INFO, &buf_info);
...
//search for matching egl-config
...
eglCreateContext( ......);
Regards
Sebastian