[Mesa-dev] [PATCH 5/9] tgsi: implement micro_fma() in tgsi exec machine
Erik Faye-Lund
kusmabite at gmail.com
Mon Jan 6 08:58:23 PST 2014
On Sun, Jan 5, 2014 at 12:42 AM, Maxence Le Doré
<maxence.ledore at gmail.com> wrote:
> From: Maxence Le Doré <Maxence Le Doré>
Huh, user.email not configured properly?
> static void
> +micro_fma(union tgsi_exec_channel *dst,
> + const union tgsi_exec_channel *src0,
> + const union tgsi_exec_channel *src1,
> + const union tgsi_exec_channel *src2)
> +{
> + dst->f[0] = fmaf(src0->f[0],src1->f[0],src2->f[0]);
fmaf isn't portable enough, no?
More information about the mesa-dev
mailing list