From: José Fonseca Date: Fri, 17 Feb 2012 15:57:54 +0000 (+0000) Subject: llvmpipe: Add a negation test to lp_test_arit. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fc79c4fbd415883d3558cabadbd55a305182d3d2;p=mesa.git llvmpipe: Add a negation test to lp_test_arit. --- diff --git a/src/gallium/drivers/llvmpipe/lp_test_arit.c b/src/gallium/drivers/llvmpipe/lp_test_arit.c index 0b74dee176f..8b23baaa279 100644 --- a/src/gallium/drivers/llvmpipe/lp_test_arit.c +++ b/src/gallium/drivers/llvmpipe/lp_test_arit.c @@ -83,6 +83,12 @@ struct unary_test_t }; +static float negf(float x) +{ + return -x; +} + + const float exp2_values[] = { -60, -4, @@ -162,6 +168,7 @@ const float sincos_values[] = { */ static const struct unary_test_t unary_tests[] = { + {"neg", &lp_build_negate, &negf, exp2_values, Elements(exp2_values)}, {"exp2", &lp_build_exp2, &exp2f, exp2_values, Elements(exp2_values)}, {"log2", &lp_build_log2, &log2f, log2_values, Elements(log2_values)}, {"exp", &lp_build_exp, &expf, exp2_values, Elements(exp2_values)},