From 4e0e5621781cd9bc5790d277e2457132989b81ba Mon Sep 17 00:00:00 2001 From: Crayon2000 Date: Mon, 27 Sep 2010 03:20:08 +0000 Subject: [PATCH] [CHG] Added some missing comments --- GRRLIB/GRRLIB/grrlib.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/GRRLIB/GRRLIB/grrlib.h b/GRRLIB/GRRLIB/grrlib.h index a4d513d..74d5748 100644 --- a/GRRLIB/GRRLIB/grrlib.h +++ b/GRRLIB/GRRLIB/grrlib.h @@ -55,7 +55,7 @@ THE SOFTWARE. //============================================================================== // Extra standard declarations //============================================================================== -typedef unsigned int uint; +typedef unsigned int uint;/**< The uint keyword signifies an integral type. */ //============================================================================== // Primitive colour macros @@ -67,6 +67,10 @@ typedef unsigned int uint; /** * Build an RGB pixel from components. + * @param r Red component. + * @param g Green component. + * @param b Blue component. + * @param a Alpha component. */ #define RGBA(r,g,b,a) ( (u32)( ( ((u32)(r)) <<24) | \ ((((u32)(g)) &0xFF) <<16) | \