wip: render/gles2: use PBOs for read_pixels

This commit is contained in:
Simon Ser 2021-02-16 16:33:07 +01:00
parent ff1028b545
commit ee7a9de7cb
3 changed files with 85 additions and 5 deletions

View file

@ -329,6 +329,7 @@ static bool egl_init_display(struct wlr_egl *egl, EGLDisplay *display) {
load_egl_proc(&egl->procs.eglDestroySyncKHR, "eglDestroySyncKHR");
load_egl_proc(&egl->procs.eglDupNativeFenceFDANDROID,
"eglDupNativeFenceFDANDROID");
load_egl_proc(&egl->procs.eglClientWaitSyncKHR, "eglClientWaitSyncKHR");
}
if (check_egl_ext(display_exts_str, "EGL_KHR_wait_sync")) {