OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:c_rgba_data
(Results
1 - 1
of
1
) sorted by null
/external/chromium_org/chrome/browser/extensions/api/notifications/
notifications_api.cc
92
const char*
c_rgba_data
= rgba_data->data();
local
95
// |
c_rgba_data
| is RGBA, pixels is ARGB.
98
((
c_rgba_data
[rgba_index + 3] & 0xFF) << 24) |
99
((
c_rgba_data
[rgba_index + 0] & 0xFF) << 16) |
100
((
c_rgba_data
[rgba_index + 1] & 0xFF) << 8) |
101
((
c_rgba_data
[rgba_index + 2] & 0xFF) << 0));
Completed in 1275 milliseconds