summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/i965/brw_fs.h
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2010-10-08 14:00:14 -0700
committerEric Anholt <eric@anholt.net>2010-10-11 12:08:13 -0700
commitc6dbf253d284f68b0d0e4a3c145583880855324b (patch)
tree76d4ca3432ac56bfddd71ad563bcb9981003bd96 /src/mesa/drivers/dri/i965/brw_fs.h
parent06fd639c519214b6ebcbf29127b6d9ed429f8641 (diff)
i965: Compute to MRF in the new FS backend.
This didn't produce a statistically significant performance difference in my demo (n=4) or nexuiz (n=3), but it still seems like a good idea and is recommended by the HW team.
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs.h')
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.h b/src/mesa/drivers/dri/i965/brw_fs.h
index 0d4c078fda..93cde7f5ed 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.h
+++ b/src/mesa/drivers/dri/i965/brw_fs.h
@@ -339,6 +339,7 @@ public:
void calculate_live_intervals();
bool propagate_constants();
bool register_coalesce();
+ bool compute_to_mrf();
bool dead_code_eliminate();
bool virtual_grf_interferes(int a, int b);
void generate_code();