added NV_texture_expand_normal

git-svn-id: https://glew.svn.sourceforge.net/svnroot/glew/trunk/glew@33 783a27ee-832a-0410-bc00-9f386506c6dd
This commit is contained in:
ikits 2003-02-03 08:34:45 +00:00
parent 1e5e590521
commit 30a00a5788
5 changed files with 18 additions and 1 deletions

View File

@ -16,7 +16,7 @@
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
GLEW_TARGET ?= /usr
GLEW_VERSION = 1.0.3
GLEW_VERSION = 1.0.4
CC = \cc
LD = \ld

View File

@ -144,6 +144,7 @@ name="NV"><font size="+1"><b>NV</b></font></a>
<a href="http://oss.sgi.com/projects/ogl-sample/registry/NV/depth_clamp.txt">NV_depth_clamp</a><br>
<a href="http://developer.nvidia.com/docs/IO/3260/ATT/nv30specs.pdf">NV_element_array</a><br>
<a href="http://oss.sgi.com/projects/ogl-sample/registry/NV/evaluators.txt">NV_evaluators</a><br>
<a href="http://oss.sgi.com/projects/ogl-sample/registry/NV/texture_expand_normal.txt">NV_texture_expand_normal</a><br>
<a href="http://oss.sgi.com/projects/ogl-sample/registry/NV/fence.txt">NV_fence</a><br>
<a href="http://oss.sgi.com/projects/ogl-sample/registry/NV/fog_distance.txt">NV_fog_distance</a><br>
<a href="http://oss.sgi.com/projects/ogl-sample/registry/NV/float_buffer.txt">NV_float_buffer</a><br>

View File

@ -268,6 +268,7 @@ extern "C" {
#define GL_NV_texgen_reflection 1
#define GL_NV_texture_compression_vtc 1
#define GL_NV_texture_env_combine4 1
#define GL_NV_texture_expand_normal 1
#define GL_NV_texture_rectangle 1
#define GL_NV_texture_shader 1
#define GL_NV_texture_shader2 1
@ -4040,6 +4041,14 @@ extern GLEW_EXPORT PFNGLGETCOMBINERSTAGEPARAMETERFVNVPROC glGetCombinerStagePara
#endif /* GL_NV_texture_env_combine */
/* ------------------------ NV_texture_expand_normal ---------------------- */
#ifdef GL_NV_texture_expand_normal
#define GL_TEXTURE_UNSIGNED_REMAP_MODE_NV 0x888F
#endif /* GL_NV_texture_expand_normal */
/* ------------------------- NV_texture_rectangle ------------------------- */
#ifdef GL_NV_texture_rectangle
@ -4547,6 +4556,7 @@ struct GLEW
unsigned int NV_texgen_reflection : 1;
unsigned int NV_texture_compression_vtc : 1;
unsigned int NV_texture_env_combine4 : 1;
unsigned int NV_texture_expand_normal : 1;
unsigned int NV_texture_rectangle : 1;
unsigned int NV_texture_shader : 1;
unsigned int NV_texture_shader2 : 1;

View File

@ -3009,6 +3009,9 @@ static GLint _glewInit ()
#ifdef GL_NV_texture_env_combine4
glew.NV_texture_env_combine4 = glewGetExtension("GL_NV_texture_env_combine4");
#endif
#ifdef GL_NV_texture_expand_normal
glew.NV_texture_expand_normal = glewGetExtension("GL_NV_texture_expand_normal");
#endif
#ifdef GL_NV_texture_rectangle
glew.NV_texture_rectangle = glewGetExtension("GL_NV_texture_rectangle");
#endif

View File

@ -1973,6 +1973,9 @@ static void glewInfo ()
#ifdef GL_NV_texture_env_combine4
glewPrintExt("GL_NV_texture_env_combine4", glew.NV_texture_env_combine4);
#endif
#ifdef GL_NV_texture_expand_normal
glewPrintExt("GL_NV_texture_expand_normal", glew.NV_texture_expand_normal);
#endif
#ifdef GL_NV_texture_rectangle
glewPrintExt("GL_NV_texture_rectangle", glew.NV_texture_rectangle);
#endif