aboutsummaryrefslogtreecommitdiffstats
path: root/packages/geoclue
AgeCommit message (Collapse)Author
2008-10-18bb files: Revert the introduction of FILE_PRHolger Hans Peter Freyther
This is a partial revert of aa03004ace2fabb135a6208ef8c2d2b312aa7b0b. The approach that was taken leads to disagreement and the change was pushed too early. DISTRO_PR is going to say and will be used inside the package creation. There will be more disucssion on the list about where to continue from here.
2008-10-15[PR] Change PR to FILE_PR and intro PR as FILE_PR + DISTRO_PRHolger Hans Peter Freyther
Allow a distribution to globally bump the PR of every package this is useful when there was a change in the toolchain and every package is going to be different. find packages/ \( -name '*.bb' -or -name '*.inc' \) -exec sed -i s/"^PR="/"FILE_PR ="/ {} \; find packages/ \( -name '*.bb' -or -name '*.inc' \) -exec sed -i s/"^PR ="/"FILE_PR ="/ {} \; Acked-By: Koen Kooi <koen@openembedded.org>
2008-10-15mtn2git: remove .mtn2git_empty files in non-empty directoriesJan Luebbe
2008-03-20geoclue_git.bb : add staging from OM mtnGraeme Gregory
2007-08-21geoclue: enable system bus and gpsdKoen Kooi
2007-07-22geoclue: cath up with recent developmentsKoen Kooi
2007-06-22geoclue: fix typoKoen Kooi
2007-06-22geoclue: update to use git repoKoen Kooi
2007-03-22geoclue: don't build panelapplet to prevent pulling in half of gnomeKoen Kooi
2006-12-31remove extra whitespace at end-of-line in about 900 bb files.Rolf Leggewie
2006-11-09geoclue: add geoclue, a dbus service to find out where you are via various ↵Koen Kooi
means like gps or hostip.net
st OpenEmbedded layers collection contribution treesGrokmirror user
aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-graphics/xorg-lib/pixman-0.20.0/0000-Add-pixman_bits_override_accessors.patch
blob: 43cd44268ec0a7ce596504563c521bb86367da54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
From 38aabb3be87ea68e37f34256c778d07f62680ec6 Mon Sep 17 00:00:00 2001
From: Siarhei Siamashka <siarhei.siamashka@nokia.com>
Date: Thu, 10 Dec 2009 00:51:50 +0200
Subject: [PATCH 1/9] add _pixman_bits_override_accessors

* from patch ARM: HACK: added NEON optimizations for fetch/store r5g6b5 scanline
* used in 
  0005-ARM-added-NEON-optimizations-for-fetch-store-r5g6b5-.patch
  0006-ARM-added-NEON-optimizations-for-fetch-store-a8-scan.patch
  0007-ARM-added-NEON-optimizations-for-fetching-x8r8g8b8-s.patch


---
 pixman/pixman-access.c       |   23 ++++++++++++++++++++++-
 pixman/pixman-private.h      |    5 +++++
 4 files changed, 87 insertions(+), 1 deletions(-)

diff --git a/pixman/pixman-access.c b/pixman/pixman-access.c
index f1ce0ba..b33da29 100644
--- a/pixman/pixman-access.c
+++ b/pixman/pixman-access.c
@@ -2836,7 +2836,7 @@ typedef struct
 	    store_scanline_ ## format, store_scanline_generic_64	\
     }
 
-static const format_info_t accessors[] =
+static format_info_t accessors[] =
 {
 /* 32 bpp formats */
     FORMAT_INFO (a8r8g8b8),
@@ -2978,6 +2978,27 @@ _pixman_bits_image_setup_accessors (bits_image_t *image)
 	setup_accessors (image);
 }
 
+void
+_pixman_bits_override_accessors (pixman_format_code_t format,
+                                 fetch_scanline_t     fetch_func,
+                                 store_scanline_t     store_func)
+{
+    format_info_t *info = accessors;
+
+    while (info->format != PIXMAN_null)
+    {
+	if (info->format == format)
+	{
+	    if (fetch_func)
+		info->fetch_scanline_32 = fetch_func;
+	    if (store_func)
+		info->store_scanline_32 = store_func;
+	    return;
+	}
+	info++;
+    }
+}
+
 #else
 
 void
diff --git a/pixman/pixman-private.h b/pixman/pixman-private.h
index d85868f..564f8f0 100644
--- a/pixman/pixman-private.h
+++ b/pixman/pixman-private.h
@@ -206,6 +206,11 @@ void
 _pixman_bits_image_setup_accessors (bits_image_t *image);
 
 void
+_pixman_bits_override_accessors (pixman_format_code_t format,
+                                 fetch_scanline_t     fetch_func,
+                                 store_scanline_t     store_func);
+
+void
 _pixman_image_get_scanline_generic_64  (pixman_image_t *image,
                                         int             x,
                                         int             y,
-- 
1.6.6.1