mesa: set up gl_vert_result and gl_frag_attrib values for gl_ClipDistance.
[mesa.git] / src / glsl / ralloc.c
index 6a5eac6b9a34c5c5f575ab8565fc30c0e9cd6cf6..fb48a91c56472376088a43b4b036e4245fb2cf95 100644 (file)
 #include <string.h>
 #include <stdint.h>
 
+/* Android defines SIZE_MAX in limits.h, instead of the standard stdint.h */
+#ifdef ANDROID
+#include <limits.h>
+#endif
+
 #include "ralloc.h"
 
 #ifdef __GNUC__