GNOME Bugzilla – Bug 721903
Add missing glScalef declaration to prototypes
Last modified: 2014-01-10 08:59:44 UTC
Created attachment 265891 [details] [review] add Scalef declare to glprototypes I'm not sure this is correct way to modify glprototypes , gl_vtable->Scalef is undefined but Rotatef/Translatef is there. this misc patch just add Scalef: 0001-add-missed-glScalef-declare.patch From 0e1e1a6bf86b301ebaa0d1595f0784fa2cbe8033 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?"Wang=20Xin-yu=20(=E7=8E=8B=E6=98=95=E5=AE=87)"?= <comicfans44@gmail.com> Date: Fri, 10 Jan 2014 02:50:14 +0800 Subject: [PATCH] add missed glScalef declare --- gst-libs/gst/gl/glprototypes/opengl.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gst-libs/gst/gl/glprototypes/opengl.h b/gst-libs/gst/gl/glprototypes/opengl.h index 10d93fa..5a70f1e 100644 --- a/gst-libs/gst/gl/glprototypes/opengl.h +++ b/gst-libs/gst/gl/glprototypes/opengl.h @@ -154,6 +154,8 @@ GST_GL_EXT_FUNCTION (void, Rotatef, (GLfloat angle, GLfloat x, GLfloat y, GLfloat z)) GST_GL_EXT_FUNCTION (void, Translatef, (GLfloat x, GLfloat y, GLfloat z)) +GST_GL_EXT_FUNCTION (void, Scalef, + (GLfloat x, GLfloat y, GLfloat z)) GST_GL_EXT_FUNCTION (void, Lightfv, (GLenum light, GLenum pname, const GLfloat *params)) GST_GL_EXT_FUNCTION (void, ColorMaterial, -- 1.7.9.5
commit be01f2e28064228947b8f49715f69b7f34a62c3b Author: Wang Xin-yu (王昕宇) <comicfans44@gmail.com> Date: Fri Jan 10 02:50:14 2014 +0800 glprototypes: Add missing glScalef declare https://bugzilla.gnome.org/show_bug.cgi?id=721903