summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_fs.h
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2016-11-28 10:45:08 -0800
committerEmil Velikov <emil.l.velikov@gmail.com>2016-12-16 13:53:50 +0000
commita4f301816b7ed517a42cd338d7009d47caa52e1e (patch)
tree53f15b9dea34fc2891eb6c8736ff7f2cd4e86a59 /src/mesa/drivers/dri/i965/brw_fs.h
parentc682fdb77c1499fa424b943be1d242a499677144 (diff)
downloadexternal_mesa3d-a4f301816b7ed517a42cd338d7009d47caa52e1e.zip
external_mesa3d-a4f301816b7ed517a42cd338d7009d47caa52e1e.tar.gz
external_mesa3d-a4f301816b7ed517a42cd338d7009d47caa52e1e.tar.bz2
i965/fs: Rename opt_copy_propagate -> opt_copy_propagation.
Matches the vec4 backend, cmod propagation, and saturate propagation. Reviewed-by: Jason Ekstrand <jason@jlekstrand.net> (cherry picked from commit 6014da50ec41d1ad43fec94a625962ac3f2f10cb)
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs.h')
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.h b/src/mesa/drivers/dri/i965/brw_fs.h
index da01174..3a53768 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.h
+++ b/src/mesa/drivers/dri/i965/brw_fs.h
@@ -133,11 +133,11 @@ public:
bool opt_redundant_discard_jumps();
bool opt_cse();
bool opt_cse_local(bblock_t *block);
- bool opt_copy_propagate();
+ bool opt_copy_propagation();
bool try_copy_propagate(fs_inst *inst, int arg, acp_entry *entry);
bool try_constant_propagate(fs_inst *inst, acp_entry *entry);
- bool opt_copy_propagate_local(void *mem_ctx, bblock_t *block,
- exec_list *acp);
+ bool opt_copy_propagation_local(void *mem_ctx, bblock_t *block,
+ exec_list *acp);
bool opt_drop_redundant_mov_to_flags();
bool opt_register_renaming();
bool register_coalesce();