mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-06 13:29:48 -05:00
Check for GL_EXT_texture_format_BGRA8888
This commit is contained in:
parent
1101b63d49
commit
d711d0cd66
1 changed files with 8 additions and 0 deletions
|
|
@ -1398,6 +1398,7 @@ int
|
|||
wlsc_compositor_init(struct wlsc_compositor *ec, struct wl_display *display)
|
||||
{
|
||||
struct wl_event_loop *loop;
|
||||
const char *extensions;
|
||||
|
||||
ec->wl_display = display;
|
||||
|
||||
|
|
@ -1419,6 +1420,13 @@ wlsc_compositor_init(struct wlsc_compositor *ec, struct wl_display *display)
|
|||
|
||||
screenshooter_create(ec);
|
||||
|
||||
extensions = (const char *) glGetString(GL_EXTENSIONS);
|
||||
if (!strstr(extensions, "GL_EXT_texture_format_BGRA8888")) {
|
||||
fprintf(stderr,
|
||||
"GL_EXT_texture_format_BGRA8888 not available\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
glGenFramebuffers(1, &ec->fbo);
|
||||
glBindFramebuffer(GL_FRAMEBUFFER, ec->fbo);
|
||||
glActiveTexture(GL_TEXTURE0);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue