summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorOliver McFadden <z3ro.geek@gmail.com>2007-05-08 18:47:26 +0000
committerOliver McFadden <z3ro.geek@gmail.com>2007-05-08 18:47:26 +0000
commitfbeae4f70c177ce55fa137f5e0ca5747e914140a (patch)
tree72035f55f8bbc451be88a75c215c4f5481090055 /src
parent9301a6a32598a948b07bb5b33392e4ea88bde06a (diff)
r300: Moved the pipeline stages together for readability.
Diffstat (limited to 'src')
-rw-r--r--src/mesa/drivers/dri/r300/r300_render.c19
1 files changed, 9 insertions, 10 deletions
diff --git a/src/mesa/drivers/dri/r300/r300_render.c b/src/mesa/drivers/dri/r300/r300_render.c
index 62687071dc..e5c9c65124 100644
--- a/src/mesa/drivers/dri/r300/r300_render.c
+++ b/src/mesa/drivers/dri/r300/r300_render.c
@@ -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 */
};
-