mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 13:28:06 +02:00
mesa: Recent versions of MSVC define the single precision functions already.
This commit is contained in:
parent
2322404b55
commit
8881b0fe43
1 changed files with 2 additions and 1 deletions
|
|
@ -121,7 +121,8 @@ typedef union { GLfloat f; GLint i; } fi_type;
|
|||
*/
|
||||
/*@{*/
|
||||
#if (_XOPEN_SOURCE < 600) && !defined(_ISOC99_SOURCE) \
|
||||
&& (!defined(__STDC_VERSION__) || (__STDC_VERSION__ < 199901L))
|
||||
&& (!defined(__STDC_VERSION__) || (__STDC_VERSION__ < 199901L)) \
|
||||
&& (!defined(_MSC_VER) || (_MSC_VER < 1400))
|
||||
#define acosf(f) ((float) acos(f))
|
||||
#define asinf(f) ((float) asin(f))
|
||||
#define atan2f(x,y) ((float) atan2(x,y))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue