summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@tungstengraphics.com>2008-01-24 19:37:37 +0900
committerJosé Fonseca <jrfonseca@tungstengraphics.com>2008-01-26 10:32:59 +0900
commit2bca9f6457d8f766ef12891657fc2d10ea72ef54 (patch)
treed78e40fa3e4d7ad497712751c43b858f6b89c540 /src
parentf3aa4de034b0d791ce2e38e8aeb3b3abdb4e3b50 (diff)
gallium: Complete integer types.
Diffstat (limited to 'src')
-rw-r--r--src/mesa/pipe/p_compiler.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/pipe/p_compiler.h b/src/mesa/pipe/p_compiler.h
index ab9609deab..e939d9cd9b 100644
--- a/src/mesa/pipe/p_compiler.h
+++ b/src/mesa/pipe/p_compiler.h
@@ -52,6 +52,9 @@ typedef unsigned long long uint64;
#if defined(__MSC__)
+typedef char int8_t;
+typedef unsigned char uint8_t;
+typedef short int16_t;
typedef unsigned short uint16_t;
typedef long int32_t;
typedef unsigned long uint32_t;