From 6fef5095b07de95969089be57bf365d8daac409e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wang=20Xin-yu=20=28=E7=8E=8B=E6=98=95=E5=AE=87=29?= Date: Fri, 29 Jan 2016 10:35:15 +0800 Subject: glprototypes: fix parameter type of glGenBuffers The number of buffers should be GLsizei instead of GLuint. https://bugzilla.gnome.org/show_bug.cgi?id=761272 --- gst-libs/gst/gl/glprototypes/base.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst-libs/gst/gl/glprototypes/base.h b/gst-libs/gst/gl/glprototypes/base.h index f0528b7b4..8394a3872 100644 --- a/gst-libs/gst/gl/glprototypes/base.h +++ b/gst-libs/gst/gl/glprototypes/base.h @@ -255,7 +255,7 @@ GST_GL_EXT_BEGIN (vbos, "ARB\0", "vertex_buffer_object\0") GST_GL_EXT_FUNCTION (void, GenBuffers, - (GLuint n, + (GLsizei n, GLuint *buffers)) GST_GL_EXT_FUNCTION (void, BindBuffer, (GLenum target, -- cgit v1.2.1