summaryrefslogtreecommitdiff
path: root/src/gallium/include/pipe/p_compiler.h
diff options
context:
space:
mode:
authorJonathan White <jwhite@tungstengraphics.com>2008-06-05 15:07:03 -0600
committerBrian Paul <brian.paul@tungstengraphics.com>2008-06-05 15:07:03 -0600
commitfe1a2d1fffe69018e30158ee21ed9842384fd233 (patch)
treed8a401f3743411adfc14438f1f500fd65b4a737c /src/gallium/include/pipe/p_compiler.h
parentb11aad2abe167716b7ff1262f5872d4d9dbb5b9c (diff)
egl: assorted fixes for Windows
Note that int32_t is typedef'd both in p_compiler.h and eglplatform.h
Diffstat (limited to 'src/gallium/include/pipe/p_compiler.h')
-rw-r--r--src/gallium/include/pipe/p_compiler.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/include/pipe/p_compiler.h b/src/gallium/include/pipe/p_compiler.h
index b14260dd90..521ef2d189 100644
--- a/src/gallium/include/pipe/p_compiler.h
+++ b/src/gallium/include/pipe/p_compiler.h
@@ -58,7 +58,9 @@ typedef __int8 int8_t;
typedef unsigned __int8 uint8_t;
typedef __int16 int16_t;
typedef unsigned __int16 uint16_t;
+#ifndef __eglplatform_h_
typedef __int32 int32_t;
+#endif
typedef unsigned __int32 uint32_t;
typedef __int64 int64_t;
typedef unsigned __int64 uint64_t;