From: Vladimir Dergachev Date: Thu, 16 Dec 2004 14:04:49 +0000 (+0000) Subject: The types uint32_t and uint8_t are not used in Mesa tree. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7771c92d3548cd0964f79af6b2c3e002b83935ab;p=mesa.git The types uint32_t and uint8_t are not used in Mesa tree. Put a couple of defines to use GL counterparts. --- diff --git a/src/mesa/drivers/dri/r300/r300_context.h b/src/mesa/drivers/dri/r300/r300_context.h index d80bcc689f5..be276592593 100644 --- a/src/mesa/drivers/dri/r300/r300_context.h +++ b/src/mesa/drivers/dri/r300/r300_context.h @@ -54,6 +54,9 @@ typedef struct r300_context *r300ContextPtr; #include "radeon_lock.h" #include "mm.h" +typedef GLuint uint32_t; +typedef GLubyte uint8_t; + static __inline__ uint32_t r300PackFloat32(float fl) {