r300: Moved the pipeline stages together for readability.
authorOliver McFadden <z3ro.geek@gmail.com>
Tue, 8 May 2007 18:47:26 +0000 (18:47 +0000)
committerOliver McFadden <z3ro.geek@gmail.com>
Tue, 8 May 2007 18:47:26 +0000 (18:47 +0000)
src/mesa/drivers/dri/r300/r300_render.c

index 62687071dc0964b0c05290f519a95904a3c5ed2f..e5c9c65124e9070e8a2203758b8f5a6ccab3c737 100644 (file)
@@ -401,15 +401,6 @@ static GLboolean r300_run_render(GLcontext *ctx,
        return r300_run_vb_render(ctx, stage);
 }
 
-const struct tnl_pipeline_stage _r300_render_stage = {
-       "r300 hw rasterize",
-       NULL,
-       NULL,
-       NULL,
-       NULL,
-       r300_run_render         /* run */
-};
-
 static GLboolean r300_run_tcl_render(GLcontext *ctx,
                                 struct tnl_pipeline_stage *stage)
 {
@@ -441,6 +432,15 @@ static GLboolean r300_run_tcl_render(GLcontext *ctx,
        return r300_run_vb_render(ctx, stage);
 }
 
+const struct tnl_pipeline_stage _r300_render_stage = {
+       "r300 hw rasterize",
+       NULL,
+       NULL,
+       NULL,
+       NULL,
+       r300_run_render         /* run */
+};
+
 const struct tnl_pipeline_stage _r300_tcl_stage = {
        "r300 tcl",
        NULL,
@@ -449,4 +449,3 @@ const struct tnl_pipeline_stage _r300_tcl_stage = {
        NULL,
        r300_run_tcl_render     /* run */
 };
-