fix comments for U8CPU and S16CPU

http://code.google.com/p/skia/issues/detail?id=113



git-svn-id: http://skia.googlecode.com/svn/trunk@723 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
reed@google.com 2011-01-25 14:55:42 +00:00
parent 596189a049
commit 37a3133d20

View File

@ -116,25 +116,40 @@ struct SkCompileAssert {
///////////////////////////////////////////////////////////////////////
/** Fast type for signed 8 bits. Use for parameter passing and local variables, not for storage
*/
typedef int S8CPU;
/** Fast type for unsigned 8 bits. Use for parameter passing and local variables, not for storage
*/
typedef int S16CPU;
/** Fast type for signed 16 bits. Use for parameter passing and local variables, not for storage
*/
typedef unsigned U8CPU;
/** Fast type for unsigned 16 bits. Use for parameter passing and local variables, not for storage
*/
typedef unsigned U16CPU;
/**
* Fast type for signed 8 bits. Use for parameter passing and local variables,
* not for storage.
*/
typedef int S8CPU;
/** Meant to be faster than bool (doesn't promise to be 0 or 1, just 0 or non-zero
*/
typedef int SkBool;
/** Meant to be a small version of bool, for storage purposes. Will be 0 or 1
*/
typedef uint8_t SkBool8;
/**
* Fast type for unsigned 8 bits. Use for parameter passing and local
* variables, not for storage
*/
typedef unsigned U8CPU;
/**
* Fast type for signed 16 bits. Use for parameter passing and local variables,
* not for storage
*/
typedef int S16CPU;
/**
* Fast type for unsigned 16 bits. Use for parameter passing and local
* variables, not for storage
*/
typedef unsigned U16CPU;
/**
* Meant to be faster than bool (doesn't promise to be 0 or 1,
* just 0 or non-zero
*/
typedef int SkBool;
/**
* Meant to be a small version of bool, for storage purposes. Will be 0 or 1
*/
typedef uint8_t SkBool8;
#ifdef SK_DEBUG
int8_t SkToS8(long);