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

/inkscape/src/
H A Dcolor-rgba.h53 * @param intcolor rgba32 "unsigned int representation (0xRRGGBBAA)
55 ColorRGBA(guint32 intcolor) argument
57 _c[0] = ((intcolor & 0xff000000) >> 24) / 255.0;
58 _c[1] = ((intcolor & 0x00ff0000) >> 16) / 255.0;
59 _c[2] = ((intcolor & 0x0000ff00) >> 8) / 255.0;
60 _c[3] = ((intcolor & 0x000000ff) >> 0) / 255.0;

Completed in 21 milliseconds