From: José Fonseca Date: Thu, 24 Jan 2008 10:37:37 +0000 (+0900) Subject: gallium: Complete integer types. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2bca9f6457d8f766ef12891657fc2d10ea72ef54;p=mesa.git gallium: Complete integer types. --- diff --git a/src/mesa/pipe/p_compiler.h b/src/mesa/pipe/p_compiler.h index ab9609deab0..e939d9cd9b9 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;