From a1beb333d86a4114262e3613e0ed5da73f743715 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Fri, 20 Jul 2018 12:10:08 -0700 Subject: [PATCH] v3d: Drop unused vir_SAT() operation. We lower saturates in NIR. --- src/broadcom/compiler/nir_to_vir.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/broadcom/compiler/nir_to_vir.c b/src/broadcom/compiler/nir_to_vir.c index 426b41e2be8..5c7acdf72ab 100644 --- a/src/broadcom/compiler/nir_to_vir.c +++ b/src/broadcom/compiler/nir_to_vir.c @@ -244,14 +244,6 @@ ntq_get_alu_src(struct v3d_compile *c, nir_alu_instr *instr, return r; }; -static inline struct qreg -vir_SAT(struct v3d_compile *c, struct qreg val) -{ - return vir_FMAX(c, - vir_FMIN(c, val, vir_uniform_f(c, 1.0)), - vir_uniform_f(c, 0.0)); -} - static struct qreg ntq_minify(struct v3d_compile *c, struct qreg size, struct qreg level) { -- 2.30.2