Browse Source

defined FLT_MIN if undefined

tags/mesa_3_3
Brian Paul 25 years ago
parent
commit
075398b879
1 changed files with 6 additions and 1 deletions
  1. 6
    1
      src/mesa/main/light.c

+ 6
- 1
src/mesa/main/light.c View File

@@ -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…
Cancel
Save