From c4193b81d79db7dd6055115049aca4044645af00 Mon Sep 17 00:00:00 2001 From: David Herrmann Date: Mon, 19 Aug 2013 23:29:53 +0200 Subject: gltex: fix GL_UNPACK_ROW_LENGTH(_EXT) update Khronos updated their GLES2 headers and broke backwards compatibility, hurray. Fix it for real now. Reported-by: Yichao Yu Signed-off-by: David Herrmann --- src/text_gltex.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/text_gltex.c b/src/text_gltex.c index e767096..9c0b06b 100644 --- a/src/text_gltex.c +++ b/src/text_gltex.c @@ -55,6 +55,11 @@ #define LOG_SUBSYSTEM "text_gltex" +/* thanks khronos for breaking backwards compatibility.. */ +#if !defined(GL_UNPACK_ROW_LENGTH) && defined(GL_UNPACK_ROW_LENGTH_EXT) +# define GL_UNPACK_ROW_LENGTH GL_UNPACK_ROW_LENGTH_EXT +#endif + struct atlas { struct shl_dlist list; -- cgit v1.2.3