aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_fs.h
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2011-07-22 16:45:15 -0700
committerEric Anholt <[email protected]>2011-07-29 12:17:03 -0700
commita8b86459a1bb74cfdf0d63572a9fe194b2b5b53f (patch)
tree0f1ba8a1a1de73ccb611f1648e7a1966a71d9425 /src/mesa/drivers/dri/i965/brw_fs.h
parent6d8d6b41b85a18685351f3023a4cd41266ba9e68 (diff)
i965/fs: Optimize a * 1.0 -> a.
This appears in our instruction stream as a result of the brw_vs_constval.c handling.
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 2bf850e5dea..89d6cda7e4f 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.h
+++ b/src/mesa/drivers/dri/i965/brw_fs.h
@@ -485,6 +485,7 @@ public:
void setup_pull_constants();
void calculate_live_intervals();
bool propagate_constants();
+ bool opt_algebraic();
bool register_coalesce();
bool compute_to_mrf();
bool dead_code_eliminate();