mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 02:10:11 +01:00
defined FLT_MIN if undefined
This commit is contained in:
parent
9560f05def
commit
075398b879
1 changed files with 6 additions and 1 deletions
|
|
@ -1,4 +1,4 @@
|
|||
/* $Id: light.c,v 1.11 2000/01/13 00:29:02 brianp Exp $ */
|
||||
/* $Id: light.c,v 1.12 2000/01/31 23:33:53 brianp Exp $ */
|
||||
|
||||
/*
|
||||
* Mesa 3-D graphics library
|
||||
|
|
@ -43,6 +43,11 @@
|
|||
#endif
|
||||
|
||||
|
||||
/* XXX this is a bit of a hack needed for compilation within XFree86 */
|
||||
#ifndef FLT_MIN
|
||||
#define FLT_MIN 1e-37
|
||||
#endif
|
||||
|
||||
|
||||
void
|
||||
_mesa_ShadeModel( GLenum mode )
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue