swr: [rasterizer] Include cmath for std::isnan and std::isinf.
authorVinson Lee <vlee@freedesktop.org>
Mon, 9 May 2016 23:02:12 +0000 (16:02 -0700)
committerVinson Lee <vlee@freedesktop.org>
Wed, 11 May 2016 00:11:05 +0000 (17:11 -0700)
commit8d639138c712c5bbe0b9ea8adbc810b23a2e8d1b
tree49dc6ec905632fc0ba5aabb12068eaefa108de98
parenta5660bf1f879ba69a750c2ef3a90efb14e037625
swr: [rasterizer] Include cmath for std::isnan and std::isinf.

This patch fixes this build error.

  CXX      rasterizer/memory/libswrAVX_la-ClearTile.lo
In file included from rasterizer/memory/ClearTile.cpp:34:0:
./rasterizer/memory/Convert.h: In function ‘uint16_t Convert32To16Float(float)’:
./rasterizer/memory/Convert.h:170:9: error: ‘__builtin_isnan’ is not a member of ‘std’
     if (std::isnan(val))
         ^
./rasterizer/memory/Convert.h:170:9: note: suggested alternative:
<built-in>: note:   ‘__builtin_isnan’
./rasterizer/memory/Convert.h:176:14: error: ‘__builtin_isinf_sign’ is not a member of ‘std’
     else if (std::isinf(val))
              ^
./rasterizer/memory/Convert.h:176:14: note: suggested alternative:
<built-in>: note:   ‘__builtin_isinf_sign’

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=95180
Signed-off-by: Vinson Lee <vlee@freedesktop.org>
Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
Reviewed-by: Tim Rowley <timothy.o.rowley@intel.com>
src/gallium/drivers/swr/rasterizer/memory/Convert.h