summaryrefslogtreecommitdiff
path: root/src/mesa/tnl/t_pipeline.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2002-10-16 17:57:51 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2002-10-16 17:57:51 +0000
commit8dfc5b9863f08a713177fd92847573e17febbac9 (patch)
treeea828725e04950d4d7416067493135f6731f9f2e /src/mesa/tnl/t_pipeline.c
parente32b9090541f0e8e44d10953017617621edb5635 (diff)
surround vertex program code with #if FEATURE_NV_vertex_program/#endif
Diffstat (limited to 'src/mesa/tnl/t_pipeline.c')
-rw-r--r--src/mesa/tnl/t_pipeline.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_pipeline.c b/src/mesa/tnl/t_pipeline.c
index d17719f6d7..d6121d70b6 100644
--- a/src/mesa/tnl/t_pipeline.c
+++ b/src/mesa/tnl/t_pipeline.c
@@ -1,4 +1,4 @@
-/* $Id: t_pipeline.c,v 1.22 2002/01/22 14:35:17 brianp Exp $ */
+/* $Id: t_pipeline.c,v 1.23 2002/10/16 17:57:52 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -203,7 +203,9 @@ const struct gl_pipeline_stage *_tnl_default_pipeline[] = {
&_tnl_texgen_stage,
&_tnl_texture_transform_stage,
&_tnl_point_attenuation_stage,
+#if FEATURE_NV_vertex_program
&_tnl_vertex_program_stage,
+#endif
&_tnl_render_stage,
0
};