mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-12-26 08:56:29 -05:00
render/gles2: require GL_EXT_unpack_subimage
We implicitly depended on this extension.
This commit is contained in:
parent
e57a52e7f7
commit
3fd8098881
2 changed files with 5 additions and 1 deletions
|
|
@ -893,6 +893,11 @@ struct wlr_renderer *wlr_gles2_renderer_create(struct wlr_egl *egl) {
|
|||
free(renderer);
|
||||
return NULL;
|
||||
}
|
||||
if (!check_gl_ext(exts_str, "GL_EXT_unpack_subimage")) {
|
||||
wlr_log(WLR_ERROR, "GL_EXT_unpack_subimage not supported");
|
||||
free(renderer);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
renderer->exts.read_format_bgra_ext =
|
||||
check_gl_ext(exts_str, "GL_EXT_read_format_bgra");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue