summaryrefslogtreecommitdiff
path: root/pcr/xf86-video-qxl/0004-Fix-drawable-mm_time-with-KMS.patch
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2017-01-20 00:50:40 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2017-01-20 00:50:40 -0500
commit635fcabba41b616b61a044577138b677f8e3ba85 (patch)
tree74d0bd53c361b05422a6c0dde2bf97f7721d0691 /pcr/xf86-video-qxl/0004-Fix-drawable-mm_time-with-KMS.patch
parent7be19864c7e7638af2f0a65a9aa4c21f998d3f4b (diff)
downloadabslibre-635fcabba41b616b61a044577138b677f8e3ba85.tar.gz
abslibre-635fcabba41b616b61a044577138b677f8e3ba85.tar.bz2
abslibre-635fcabba41b616b61a044577138b677f8e3ba85.zip
xf86-video-qxl-0.1.5-2: updating version
Diffstat (limited to 'pcr/xf86-video-qxl/0004-Fix-drawable-mm_time-with-KMS.patch')
-rw-r--r--pcr/xf86-video-qxl/0004-Fix-drawable-mm_time-with-KMS.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/pcr/xf86-video-qxl/0004-Fix-drawable-mm_time-with-KMS.patch b/pcr/xf86-video-qxl/0004-Fix-drawable-mm_time-with-KMS.patch
deleted file mode 100644
index 3e35df5a6..000000000
--- a/pcr/xf86-video-qxl/0004-Fix-drawable-mm_time-with-KMS.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From e765cc5ea35bfab017201307b280368400cf1d10 Mon Sep 17 00:00:00 2001
-From: Javier Celaya <javier.celaya@flexvdi.com>
-Date: Fri, 19 Jun 2015 14:05:10 +0200
-Subject: [PATCH 3/3] Fix drawable mm_time with KMS
-
-When KMS is enabled, the mm_time value of a QXLDrawable is undefined.
-This results in severe synchronization problems. This patch sets it to
-zero to force the spice-server to use the local clock.
-
-Signed-off-by: Christian Hesse <mail@eworm.de>
----
- src/qxl_surface.c | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/src/qxl_surface.c b/src/qxl_surface.c
-index c5e76e0..6fc2146 100644
---- a/src/qxl_surface.c
-+++ b/src/qxl_surface.c
-@@ -86,6 +86,8 @@ make_drawable (qxl_screen_t *qxl, qxl_surface_t *surf, uint8_t type,
-
- if (!qxl->kms_enabled)
- drawable->mm_time = qxl->rom->mm_clock;
-+ else
-+ drawable->mm_time = 0;
-
- qxl->bo_funcs->bo_unmap(draw_bo);
- return draw_bo;
---
-2.6.2
-