diff options
author | Matt Turner <[email protected]> | 2015-04-01 18:25:02 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2015-04-06 10:13:22 -0700 |
commit | d131630c0825f199768965c504b6fa1e593d03d5 (patch) | |
tree | 728645769427da4d230762b089d2dd5fb1736b89 /src/mesa/drivers/dri | |
parent | c8d65dd7138ba5683be16e692882e41d6dae7bf8 (diff) |
nir: Remove fsin_reduced/fcos_reduced.
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs_nir.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_nir.cpp b/src/mesa/drivers/dri/i965/brw_fs_nir.cpp index e9692aa5c17..a874337bb6b 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_nir.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_nir.cpp @@ -895,13 +895,11 @@ fs_visitor::nir_emit_alu(nir_alu_instr *instr) unreachable("not reached: should be handled by ir_explog_to_explog2"); case nir_op_fsin: - case nir_op_fsin_reduced: inst = emit_math(SHADER_OPCODE_SIN, result, op[0]); inst->saturate = instr->dest.saturate; break; case nir_op_fcos: - case nir_op_fcos_reduced: inst = emit_math(SHADER_OPCODE_COS, result, op[0]); inst->saturate = instr->dest.saturate; break; |