glsl/mesa: fixes for MSVC

Signed-off-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
Aras Pranckevicius
2010-08-25 10:07:14 +03:00
committed by Brian Paul
parent f301932dba
commit 653ddaab26
2 changed files with 2 additions and 0 deletions

View File

@@ -25,6 +25,7 @@
#include <string.h>
#include <ctype.h>
#include "glcpp.h"
#include "main/core.h" /* for isblank() on MSVC */
void
glcpp_error (YYLTYPE *locp, glcpp_parser_t *parser, const char *fmt, ...)

View File

@@ -148,6 +148,7 @@ static INLINE float truncf(float x) { return x < 0.0f ? ceilf(x) : floorf(x); }
static INLINE float exp2f(float x) { return powf(2.0f, x); }
static INLINE float log2f(float x) { return logf(x) * 1.442695041f; }
static INLINE int isblank(int ch) { return ch == ' ' || ch == '\t'; }
#define strtoll(p, e, b) _strtoi64(p, e, b)
#endif
/*@}*/