diff options
author | Tom Hochstein <tom.hochstein@nxp.com> | 2016-05-16 10:35:33 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-17 14:43:29 +0100 |
commit | 3da513ba73a1c90235094a40bfdbf07ea35778b2 (patch) | |
tree | 95048f3f27d523d8433a2143644c635c74706591 /meta/recipes-graphics/mesa/mesa-demos | |
parent | d28ab584850b715c4b223e5146ecee18d8ae3c97 (diff) | |
download | poky-3da513ba73a1c90235094a40bfdbf07ea35778b2.tar.gz |
mesa-demos: OpenVG demos with single frame need eglSwapBuffer
sp and text demos rendering single frame. to display the
single frame rendered needed a eglSwapBuffer to diplay to window.
Hence added eglutPostRedisplay to display the frame.
(From OE-Core rev: 894885ab5de473abf860b8444e591fa2ec804a14)
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/mesa/mesa-demos')
-rw-r--r-- | meta/recipes-graphics/mesa/mesa-demos/0012-mesa-demos-OpenVG-demos-with-single-frame-need-eglSw.patch | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/meta/recipes-graphics/mesa/mesa-demos/0012-mesa-demos-OpenVG-demos-with-single-frame-need-eglSw.patch b/meta/recipes-graphics/mesa/mesa-demos/0012-mesa-demos-OpenVG-demos-with-single-frame-need-eglSw.patch new file mode 100644 index 0000000000..c687647407 --- /dev/null +++ b/meta/recipes-graphics/mesa/mesa-demos/0012-mesa-demos-OpenVG-demos-with-single-frame-need-eglSw.patch | |||
@@ -0,0 +1,44 @@ | |||
1 | From 3aa84c47e88a4c38446ce1323abf6f2c77389104 Mon Sep 17 00:00:00 2001 | ||
2 | From: Prabhu <prabhu.sundararaj@freescale.com> | ||
3 | Date: Mon, 16 Nov 2015 17:09:32 -0600 | ||
4 | Subject: [PATCH] mesa-demos: OpenVG demos with single frame need eglSwapBuffer | ||
5 | |||
6 | sp and text demos rendering single frame. to display the | ||
7 | single frame rendered needed a eglSwapBuffer to diplay to window. | ||
8 | Hence added eglutPostRedisplay to display the frame | ||
9 | |||
10 | Upstream-Status: Pending | ||
11 | |||
12 | Signed-off-by: Prabhu <prabhu.sundararaj@freescale.com> | ||
13 | --- | ||
14 | src/egl/openvg/sp.c | 1 + | ||
15 | src/egl/openvg/text.c | 1 + | ||
16 | 2 files changed, 2 insertions(+) | ||
17 | |||
18 | diff --git a/src/egl/openvg/sp.c b/src/egl/openvg/sp.c | ||
19 | index a20c0a3..468e91e 100644 | ||
20 | --- a/src/egl/openvg/sp.c | ||
21 | +++ b/src/egl/openvg/sp.c | ||
22 | @@ -500,6 +500,7 @@ draw(void) | ||
23 | } | ||
24 | |||
25 | vgFlush(); | ||
26 | + eglutPostRedisplay(); | ||
27 | } | ||
28 | |||
29 | |||
30 | diff --git a/src/egl/openvg/text.c b/src/egl/openvg/text.c | ||
31 | index f5c6de8..492581c 100644 | ||
32 | --- a/src/egl/openvg/text.c | ||
33 | +++ b/src/egl/openvg/text.c | ||
34 | @@ -360,6 +360,7 @@ display(void) | ||
35 | { | ||
36 | vgClear(0, 0, width, height); | ||
37 | glyph_string_draw(10.0, 10.0); | ||
38 | + eglutPostRedisplay(); | ||
39 | } | ||
40 | |||
41 | |||
42 | -- | ||
43 | 2.5.1 | ||
44 | |||