From 8e36df6227a4b72929ba27e6af0fb9aa9b7632c7 Mon Sep 17 00:00:00 2001 From: nigels Date: Tue, 29 Jun 2010 18:08:17 +0000 Subject: [PATCH] Fix for ID: 2974730 - glPointParameterfv has wrong signature git-svn-id: https://glew.svn.sourceforge.net/svnroot/glew/trunk/glew@607 783a27ee-832a-0410-bc00-9f386506c6dd --- auto/core/GL_ARB_point_parameters | 9 +++++++++ auto/core/GL_EXT_point_parameters | 9 +++++++++ 2 files changed, 18 insertions(+) create mode 100644 auto/core/GL_ARB_point_parameters create mode 100644 auto/core/GL_EXT_point_parameters diff --git a/auto/core/GL_ARB_point_parameters b/auto/core/GL_ARB_point_parameters new file mode 100644 index 0000000..174ccb6 --- /dev/null +++ b/auto/core/GL_ARB_point_parameters @@ -0,0 +1,9 @@ +GL_ARB_point_parameters +http://www.opengl.org/registry/specs/ARB/point_parameters.txt +GL_ARB_point_parameters + GL_POINT_SIZE_MIN_ARB 0x8126 + GL_POINT_SIZE_MAX_ARB 0x8127 + GL_POINT_FADE_THRESHOLD_SIZE_ARB 0x8128 + GL_POINT_DISTANCE_ATTENUATION_ARB 0x8129 + void glPointParameterfARB (GLenum pname, GLfloat param) + void glPointParameterfvARB (GLenum pname, const GLfloat* params) diff --git a/auto/core/GL_EXT_point_parameters b/auto/core/GL_EXT_point_parameters new file mode 100644 index 0000000..fab73cc --- /dev/null +++ b/auto/core/GL_EXT_point_parameters @@ -0,0 +1,9 @@ +GL_EXT_point_parameters +http://www.opengl.org/registry/specs/EXT/point_parameters.txt +GL_EXT_point_parameters + GL_POINT_SIZE_MIN_EXT 0x8126 + GL_POINT_SIZE_MAX_EXT 0x8127 + GL_POINT_FADE_THRESHOLD_SIZE_EXT 0x8128 + GL_DISTANCE_ATTENUATION_EXT 0x8129 + void glPointParameterfEXT (GLenum pname, GLfloat param) + void glPointParameterfvEXT (GLenum pname, const GLfloat* params)