vc4: drop dead qir_POW() helper

Dead code since 226bd92945 ("vc4: Use NIR lowering for sRGB decode.")

Signed-off-by: Eric Engestrom <eric@igalia.com>
Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18419>
This commit is contained in:
Eric Engestrom 2022-09-05 14:49:52 +01:00 committed by Marge Bot
parent 898ce84707
commit 27ca22f3d6

View file

@ -768,14 +768,6 @@ qir_PACK_8888_F(struct vc4_compile *c, struct qreg val)
return dest;
}
static inline struct qreg
qir_POW(struct vc4_compile *c, struct qreg x, struct qreg y)
{
return qir_EXP2(c, qir_FMUL(c,
y,
qir_LOG2(c, x)));
}
static inline void
qir_VPM_WRITE(struct vc4_compile *c, struct qreg val)
{