diff options
author | Matt Turner <mattst88@gmail.com> | 2014-04-01 16:42:36 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2014-04-30 11:41:29 -0700 |
commit | 1e50bc9ee170b6a4c212c4fd8e019beb43a99603 (patch) | |
tree | 4ed6f9489f48a45ec72e362d5f4749a8c7a3f2b4 /src/mesa/drivers/dri/i965/brw_fs.h | |
parent | 475f5ff64d7f64a9df2d7aabc772487bf24d1dd5 (diff) | |
download | external_mesa3d-1e50bc9ee170b6a4c212c4fd8e019beb43a99603.zip external_mesa3d-1e50bc9ee170b6a4c212c4fd8e019beb43a99603.tar.gz external_mesa3d-1e50bc9ee170b6a4c212c4fd8e019beb43a99603.tar.bz2 |
i965/fs: Remove 'mul_arg' from try_emit_mad().
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.h b/src/mesa/drivers/dri/i965/brw_fs.h index 2a1a81d..24d995b 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.h +++ b/src/mesa/drivers/dri/i965/brw_fs.h @@ -422,7 +422,7 @@ public: void emit_minmax(uint32_t conditionalmod, const fs_reg &dst, const fs_reg &src0, const fs_reg &src1); bool try_emit_saturate(ir_expression *ir); - bool try_emit_mad(ir_expression *ir, int mul_arg); + bool try_emit_mad(ir_expression *ir); void try_replace_with_sel(); bool opt_peephole_sel(); bool opt_peephole_predicated_break(); |