mirror of
https://github.com/nigels-com/glew.git
synced 2024-11-11 08:43:49 +00:00
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:
parent
1e5e590521
commit
30a00a5788
@ -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
|
||||
|
@ -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>
|
||||
|
@ -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;
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user