Chromium Code Reviews| Index: ppapi/c/ppb_image_data.h |
| diff --git a/ppapi/c/ppb_image_data.h b/ppapi/c/ppb_image_data.h |
| index bc014d4e73cc7275249ae9a73da220d55511866d..7c782968b6d879598a4ef95265c56065be19b60b 100644 |
| --- a/ppapi/c/ppb_image_data.h |
| +++ b/ppapi/c/ppb_image_data.h |
| @@ -27,6 +27,10 @@ |
| /** |
| * PP_ImageDataFormat is an enumeration of the different types of |
| * image data formats. |
| + * The third part of each enumeration value describes the memory layout from |
|
brettw
2011/03/23 17:57:46
Can you put a blank line above this (with just a *
yzshen1
2011/03/23 18:22:40
Done. Thanks!
On 2011/03/23 17:57:46, brettw wrot
|
| + * the lowest address to the highest. For example, BGRA means the B component |
| + * is stored in the lowest address, no matter what endianness the platform is |
| + * using. |
| */ |
| typedef enum { |
| PP_IMAGEDATAFORMAT_BGRA_PREMUL, |
| @@ -170,4 +174,3 @@ struct PPB_ImageData { |
| */ |
| #endif /* PPAPI_C_PPB_IMAGE_DATA_H_ */ |
| - |