glsl/mesa: fixes for MSVC
Signed-off-by: Brian Paul <brianp@vmware.com>
This commit is contained in:

committed by
Brian Paul

parent
f301932dba
commit
653ddaab26
@@ -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, ...)
|
||||
|
@@ -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
|
||||
/*@}*/
|
||||
|
||||
|
Reference in New Issue
Block a user