mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 20:05:58 +01:00
62d646f2b8
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.
78 lines
1.8 KiB
C
78 lines
1.8 KiB
C
#include <GLES2/gl2.h>
|
|
#include <GLES2/gl2ext.h>
|
|
#include "render/gles2.h"
|
|
|
|
/*
|
|
* The wayland formats are little endian while the GL formats are big endian,
|
|
* so WL_SHM_FORMAT_ARGB8888 is actually compatible with GL_BGRA_EXT.
|
|
*/
|
|
static const struct wlr_gles2_pixel_format formats[] = {
|
|
{
|
|
.wl_format = WL_SHM_FORMAT_ARGB8888,
|
|
.depth = 32,
|
|
.bpp = 32,
|
|
.gl_format = GL_BGRA_EXT,
|
|
.gl_type = GL_UNSIGNED_BYTE,
|
|
.has_alpha = true,
|
|
},
|
|
{
|
|
.wl_format = WL_SHM_FORMAT_XRGB8888,
|
|
.depth = 24,
|
|
.bpp = 32,
|
|
.gl_format = GL_BGRA_EXT,
|
|
.gl_type = GL_UNSIGNED_BYTE,
|
|
.has_alpha = false,
|
|
},
|
|
{
|
|
.wl_format = WL_SHM_FORMAT_XBGR8888,
|
|
.depth = 24,
|
|
.bpp = 32,
|
|
.gl_format = GL_RGBA,
|
|
.gl_type = GL_UNSIGNED_BYTE,
|
|
.has_alpha = false,
|
|
},
|
|
{
|
|
.wl_format = WL_SHM_FORMAT_ABGR8888,
|
|
.depth = 32,
|
|
.bpp = 32,
|
|
.gl_format = GL_RGBA,
|
|
.gl_type = GL_UNSIGNED_BYTE,
|
|
.has_alpha = true,
|
|
},
|
|
};
|
|
|
|
static const enum wl_shm_format wl_formats[] = {
|
|
WL_SHM_FORMAT_ARGB8888,
|
|
WL_SHM_FORMAT_XRGB8888,
|
|
WL_SHM_FORMAT_ABGR8888,
|
|
WL_SHM_FORMAT_XBGR8888,
|
|
};
|
|
|
|
// TODO: more pixel formats
|
|
|
|
const struct wlr_gles2_pixel_format *get_gles2_format_from_wl(
|
|
enum wl_shm_format fmt) {
|
|
for (size_t i = 0; i < sizeof(formats) / sizeof(*formats); ++i) {
|
|
if (formats[i].wl_format == fmt) {
|
|
return &formats[i];
|
|
}
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
const struct wlr_gles2_pixel_format *get_gles2_format_from_gl(
|
|
GLint gl_format, GLint gl_type, bool alpha) {
|
|
for (size_t i = 0; i < sizeof(formats) / sizeof(*formats); ++i) {
|
|
if (formats[i].gl_format == gl_format &&
|
|
formats[i].gl_type == gl_type &&
|
|
formats[i].has_alpha == alpha) {
|
|
return &formats[i];
|
|
}
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
const enum wl_shm_format *get_gles2_wl_formats(size_t *len) {
|
|
*len = sizeof(wl_formats) / sizeof(wl_formats[0]);
|
|
return wl_formats;
|
|
}
|