Libgbm
libgbm for KMS BO
Install / Use
/learn @thayama/LibgbmREADME
This is the gbm frontend used by (for example) weston compositor to load the GLES stack, and retrieve the backing buffer objects behind an eglImage (created with EGL_WAYLAND_BUFFER_WL), etc.
The frontend is really just a backend loader and shim. The backend library must be provided by the GLES implementation.
To get wayland up and running on your GLES stack:
- implement gbm backend
- implement EGL_WL_bind_wayland_display extension (including EGL_WAYLAND_BUFFER_WL eglCreateImageKHR target for compositor-drm it looks like we also need EGL_KHR_surfaceless_gles2 extension..
<robclark> hmm, I don't suppose there is any extension description for EGL_KHR_surfaceless_gles2 ? <pq> robclark, it should simply mean you can eglMakeCurrent with NULL surface, but a real context.
- implement wayland-egl (must provide wayland-egl.pc)
- ???
- PROFIT!!
need this in your eglext.h:
#ifndef EGL_WL_bind_wayland_display #define EGL_WL_bind_wayland_display 1
