summaryrefslogtreecommitdiffstats
path: root/src/intel/compiler/brw_vec4.h
diff options
context:
space:
mode:
authorJason Ekstrand <[email protected]>2017-03-07 18:32:17 -0800
committerJason Ekstrand <[email protected]>2017-03-14 07:36:40 -0700
commitbab4610e9cbd7ae9687cceeb3b63ffb93809e973 (patch)
treea2a2e5bbbf624dc158ff1da2e3442a31709e266d /src/intel/compiler/brw_vec4.h
parent702d1af8ba7bd54e60e30d066f767e99f54eb6d6 (diff)
i965/vec4: Get rid of the type parameter from to/from_double
Reviewed-by: Topi Pohjolainen <[email protected]>
Diffstat (limited to 'src/intel/compiler/brw_vec4.h')
-rw-r--r--src/intel/compiler/brw_vec4.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/intel/compiler/brw_vec4.h b/src/intel/compiler/brw_vec4.h
index a84048d8c6a..d12405c22e1 100644
--- a/src/intel/compiler/brw_vec4.h
+++ b/src/intel/compiler/brw_vec4.h
@@ -321,10 +321,8 @@ public:
bool optimize_predicate(nir_alu_instr *instr, enum brw_predicate *predicate);
- void emit_conversion_from_double(dst_reg dst, src_reg src, bool saturate,
- brw_reg_type single_type);
- void emit_conversion_to_double(dst_reg dst, src_reg src, bool saturate,
- brw_reg_type single_type);
+ void emit_conversion_from_double(dst_reg dst, src_reg src, bool saturate);
+ void emit_conversion_to_double(dst_reg dst, src_reg src, bool saturate);
src_reg setup_imm_df(double v);