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

/inkscape/src/display/
H A Dnr-filter-component-transfer.cpp61 : _shift(color * 8)
62 , _mask(0xff << _shift)
65 guint32 _shift; member in struct:Inkscape::Filters::ComponentTransfer
79 guint32 component = (in & _mask) >> _shift;
84 return (in & ~_mask) | (component << _shift);
100 guint32 component = (in & _mask) >> _shift;
104 return (in & ~_mask) | ((guint32)component << _shift);
117 gint32 component = (in & _mask) >> _shift;
122 return (in & ~_mask) | (component << _shift);
137 double component = (in & _mask) >> _shift;
[all...]

Completed in 13 milliseconds