2022-12-05 18:05:15 +01:00
|
|
|
|
#include <GLES2/gl2ext.h>
|
|
|
|
|
|
2023-04-03 18:01:05 +02:00
|
|
|
|
#ifndef DRM_WLR_FUNCS
|
|
|
|
|
#define DRM_WLR_FUNCS
|
|
|
|
|
|
2022-12-05 18:05:15 +01:00
|
|
|
|
struct wlr_pixel_format_info {
|
|
|
|
|
uint32_t drm_format;
|
|
|
|
|
|
|
|
|
|
/* Equivalent of the format if it has an alpha channel,
|
|
|
|
|
* DRM_FORMAT_INVALID (0) if NA
|
|
|
|
|
*/
|
|
|
|
|
uint32_t opaque_substitute;
|
|
|
|
|
|
2023-12-03 23:04:07 +01:00
|
|
|
|
/* Bytes per block (including padding) */
|
|
|
|
|
uint32_t bytes_per_block;
|
|
|
|
|
/* Size of a block in pixels (zero for 1×1) */
|
|
|
|
|
uint32_t block_width, block_height;
|
2022-12-05 18:05:15 +01:00
|
|
|
|
|
|
|
|
|
/* True if the format has an alpha channel */
|
|
|
|
|
bool has_alpha;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const struct wlr_pixel_format_info pixel_format_info[] = {
|
|
|
|
|
{
|
2023-12-03 23:04:07 +01:00
|
|
|
|
.drm_format = DRM_FORMAT_XRGB8888,
|
|
|
|
|
.bytes_per_block = 4,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
2022-12-20 03:18:47 +01:00
|
|
|
|
.drm_format = DRM_FORMAT_ARGB8888,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
.opaque_substitute = DRM_FORMAT_XRGB8888,
|
2023-12-03 23:04:07 +01:00
|
|
|
|
.bytes_per_block = 4,
|
2022-12-20 03:18:47 +01:00
|
|
|
|
.has_alpha = true,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
2023-12-03 23:04:07 +01:00
|
|
|
|
.drm_format = DRM_FORMAT_XBGR8888,
|
|
|
|
|
.bytes_per_block = 4,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
2022-12-20 03:18:47 +01:00
|
|
|
|
.drm_format = DRM_FORMAT_ABGR8888,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
.opaque_substitute = DRM_FORMAT_XBGR8888,
|
2023-12-03 23:04:07 +01:00
|
|
|
|
.bytes_per_block = 4,
|
2022-12-20 03:18:47 +01:00
|
|
|
|
.has_alpha = true,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
2023-12-03 23:04:07 +01:00
|
|
|
|
.drm_format = DRM_FORMAT_RGBX8888,
|
|
|
|
|
.bytes_per_block = 4,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
2022-12-20 03:18:47 +01:00
|
|
|
|
.drm_format = DRM_FORMAT_RGBA8888,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
.opaque_substitute = DRM_FORMAT_RGBX8888,
|
2023-12-03 23:04:07 +01:00
|
|
|
|
.bytes_per_block = 4,
|
2022-12-20 03:18:47 +01:00
|
|
|
|
.has_alpha = true,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
2023-12-03 23:04:07 +01:00
|
|
|
|
.drm_format = DRM_FORMAT_BGRX8888,
|
|
|
|
|
.bytes_per_block = 4,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
2022-12-20 03:18:47 +01:00
|
|
|
|
.drm_format = DRM_FORMAT_BGRA8888,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
.opaque_substitute = DRM_FORMAT_BGRX8888,
|
2023-12-03 23:04:07 +01:00
|
|
|
|
.bytes_per_block = 4,
|
2022-12-20 03:18:47 +01:00
|
|
|
|
.has_alpha = true,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
2023-12-03 23:04:07 +01:00
|
|
|
|
.drm_format = DRM_FORMAT_R8,
|
|
|
|
|
.bytes_per_block = 1,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
2023-12-03 23:04:07 +01:00
|
|
|
|
.drm_format = DRM_FORMAT_GR88,
|
|
|
|
|
.bytes_per_block = 2,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.drm_format = DRM_FORMAT_RGB888,
|
|
|
|
|
.bytes_per_block = 3,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.drm_format = DRM_FORMAT_BGR888,
|
|
|
|
|
.bytes_per_block = 3,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.drm_format = DRM_FORMAT_RGBX4444,
|
|
|
|
|
.bytes_per_block = 2,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
2022-12-20 03:18:47 +01:00
|
|
|
|
.drm_format = DRM_FORMAT_RGBA4444,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
.opaque_substitute = DRM_FORMAT_RGBX4444,
|
2023-12-03 23:04:07 +01:00
|
|
|
|
.bytes_per_block = 2,
|
2022-12-20 03:18:47 +01:00
|
|
|
|
.has_alpha = true,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
2023-12-03 23:04:07 +01:00
|
|
|
|
.drm_format = DRM_FORMAT_BGRX4444,
|
|
|
|
|
.bytes_per_block = 2,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.drm_format = DRM_FORMAT_BGRA4444,
|
|
|
|
|
.opaque_substitute = DRM_FORMAT_BGRX4444,
|
|
|
|
|
.bytes_per_block = 2,
|
|
|
|
|
.has_alpha = true,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.drm_format = DRM_FORMAT_RGBX5551,
|
|
|
|
|
.bytes_per_block = 2,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
2022-12-20 03:18:47 +01:00
|
|
|
|
.drm_format = DRM_FORMAT_RGBA5551,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
.opaque_substitute = DRM_FORMAT_RGBX5551,
|
2023-12-03 23:04:07 +01:00
|
|
|
|
.bytes_per_block = 2,
|
|
|
|
|
.has_alpha = true,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.drm_format = DRM_FORMAT_BGRX5551,
|
|
|
|
|
.bytes_per_block = 2,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.drm_format = DRM_FORMAT_BGRA5551,
|
|
|
|
|
.opaque_substitute = DRM_FORMAT_BGRX5551,
|
|
|
|
|
.bytes_per_block = 2,
|
|
|
|
|
.has_alpha = true,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.drm_format = DRM_FORMAT_XRGB1555,
|
|
|
|
|
.bytes_per_block = 2,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.drm_format = DRM_FORMAT_ARGB1555,
|
|
|
|
|
.opaque_substitute = DRM_FORMAT_XRGB1555,
|
|
|
|
|
.bytes_per_block = 2,
|
2022-12-20 03:18:47 +01:00
|
|
|
|
.has_alpha = true,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
2023-12-03 23:04:07 +01:00
|
|
|
|
.drm_format = DRM_FORMAT_RGB565,
|
|
|
|
|
.bytes_per_block = 2,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
2023-12-03 23:04:07 +01:00
|
|
|
|
.drm_format = DRM_FORMAT_BGR565,
|
|
|
|
|
.bytes_per_block = 2,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
2023-12-03 23:04:07 +01:00
|
|
|
|
.drm_format = DRM_FORMAT_XRGB2101010,
|
|
|
|
|
.bytes_per_block = 4,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
2022-12-20 03:18:47 +01:00
|
|
|
|
.drm_format = DRM_FORMAT_ARGB2101010,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
.opaque_substitute = DRM_FORMAT_XRGB2101010,
|
2023-12-03 23:04:07 +01:00
|
|
|
|
.bytes_per_block = 4,
|
2022-12-20 03:18:47 +01:00
|
|
|
|
.has_alpha = true,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
2023-12-03 23:04:07 +01:00
|
|
|
|
.drm_format = DRM_FORMAT_XBGR2101010,
|
|
|
|
|
.bytes_per_block = 4,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
2022-12-20 03:18:47 +01:00
|
|
|
|
.drm_format = DRM_FORMAT_ABGR2101010,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
.opaque_substitute = DRM_FORMAT_XBGR2101010,
|
2023-12-03 23:04:07 +01:00
|
|
|
|
.bytes_per_block = 4,
|
2022-12-20 03:18:47 +01:00
|
|
|
|
.has_alpha = true,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
2023-12-03 23:04:07 +01:00
|
|
|
|
.drm_format = DRM_FORMAT_XBGR16161616F,
|
|
|
|
|
.bytes_per_block = 8,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
2022-12-20 03:18:47 +01:00
|
|
|
|
.drm_format = DRM_FORMAT_ABGR16161616F,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
.opaque_substitute = DRM_FORMAT_XBGR16161616F,
|
2023-12-03 23:04:07 +01:00
|
|
|
|
.bytes_per_block = 8,
|
2022-12-20 03:18:47 +01:00
|
|
|
|
.has_alpha = true,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
2023-12-03 23:04:07 +01:00
|
|
|
|
.drm_format = DRM_FORMAT_XBGR16161616,
|
|
|
|
|
.bytes_per_block = 8,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
},
|
|
|
|
|
{
|
2022-12-20 03:18:47 +01:00
|
|
|
|
.drm_format = DRM_FORMAT_ABGR16161616,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
.opaque_substitute = DRM_FORMAT_XBGR16161616,
|
2023-12-03 23:04:07 +01:00
|
|
|
|
.bytes_per_block = 8,
|
2022-12-20 03:18:47 +01:00
|
|
|
|
.has_alpha = true,
|
2022-12-05 18:05:15 +01:00
|
|
|
|
},
|
2023-12-03 23:04:07 +01:00
|
|
|
|
{
|
|
|
|
|
.drm_format = DRM_FORMAT_YVYU,
|
|
|
|
|
.bytes_per_block = 4,
|
|
|
|
|
.block_width = 2,
|
|
|
|
|
.block_height = 1,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
.drm_format = DRM_FORMAT_VYUY,
|
|
|
|
|
.bytes_per_block = 4,
|
|
|
|
|
.block_width = 2,
|
|
|
|
|
.block_height = 1,
|
|
|
|
|
},
|
2022-12-05 18:05:15 +01:00
|
|
|
|
};
|
|
|
|
|
|
2023-04-03 18:01:05 +02:00
|
|
|
|
static const size_t pixel_format_info_size = sizeof(pixel_format_info) / sizeof(pixel_format_info[0]);
|
2022-12-05 18:05:15 +01:00
|
|
|
|
|
2023-04-03 18:01:05 +02:00
|
|
|
|
static const struct wlr_pixel_format_info* drm_get_pixel_format_info(uint32_t fmt) {
|
2022-12-05 18:05:15 +01:00
|
|
|
|
for (size_t i = 0; i < pixel_format_info_size; ++i) {
|
|
|
|
|
if (pixel_format_info[i].drm_format == fmt) {
|
|
|
|
|
return &pixel_format_info[i];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-03 18:01:05 +02:00
|
|
|
|
/*static uint32_t convert_wl_shm_format_to_drm(enum wl_shm_format fmt) {
|
2022-12-05 18:05:15 +01:00
|
|
|
|
switch (fmt) {
|
2022-12-20 03:18:47 +01:00
|
|
|
|
case WL_SHM_FORMAT_XRGB8888: return DRM_FORMAT_XRGB8888;
|
|
|
|
|
case WL_SHM_FORMAT_ARGB8888: return DRM_FORMAT_ARGB8888;
|
|
|
|
|
default: return (uint32_t)fmt;
|
2022-12-05 18:05:15 +01:00
|
|
|
|
}
|
2023-04-03 18:01:05 +02:00
|
|
|
|
}*/
|
2022-12-05 18:05:15 +01:00
|
|
|
|
|
2023-04-03 18:01:05 +02:00
|
|
|
|
static enum wl_shm_format convert_drm_format_to_wl_shm(uint32_t fmt) {
|
2022-12-05 18:05:15 +01:00
|
|
|
|
switch (fmt) {
|
2022-12-20 03:18:47 +01:00
|
|
|
|
case DRM_FORMAT_XRGB8888: return WL_SHM_FORMAT_XRGB8888;
|
|
|
|
|
case DRM_FORMAT_ARGB8888: return WL_SHM_FORMAT_ARGB8888;
|
|
|
|
|
default: return (enum wl_shm_format)fmt;
|
2022-12-05 18:05:15 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-03 23:04:07 +01:00
|
|
|
|
static uint32_t pixel_format_info_pixels_per_block(const struct wlr_pixel_format_info* info) {
|
|
|
|
|
uint32_t pixels = info->block_width * info->block_height;
|
|
|
|
|
return pixels > 0 ? pixels : 1;
|
|
|
|
|
}
|
2022-12-05 18:05:15 +01:00
|
|
|
|
|
2023-12-03 23:04:07 +01:00
|
|
|
|
static int32_t div_round_up(int32_t dividend, int32_t divisor) {
|
|
|
|
|
int32_t quotient = dividend / divisor;
|
|
|
|
|
if (dividend % divisor != 0) {
|
|
|
|
|
quotient++;
|
|
|
|
|
}
|
|
|
|
|
return quotient;
|
|
|
|
|
}
|
2022-12-05 18:05:15 +01:00
|
|
|
|
|
2023-12-03 23:04:07 +01:00
|
|
|
|
static int32_t pixel_format_info_min_stride(const wlr_pixel_format_info* fmt, int32_t width) {
|
|
|
|
|
int32_t pixels_per_block = (int32_t)pixel_format_info_pixels_per_block(fmt);
|
|
|
|
|
int32_t bytes_per_block = (int32_t)fmt->bytes_per_block;
|
|
|
|
|
if (width > INT32_MAX / bytes_per_block) {
|
|
|
|
|
wlr_log(WLR_DEBUG, "Invalid width %d (overflow)", width);
|
|
|
|
|
return 0;
|
2022-12-05 18:05:15 +01:00
|
|
|
|
}
|
2023-12-03 23:04:07 +01:00
|
|
|
|
return div_round_up(width * bytes_per_block, pixels_per_block);
|
2022-12-05 18:05:15 +01:00
|
|
|
|
}
|
2023-04-03 18:01:05 +02:00
|
|
|
|
|
|
|
|
|
#endif
|