Searched refs:ColorPremul (Results 1 – 4 of 4) sorted by relevance
/external/chromium_org/ppapi/native_client/tests/ppapi_test_lib/ |
D | test_interface.h | 200 struct ColorPremul { uint32_t A, R, G, B; }; // Use premultipled Alpha. argument 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_color, void** bmp); [all …]
|
D | test_interface.cc | 181 uint32_t FormatColor(PP_ImageDataFormat format, ColorPremul color) { in FormatColor() 190 PP_Resource CreateImageData(PP_Size size, ColorPremul pixel_color, void** bmp) { in CreateImageData() 211 ColorPremul color) { in IsImageRectOnScreen()
|
/external/chromium_org/ppapi/tests/ |
D | test_fullscreen.h | 21 struct ColorPremul { uint32_t A, R, G, B; }; // Use premultipled Alpha. argument 44 bool PaintPlugin(pp::Size size, ColorPremul color);
|
D | test_fullscreen.cc | 24 const ColorPremul kSheerBlue = { 0x88, 0x00, 0x00, 0x88 }; 25 const ColorPremul kOpaqueYellow = { 0xFF, 0xFF, 0xFF, 0x00 }; 28 uint32_t FormatColor(PP_ImageDataFormat format, ColorPremul color) { in FormatColor() 211 bool TestFullscreen::PaintPlugin(pp::Size size, ColorPremul color) { in PaintPlugin()
|