From 462a202427cbc2d590d8bfbe21ebae15ab258c8a Mon Sep 17 00:00:00 2001 From: Matthew Waters Date: Fri, 28 Nov 2014 11:56:10 +1100 Subject: [PATCH] gl: add compat definition for GLuint64 for android ../../../../gst-libs/gst/gl/glprototypes/sync.h:41:23: error: unknown type name 'GLuint64' GLuint64 timeout)) --- gst-libs/gst/gl/glprototypes/gstgl_compat.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gst-libs/gst/gl/glprototypes/gstgl_compat.h b/gst-libs/gst/gl/glprototypes/gstgl_compat.h index 976657364a..00d6944a66 100644 --- a/gst-libs/gst/gl/glprototypes/gstgl_compat.h +++ b/gst-libs/gst/gl/glprototypes/gstgl_compat.h @@ -39,6 +39,9 @@ typedef ptrdiff_t GLintptr; #if !GST_GL_HAVE_GLSYNC typedef gpointer GLsync; #endif +#ifndef GLuint64 +typedef guint64 GLuint64; +#endif #if !defined(GST_GL_DEBUG_PROC) #if defined(GLDEBUGPROC)