summaryrefslogtreecommitdiffstats
path: root/recipes-graphics/userland/files/0014-GLES2-gl2ext.h-Define-GL_R8_EXT-and-GL_RG8_EXT.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-graphics/userland/files/0014-GLES2-gl2ext.h-Define-GL_R8_EXT-and-GL_RG8_EXT.patch')
-rw-r--r--recipes-graphics/userland/files/0014-GLES2-gl2ext.h-Define-GL_R8_EXT-and-GL_RG8_EXT.patch35
1 files changed, 35 insertions, 0 deletions
diff --git a/recipes-graphics/userland/files/0014-GLES2-gl2ext.h-Define-GL_R8_EXT-and-GL_RG8_EXT.patch b/recipes-graphics/userland/files/0014-GLES2-gl2ext.h-Define-GL_R8_EXT-and-GL_RG8_EXT.patch
new file mode 100644
index 0000000..3da4a48
--- /dev/null
+++ b/recipes-graphics/userland/files/0014-GLES2-gl2ext.h-Define-GL_R8_EXT-and-GL_RG8_EXT.patch
@@ -0,0 +1,35 @@
1From 6e8562b45a2e14490da2ca258c9ce3d7bc8375f3 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 10 May 2017 06:39:34 +0000
4Subject: [PATCH 14/16] GLES2/gl2ext.h: Define GL_R8_EXT and GL_RG8_EXT
5
6weston code uses these defines
7Upstream-Status: Pending
8
9Signed-off-by: Khem Raj <raj.khem@gmail.com>
10---
11 interface/khronos/include/GLES2/gl2ext.h | 8 ++++++++
12 1 file changed, 8 insertions(+)
13
14diff --git a/interface/khronos/include/GLES2/gl2ext.h b/interface/khronos/include/GLES2/gl2ext.h
15index 4eacf7f..b1acc9f 100644
16--- a/interface/khronos/include/GLES2/gl2ext.h
17+++ b/interface/khronos/include/GLES2/gl2ext.h
18@@ -327,6 +327,14 @@ typedef void* GLeglImageOES;
19 #define GL_RGBX_BRCM 0x80EE
20 #endif
21
22+#ifndef GL_EXT_texture_rg
23+#define GL_EXT_texture_rg 1
24+#define GL_RED_EXT 0x1903
25+#define GL_RG_EXT 0x8227
26+#define GL_R8_EXT 0x8229
27+#define GL_RG8_EXT 0x822B
28+#endif /* GL_EXT_texture_rg */
29+
30 /* GL_EXT_texture_type_2_10_10_10_REV */
31 #ifndef GL_EXT_texture_type_2_10_10_10_REV
32 #define GL_UNSIGNED_INT_2_10_10_10_REV_EXT 0x8368
33--
342.18.0
35