[mutter] renderer/native: Valid formats for secondary dumb buffers
- From: Jonas Ådahl <jadahl src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [mutter] renderer/native: Valid formats for secondary dumb buffers
- Date: Wed, 30 Jan 2019 12:59:00 +0000 (UTC)
commit 442dcc7855ec7aa01fb1f6ff4a5b8085a50da21d
Author: Pekka Paalanen <pekka paalanen collabora com>
Date: Wed Nov 21 15:25:07 2018 +0200
renderer/native: Valid formats for secondary dumb buffers
When setting up an output on a secondary GPU with the CPU copy mode,
allocate the dumb buffers with a DRM format that is advertised supported
instead of hardcoding a format.
Particularly, DisplayLink devices do not quite yet support the hardcoded
DRM_FORMAT_XBGR8888. The proprietary driver stack actually ignores the
format assuming it is DRM_FORMAT_XRGB8888 which results the display
having red and blue channels swapped. This patch fixes the color swap
right now, while taking advantage if the driver adds support for XBGR
later.
The preferred_formats ordering is somewhat arbitrary. Here it is written
from glReadPixels point of view, based on my benchmarks on Intel Haswell
Desktop machine. This ordering prefers the format that was hardcoded
before.
https://gitlab.gnome.org/GNOME/mutter/merge_requests/341
src/backends/native/meta-renderer-native.c | 150 ++++++++++++++++++++++++++++-
1 file changed, 149 insertions(+), 1 deletion(-)
---
diff --git a/src/backends/native/meta-renderer-native.c b/src/backends/native/meta-renderer-native.c
index abc4c200c..0a2f532e9 100644
--- a/src/backends/native/meta-renderer-native.c
+++ b/src/backends/native/meta-renderer-native.c
@@ -70,6 +70,11 @@
#define EGL_DRM_MASTER_FD_EXT 0x333C
#endif
+/* added in libdrm 2.4.95 */
+#ifndef DRM_FORMAT_INVALID
+#define DRM_FORMAT_INVALID 0
+#endif
+
enum
{
PROP_0,
@@ -244,6 +249,11 @@ static void
free_next_secondary_bo (MetaGpuKms *gpu_kms,
MetaOnscreenNativeSecondaryGpuState *secondary_gpu_state);
+static gboolean
+cogl_pixel_format_from_drm_format (uint32_t drm_format,
+ CoglPixelFormat *out_format,
+ CoglTextureComponents *out_components);
+
static void
meta_renderer_native_gpu_data_free (MetaRendererNativeGpuData *renderer_gpu_data)
{
@@ -559,6 +569,72 @@ get_supported_modifiers (CoglOnscreen *onscreen,
return modifiers;
}
+typedef struct _GetSupportedKmsFormatsData
+{
+ GArray *formats;
+ MetaGpu *gpu;
+} GetSupportedKmsFormatsData;
+
+static void
+get_supported_kms_formats_crtc_func (MetaLogicalMonitor *logical_monitor,
+ MetaCrtc *crtc,
+ gpointer user_data)
+{
+ GetSupportedKmsFormatsData *data = user_data;
+ gboolean supported = TRUE;
+ unsigned int i;
+
+ if (crtc->gpu != data->gpu)
+ return;
+
+ if (!data->formats)
+ {
+ /* MetaCrtcKms guarantees a non-empty list. */
+ data->formats = meta_crtc_kms_copy_drm_format_list (crtc);
+
+ return;
+ }
+
+ /* formats must be supported by all other CRTCs too */
+ for (i = 0; i < data->formats->len; i++)
+ {
+ uint32_t drm_format = g_array_index (data->formats, uint32_t, i);
+
+ if (!meta_crtc_kms_supports_format (crtc, drm_format))
+ {
+ supported = FALSE;
+ break;
+ }
+ }
+
+ if (!supported)
+ g_array_remove_index_fast (data->formats, i--);
+}
+
+static GArray *
+get_supported_kms_formats (CoglOnscreen *onscreen,
+ MetaGpu *gpu)
+{
+ CoglOnscreenEGL *onscreen_egl = onscreen->winsys;
+ MetaOnscreenNative *onscreen_native = onscreen_egl->platform;
+ MetaLogicalMonitor *logical_monitor = onscreen_native->logical_monitor;
+ GetSupportedKmsFormatsData data = {
+ .formats = NULL,
+ .gpu = gpu
+ };
+
+ meta_logical_monitor_foreach_crtc (logical_monitor,
+ get_supported_kms_formats_crtc_func,
+ &data);
+ if (data.formats->len == 0)
+ {
+ g_array_free (data.formats, TRUE);
+ data.formats = NULL;
+ }
+
+ return data.formats;
+}
+
static gboolean
init_secondary_gpu_state_gpu_copy_mode (MetaRendererNative *renderer_native,
CoglOnscreen *onscreen,
@@ -651,6 +727,68 @@ secondary_gpu_state_free (MetaOnscreenNativeSecondaryGpuState *secondary_gpu_sta
g_free (secondary_gpu_state);
}
+static uint32_t
+pick_secondary_gpu_framebuffer_format_for_cpu (CoglOnscreen *onscreen,
+ MetaGpu *gpu)
+{
+ /*
+ * cogl_framebuffer_read_pixels_into_bitmap () supported formats in
+ * preference order. Ideally these should depend on the render buffer
+ * format copy_shared_framebuffer_cpu () will be reading from but
+ * alpha channel ignored.
+ */
+ static const uint32_t preferred_formats[] =
+ {
+ /*
+ * DRM_FORMAT_XBGR8888 a.k.a GL_RGBA, GL_UNSIGNED_BYTE on
+ * little-endian is possibly the most optimized glReadPixels
+ * output format. glReadPixels cannot avoid manufacturing an alpha
+ * channel if the render buffer does not have one and converting
+ * to ABGR8888 may be more optimized than ARGB8888.
+ */
+ DRM_FORMAT_XBGR8888,
+ /* The rest are other fairly commonly used formats in OpenGL. */
+ DRM_FORMAT_XRGB8888,
+ };
+ g_autoptr (GArray) formats;
+ size_t k;
+ unsigned int i;
+ uint32_t drm_format;
+
+ formats = get_supported_kms_formats (onscreen, gpu);
+
+ /* Check if any of our preferred formats are supported. */
+ for (k = 0; k < G_N_ELEMENTS (preferred_formats); k++)
+ {
+ g_assert (cogl_pixel_format_from_drm_format (preferred_formats[k],
+ NULL,
+ NULL));
+
+ for (i = 0; i < formats->len; i++)
+ {
+ drm_format = g_array_index (formats, uint32_t, i);
+
+ if (drm_format == preferred_formats[k])
+ return drm_format;
+ }
+ }
+
+ /*
+ * Otherwise just pick an arbitrary format we recognize. The formats
+ * list is not in any specific order and we don't know any better
+ * either.
+ */
+ for (i = 0; i < formats->len; i++)
+ {
+ drm_format = g_array_index (formats, uint32_t, i);
+
+ if (cogl_pixel_format_from_drm_format (drm_format, NULL, NULL))
+ return drm_format;
+ }
+
+ return DRM_FORMAT_INVALID;
+}
+
static gboolean
init_secondary_gpu_state_cpu_copy_mode (MetaRendererNative *renderer_native,
CoglOnscreen *onscreen,
@@ -664,6 +802,16 @@ init_secondary_gpu_state_cpu_copy_mode (MetaRendererNative *renderer_nat
MetaOnscreenNativeSecondaryGpuState *secondary_gpu_state;
int width, height;
unsigned int i;
+ uint32_t drm_format;
+
+ drm_format = pick_secondary_gpu_framebuffer_format_for_cpu (onscreen,
+ META_GPU (gpu_kms));
+ if (drm_format == DRM_FORMAT_INVALID)
+ {
+ g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
+ "Could not find a suitable pixel format in CPU copy mode");
+ return FALSE;
+ }
width = cogl_framebuffer_get_width (framebuffer);
height = cogl_framebuffer_get_height (framebuffer);
@@ -680,7 +828,7 @@ init_secondary_gpu_state_cpu_copy_mode (MetaRendererNative *renderer_nat
if (!init_dumb_fb (dumb_fb,
gpu_kms,
width, height,
- DRM_FORMAT_XBGR8888,
+ drm_format,
error))
{
secondary_gpu_state_free (secondary_gpu_state);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]