[Mesa-dev] [PATCH 5/9] tgsi: implement micro_fma() in tgsi exec machine

Maxence Le Doré maxence.ledore at gmail.com
Tue Jan 7 09:46:18 PST 2014


Indeed, this patch compiles on linux but may break complilation at
least on MSVC version < 1400.
I'm planing to install visual studio 2005 on a ms xp or seven virtual
machine to check the behavior when compiling in microsoft windows
environment.

2014/1/6 Erik Faye-Lund <kusmabite at gmail.com>:
> 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