diff options
author | Jonathan White <[email protected]> | 2008-06-05 15:07:03 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-06-05 15:07:03 -0600 |
commit | fe1a2d1fffe69018e30158ee21ed9842384fd233 (patch) | |
tree | d8a401f3743411adfc14438f1f500fd65b4a737c /src/gallium/include | |
parent | b11aad2abe167716b7ff1262f5872d4d9dbb5b9c (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')
-rw-r--r-- | src/gallium/include/pipe/p_compiler.h | 2 |
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 b14260dd901..521ef2d189b 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; |