diff options
author | Jussi Kukkonen <jussi.kukkonen@intel.com> | 2015-07-09 10:52:44 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-12 22:55:39 +0100 |
commit | 409490147b0902f85631095d30d4d2e58a62e436 (patch) | |
tree | 61b1957186627f7bb6d686b7831dcd331226a28b /meta/recipes-graphics | |
parent | 383e48e9ee5b6d1662ae8dd3ee04f1d5f7a1a73c (diff) | |
download | poky-409490147b0902f85631095d30d4d2e58a62e436.tar.gz |
cogl-1.0: Upgrade 1.18.2 -> 1.20.0
* Backport patch that fixes build with GLES2
(From OE-Core rev: 9d38fb232deaa2e7e46d3c442d1598e13bba9c0a)
Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics')
3 files changed, 49 insertions, 6 deletions
diff --git a/meta/recipes-graphics/cogl/cogl-1.0/cogl-framebuffer-gl-Work-again-on-GLESv2.patch b/meta/recipes-graphics/cogl/cogl-1.0/cogl-framebuffer-gl-Work-again-on-GLESv2.patch new file mode 100644 index 0000000000..8e839579fe --- /dev/null +++ b/meta/recipes-graphics/cogl/cogl-1.0/cogl-framebuffer-gl-Work-again-on-GLESv2.patch | |||
@@ -0,0 +1,41 @@ | |||
1 | Upstream-Status: Backport | ||
2 | Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com> | ||
3 | |||
4 | |||
5 | |||
6 | From f8cce5f6cb2958a4074f87cd345bfe46e0dda6e1 Mon Sep 17 00:00:00 2001 | ||
7 | From: "Jasper St. Pierre" <jstpierre@mecheye.net> | ||
8 | Date: Mon, 20 Apr 2015 12:08:29 -0700 | ||
9 | Subject: cogl-framebuffer-gl: Work again on GLESv2 | ||
10 | |||
11 | |||
12 | diff --git a/cogl/driver/gl/cogl-framebuffer-gl.c b/cogl/driver/gl/cogl-framebuffer-gl.c | ||
13 | index 793b10b..609cfb3 100644 | ||
14 | --- a/cogl/driver/gl/cogl-framebuffer-gl.c | ||
15 | +++ b/cogl/driver/gl/cogl-framebuffer-gl.c | ||
16 | @@ -107,6 +107,12 @@ | ||
17 | #ifndef GL_PACK_INVERT_MESA | ||
18 | #define GL_PACK_INVERT_MESA 0x8758 | ||
19 | #endif | ||
20 | +#ifndef GL_BACK_LEFT | ||
21 | +#define GL_BACK_LEFT 0x0402 | ||
22 | +#endif | ||
23 | +#ifndef GL_BACK_RIGHT | ||
24 | +#define GL_BACK_RIGHT 0x0403 | ||
25 | +#endif | ||
26 | |||
27 | #ifndef GL_COLOR | ||
28 | #define GL_COLOR 0x1800 | ||
29 | @@ -245,6 +251,9 @@ _cogl_framebuffer_gl_flush_stereo_mode_state (CoglFramebuffer *framebuffer) | ||
30 | if (framebuffer->type == COGL_FRAMEBUFFER_TYPE_OFFSCREEN) | ||
31 | return; | ||
32 | |||
33 | + if (!ctx->glDrawBuffer) | ||
34 | + return; | ||
35 | + | ||
36 | /* The one-shot default draw buffer setting in _cogl_framebuffer_gl_bind | ||
37 | * must have already happened. If not it would override what we set here. */ | ||
38 | g_assert (ctx->was_bound_to_onscreen); | ||
39 | -- | ||
40 | cgit v0.10.2 | ||
41 | |||
diff --git a/meta/recipes-graphics/cogl/cogl-1.0_1.18.2.bb b/meta/recipes-graphics/cogl/cogl-1.0_1.18.2.bb deleted file mode 100644 index 6700efb66b..0000000000 --- a/meta/recipes-graphics/cogl/cogl-1.0_1.18.2.bb +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | require cogl-1.0.inc | ||
2 | |||
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=1b1a508d91d25ca607c83f92f3e31c84" | ||
4 | |||
5 | SRC_URI[archive.md5sum] = "952155d526d35f297737266408e842b5" | ||
6 | SRC_URI[archive.sha256sum] = "9278e519d5480eb0379efd48db024e8fdbf93f01dff48a7e756b85b508a863aa" | ||
diff --git a/meta/recipes-graphics/cogl/cogl-1.0_1.20.0.bb b/meta/recipes-graphics/cogl/cogl-1.0_1.20.0.bb new file mode 100644 index 0000000000..d20b814e8e --- /dev/null +++ b/meta/recipes-graphics/cogl/cogl-1.0_1.20.0.bb | |||
@@ -0,0 +1,8 @@ | |||
1 | require cogl-1.0.inc | ||
2 | |||
3 | SRC_URI += "file://cogl-framebuffer-gl-Work-again-on-GLESv2.patch" | ||
4 | |||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=1b1a508d91d25ca607c83f92f3e31c84" | ||
6 | SRC_URI[archive.md5sum] = "5b28897194d9ff76a574a9493d1f7ee0" | ||
7 | SRC_URI[archive.sha256sum] = "729e35495829e7d31fafa3358e47b743ba21a2b08ff9b6cd28fb74c0de91192b" | ||
8 | |||