blob: 5965782de726245f2c902f45a09bb22eeb430333 [file] [log] [blame]
Andrew Geissler595f6302022-01-24 19:11:47 +00001From 2b74e0e32235f6ab2e3e42d53dea985a7ba6227f Mon Sep 17 00:00:00 2001
2From: Damian Hobson-Garcia <dhobsong@igel.co.jp>
3Date: Wed, 16 Dec 2020 11:08:25 +0900
4Subject: [PATCH] texturator: Use correct GL extension header
5
6gl2ext.h is the extenstion header for OpenGL ES 2.0 and all later
7versions according to the Khronos documentation [1]. gl3ext.h is either
8an empty stub, or may not even exist on some platforms.
9
10[1]: https://www.khronos.org/registry/OpenGL/index_es.php#headers
11
12Upstream-Status: Submitted [https://gitlab.freedesktop.org/mesa/kmscube/-/merge_requests/26]
13Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
14---
15 texturator.c | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18diff --git a/texturator.c b/texturator.c
19index d9335d7..6d97856 100644
20--- a/texturator.c
21+++ b/texturator.c
22@@ -30,7 +30,7 @@
23 #include <math.h>
24
25 #include <GLES3/gl3.h>
26-#include <GLES3/gl3ext.h>
27+#include <GLES2/gl2ext.h>
28
29 #ifdef HAVE_LIBPNG
30 #include <png.h>
31--
322.33.1
33