Remove unused patches

This commit is contained in:
Cole Robinson 2014-10-29 14:48:09 -04:00
parent 65091bfe6e
commit b6a0a2c095
2 changed files with 0 additions and 65 deletions

View File

@ -1,40 +0,0 @@
From 2c0c674392c9ed51b9679262f114c49dbfdab0f6 Mon Sep 17 00:00:00 2001
Message-Id: <2c0c674392c9ed51b9679262f114c49dbfdab0f6.1361045108.git.crobinso@redhat.com>
From: Cole Robinson <crobinso@redhat.com>
Date: Thu, 31 Jan 2013 10:16:20 +0000
Subject: [PATCH] Add introspection annotation for vnc_display_send_keys
The vnc_display_send_keys method signature is too complex
to be interpreted correctly without some annotations.
https://bugzilla.gnome.org/show_bug.cgi?id=691821
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
---
src/vncdisplay.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/src/vncdisplay.c b/src/vncdisplay.c
index 5c0e994..14df066 100644
--- a/src/vncdisplay.c
+++ b/src/vncdisplay.c
@@ -1615,6 +1615,16 @@ VncConnection * vnc_display_get_connection(VncDisplay *obj)
}
+/**
+ * vnc_display_send_keys:
+ *
+ * @obj: The #VncDisplay
+ * @keyvals: (array length=nkeyvals): Keyval array
+ * @nkeyvals: Length of keyvals
+ *
+ * Send keyval click events to the display.
+ *
+ */
void vnc_display_send_keys(VncDisplay *obj, const guint *keyvals, int nkeyvals)
{
vnc_display_send_keys_ex(obj, keyvals,
--
1.8.1.2

View File

@ -1,25 +0,0 @@
From 4b3a6e84bd1a1bc85feafbd6ce64c3af4b29c903 Mon Sep 17 00:00:00 2001
From: Adam Jackson <ajax@redhat.com>
Date: Mon, 03 Dec 2012 18:37:38 +0000
Subject: cairo: Fix framebuffer setup on big-endian
Without this, big-endian machines would over-swizzle.
Signed-off-by: Adam Jackson <ajax@redhat.com>
---
diff --git a/src/vnccairoframebuffer.c b/src/vnccairoframebuffer.c
index ae61ded..75cf7d9 100644
--- a/src/vnccairoframebuffer.c
+++ b/src/vnccairoframebuffer.c
@@ -142,8 +142,7 @@ VncCairoFramebuffer *vnc_cairo_framebuffer_new(guint16 width, guint16 height,
localFormat.blue_shift = 0;
localFormat.depth = 32;
localFormat.bits_per_pixel = 32;
- /* XXX is cairo native endian ? */
- localFormat.byte_order = G_LITTLE_ENDIAN;
+ localFormat.byte_order = G_BYTE_ORDER;
pixels = cairo_image_surface_get_data(surface);
--
cgit v0.9.0.2