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

/haiku/src/apps/icon-o-matic/generic/support/
H A Dsupport_ui.cpp91 uint8* bitsHandle = bits; local
95 bitsHandle[0] = (uint8)min_c(255, color.blue * 1.2 + 40);
96 bitsHandle[1] = (uint8)min_c(255, color.green * 1.2 + 40);
97 bitsHandle[2] = (uint8)min_c(255, color.red * 1.2 + 40);
98 bitsHandle[3] = 180;
102 bitsHandle[0] = (uint8)(color.blue * 0.8);
103 bitsHandle[1] = (uint8)(color.green * 0.8);
104 bitsHandle[2] = (uint8)(color.red * 0.8);
105 bitsHandle[3] = 180;
108 bitsHandle[
[all...]
/haiku/src/apps/icon-o-matic/generic/gui/panel/color_picker/
H A DColorField.cpp462 uint8* bitsHandle = bits; local
466 set_bits(bitsHandle, (uint8)r, (uint8)g, (uint8)b);
467 bitsHandle += 4;
476 uint8* bitsHandle = bits; local
480 set_bits(bitsHandle, (uint8)r, (uint8)g, (uint8)b);
481 bitsHandle += 4;
490 uint8* bitsHandle = bits; local
494 set_bits(bitsHandle, (uint8)r, (uint8)g, (uint8)b);
495 bitsHandle += 4;
506 uint8* bitsHandle local
521 uint8* bitsHandle = bits; local
540 uint8* bitsHandle = bits; local
558 uint8* bitsHandle = bits; local
[all...]
/haiku/src/add-ons/translators/wonderbrush/
H A DCanvas.cpp163 uint8* bitsHandle = bits; local
165 if (!bitsHandle[3]) {
166 bitsHandle[0] = 0;
167 bitsHandle[1] = 0;
168 bitsHandle[2] = 0;
170 bitsHandle += 4;
/haiku/src/apps/launchbox/
H A DLaunchButton.cpp232 uint8* bitsHandle = bits; local
234 bitsHandle[3] = uint8(bitsHandle[3]
236 bitsHandle += 4;
/haiku/src/apps/icon-o-matic/generic/gui/
H A DIconButton.cpp485 uint8* bitsHandle = bits; local
487 if (bitsHandle[0] == 216
488 && bitsHandle[1] == 216
489 && bitsHandle[2] == 216) {
490 bitsHandle[3] = 0; // make this pixel completely transparent
492 bitsHandle += 4;
/haiku/src/kits/shared/
H A DIconButton.cpp600 uint8* bitsHandle = bits; local
602 if (bitsHandle[0] == 216
603 && bitsHandle[1] == 216
604 && bitsHandle[2] == 216) {
606 bitsHandle[3] = 0;
608 bitsHandle += 4;

Completed in 43 milliseconds