NV fp: Add tracking for NV_fragment_program_option

This commit is contained in:
Ian Romanick
2009-08-31 16:43:39 -07:00
parent 935e4c56e5
commit efff7aa980
2 changed files with 2 additions and 0 deletions

View File

@@ -162,6 +162,7 @@ static const struct {
{ ON, "GL_MESA_window_pos", F(ARB_window_pos) }, { ON, "GL_MESA_window_pos", F(ARB_window_pos) },
{ OFF, "GL_NV_blend_square", F(NV_blend_square) }, { OFF, "GL_NV_blend_square", F(NV_blend_square) },
{ OFF, "GL_NV_fragment_program", F(NV_fragment_program) }, { OFF, "GL_NV_fragment_program", F(NV_fragment_program) },
{ OFF, "GL_NV_fragment_program_option", F(NV_fragment_program_option) },
{ ON, "GL_NV_light_max_exponent", F(NV_light_max_exponent) }, { ON, "GL_NV_light_max_exponent", F(NV_light_max_exponent) },
{ OFF, "GL_NV_point_sprite", F(NV_point_sprite) }, { OFF, "GL_NV_point_sprite", F(NV_point_sprite) },
{ OFF, "GL_NV_texture_env_combine4", F(NV_texture_env_combine4) }, { OFF, "GL_NV_texture_env_combine4", F(NV_texture_env_combine4) },

View File

@@ -2553,6 +2553,7 @@ struct gl_extensions
GLboolean MESA_texture_signed_rgba; GLboolean MESA_texture_signed_rgba;
GLboolean NV_blend_square; GLboolean NV_blend_square;
GLboolean NV_fragment_program; GLboolean NV_fragment_program;
GLboolean NV_fragment_program_option;
GLboolean NV_light_max_exponent; GLboolean NV_light_max_exponent;
GLboolean NV_point_sprite; GLboolean NV_point_sprite;
GLboolean NV_texgen_reflection; GLboolean NV_texgen_reflection;