Searched defs:RGBA32 (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/
H A DColor.h64 typedef unsigned RGBA32; // RGBA quadruplet typedef in namespace:WebCore
66 RGBA32 makeRGB(int r, int g, int b);
67 RGBA32 makeRGBA(int r, int g, int b, int a);
69 RGBA32 colorWithOverrideAlpha(RGBA32 color, float overrideAlpha);
70 RGBA32 makeRGBA32FromFloats(float r, float g, float b, float a);
71 RGBA32 makeRGBAFromHSLA(double h, double s, double l, double a);
72 RGBA32 makeRGBAFromCMYKA(float c, float m, float y, float k, float a);
76 inline int redChannel(RGBA32 color) { return (color >> 16) & 0xFF; }
77 inline int greenChannel(RGBA32 colo
[all...]

Completed in 507 milliseconds