mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 11:48:06 +02:00
mesa: Use fpclassify for GL_OES_query_matrix on OpenBSD and NetBSD.
Patch from Brad Smith <brad@comstyle.com> The attached patch allows the GL_OES_query_matrix function to use the systems fpclassify() for OpenBSD and NetBSD.
This commit is contained in:
parent
0d68d01347
commit
2f0b01826d
1 changed files with 2 additions and 1 deletions
|
|
@ -71,7 +71,8 @@ fpclassify(double x)
|
|||
}
|
||||
|
||||
#elif defined(__APPLE__) || defined(__CYGWIN__) || defined(__FreeBSD__) || \
|
||||
defined(__DragonFly__) || (defined(__sun) && defined(__C99FEATURES__))
|
||||
defined(__OpenBSD__) || defined(__NetBSD__) || defined(__DragonFly__) || \
|
||||
(defined(__sun) && defined(__C99FEATURES__))
|
||||
|
||||
/* fpclassify is available. */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue