Searched refs:ColorPremul (Results 1 - 4 of 4) sorted by relevance

/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...]
H A Dtest_interface.cc181 uint32_t FormatColor(PP_ImageDataFormat format, ColorPremul color) {
190 PP_Resource CreateImageData(PP_Size size, ColorPremul pixel_color, void** bmp) {
211 ColorPremul color) {
/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);
H A Dtest_fullscreen.cc24 const ColorPremul kSheerBlue = { 0x88, 0x00, 0x00, 0x88 };
25 const ColorPremul kOpaqueYellow = { 0xFF, 0xFF, 0xFF, 0x00 };
28 uint32_t FormatColor(PP_ImageDataFormat format, ColorPremul color) {
211 bool TestFullscreen::PaintPlugin(pp::Size size, ColorPremul color) {

Completed in 1460 milliseconds