mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-01 22:58:38 -04:00
render/gles2: remove assumptions about supported formats
We were assuming GL_BGRA_EXT was always supported. We now check that it's supported for rendering. We fail if it isn't because this format is specified as "always supported" by the Wayland protocol. We also check if it's supported for reading pixels. A new preferred_read_format function returns the preferred format that can be used to read pixels. This is used by the screencopy protocol.
This commit is contained in:
parent
675cf8457e
commit
62d646f2b8
7 changed files with 139 additions and 23 deletions
|
|
@ -39,6 +39,11 @@ struct wlr_gles2_renderer {
|
|||
struct wlr_egl *egl;
|
||||
const char *exts_str;
|
||||
|
||||
struct {
|
||||
bool read_format_bgra_ext;
|
||||
bool debug_khr;
|
||||
} exts;
|
||||
|
||||
struct {
|
||||
struct {
|
||||
GLuint program;
|
||||
|
|
@ -87,7 +92,9 @@ struct wlr_gles2_texture {
|
|||
|
||||
const struct wlr_gles2_pixel_format *get_gles2_format_from_wl(
|
||||
enum wl_shm_format fmt);
|
||||
const enum wl_shm_format *get_gles2_formats(size_t *len);
|
||||
const struct wlr_gles2_pixel_format *get_gles2_format_from_gl(
|
||||
GLint gl_format, GLint gl_type, bool alpha);
|
||||
const enum wl_shm_format *get_gles2_wl_formats(size_t *len);
|
||||
|
||||
struct wlr_gles2_texture *gles2_get_texture(
|
||||
struct wlr_texture *wlr_texture);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue