Searched defs:ColorPremul (Results 1 - 2 of 2) sorted by path

/external/chromium_org/ppapi/native_client/tests/ppapi_test_lib/
H A Dtest_interface.h200 struct ColorPremul { uint32_t A, R, G, B; }; // Use premultipled Alpha. struct
201 const ColorPremul kSheerRed = { 0x88, 0x88, 0x00, 0x00 };
202 const ColorPremul kSheerBlue = { 0x88, 0x00, 0x00, 0x88 };
203 const ColorPremul kSheerGray = { 0x77, 0x55, 0x55, 0x55 };
204 const ColorPremul kOpaqueGreen = { 0xFF, 0x00, 0xFF, 0x00 };
205 const ColorPremul kOpaqueBlack = { 0xFF, 0x00, 0x00, 0x00 };
206 const ColorPremul kOpaqueWhite = { 0xFF, 0xFF, 0xFF, 0xFF };
207 const ColorPremul kOpaqueYellow = { 0xFF, 0xFF, 0xFF, 0x00 };
211 uint32_t FormatColor(PP_ImageDataFormat format, ColorPremul color);
215 PP_Resource CreateImageData(PP_Size size, ColorPremul pixel_colo
[all...]
/external/chromium_org/ppapi/tests/
H A Dtest_fullscreen.h21 struct ColorPremul { uint32_t A, R, G, B; }; // Use premultipled Alpha. struct
44 bool PaintPlugin(pp::Size size, ColorPremul color);

Completed in 1557 milliseconds