28 lines
966 B
Diff
28 lines
966 B
Diff
From 7411e88f1ddbe42864614954887d0aca0f0bbce0 Mon Sep 17 00:00:00 2001
|
|
From: Imagination Technologies <powervr@imgtec.com>
|
|
Date: Wed, 26 Oct 2016 16:24:28 +0100
|
|
Subject: [PATCH 012/168] Enable buffer sharing in the kms_swrast driver
|
|
|
|
Enable buffer sharing, so that a DRI driver can be loaded by a
|
|
Wayland client when kms_swrast is being used by the compositor.
|
|
---
|
|
src/gallium/frontends/dri/dri2.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/gallium/frontends/dri/dri2.c b/src/gallium/frontends/dri/dri2.c
|
|
index 2dbb6a97070..eca2986eeb9 100644
|
|
--- a/src/gallium/frontends/dri/dri2.c
|
|
+++ b/src/gallium/frontends/dri/dri2.c
|
|
@@ -2344,7 +2344,7 @@ dri_swrast_kms_init_screen(__DRIscreen * sPriv)
|
|
if (!configs)
|
|
goto destroy_screen;
|
|
|
|
- screen->can_share_buffer = false;
|
|
+ screen->can_share_buffer = true;
|
|
screen->auto_fake_front = dri_with_format(sPriv);
|
|
screen->lookup_egl_image = dri2_lookup_egl_image;
|
|
|
|
--
|
|
2.17.1
|
|
|