Rename static variable in temporary tnl code
authorKeith Whitwell <keith@tungstengraphics.com>
Wed, 20 Jun 2007 22:04:00 +0000 (23:04 +0100)
committerKeith Whitwell <keith@tungstengraphics.com>
Wed, 20 Jun 2007 22:17:12 +0000 (23:17 +0100)
src/mesa/state_tracker/st_draw.c

index 24abee1..a424d1d 100644 (file)
@@ -74,7 +74,7 @@ const struct tnl_pipeline_stage st_draw = {
    draw
 };
 
-static const struct tnl_pipeline_stage *intel_pipeline[] = {
+static const struct tnl_pipeline_stage *st_pipeline[] = {
    &_tnl_vertex_transform_stage,
    &_tnl_vertex_cull_stage,
    &_tnl_normal_transform_stage,
@@ -96,7 +96,7 @@ void st_init_draw( struct st_context *st )
    GLcontext *ctx = st->ctx;
 
    _tnl_destroy_pipeline( ctx );
-   _tnl_install_pipeline( ctx, intel_pipeline );
+   _tnl_install_pipeline( ctx, st_pipeline );
 }