aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/mesa/mesa-demos/0012-mesa-demos-OpenVG-demos-with-single-frame-need-eglSw.patch
blob: c687647407e2090f93fa87c8cf1243f95768afc4 (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
From 3aa84c47e88a4c38446ce1323abf6f2c77389104 Mon Sep 17 00:00:00 2001
From: Prabhu <prabhu.sundararaj@freescale.com>
Date: Mon, 16 Nov 2015 17:09:32 -0600
Subject: [PATCH] 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

Upstream-Status: Pending

Signed-off-by: Prabhu <prabhu.sundararaj@freescale.com>
---
 src/egl/openvg/sp.c   | 1 +
 src/egl/openvg/text.c | 1 +
 2 files changed, 2 insertions(+)

diff --git a/src/egl/openvg/sp.c b/src/egl/openvg/sp.c
index a20c0a3..468e91e 100644
--- a/src/egl/openvg/sp.c
+++ b/src/egl/openvg/sp.c
@@ -500,6 +500,7 @@ draw(void)
    }
 
    vgFlush();
+   eglutPostRedisplay();
 }
 
 
diff --git a/src/egl/openvg/text.c b/src/egl/openvg/text.c
index f5c6de8..492581c 100644
--- a/src/egl/openvg/text.c
+++ b/src/egl/openvg/text.c
@@ -360,6 +360,7 @@ display(void)
 {
    vgClear(0, 0, width, height);
    glyph_string_draw(10.0, 10.0);
+   eglutPostRedisplay();
 }
 
 
-- 
2.5.1