Searched refs:blue (Results 126 - 150 of 241) sorted by relevance

12345678910

/haiku/src/servers/app/drawing/Painter/bitmap_painter/
H A DDrawBitmapNoScale.h101 *d++ = (c.alpha << 24) | (c.red << 16) | (c.green << 8) | (c.blue);
117 | (c.green << 8) | (c.blue);
/haiku/src/libs/print/libprint/
H A DHalftoneView.cpp54 // blue
104 case 2: dst->blue = value;
108 dst->red = dst->green = dst->blue = value;
175 AddChild(new BStringView(r, "blue", kBlueLabel));
H A DValidRect.cpp48 return pixel->red == 0xff && pixel->green == 0xff && pixel->blue == 0xff;
/haiku/src/kits/interface/
H A DScreen.cpp110 BScreen::IndexForColor(uint8 red, uint8 green, uint8 blue, uint8 alpha) argument
113 return fScreen->IndexForColor(red, green, blue, alpha);
H A DPrivateScreen.cpp288 BPrivateScreen::IndexForColor(uint8 red, uint8 green, uint8 blue, uint8 alpha) argument
293 && blue == B_TRANSPARENT_COLOR.blue
297 uint16 index = ((red & 0xf8) << 7) | ((green & 0xf8) << 2) | (blue >> 3);
/haiku/src/apps/pulse/
H A DCPUButton.cpp67 fOffColor.red = fOffColor.green = fOffColor.blue = 184;
305 fOnColor.blue = (color & 0x0000ff00) >> 8;
/haiku/src/add-ons/accelerants/matrox/engine/
H A Dmga_bes.c596 ow->red.value, ow->green.value, ow->blue.value, ow->alpha.value));
598 ow->red.mask, ow->green.mask, ow->blue.mask, ow->alpha.mask));
745 DXIW(COLKEY0BLUE, (ow->blue.value & ow->blue.mask));
751 DXIW(COLMSK0BLUE, ow->blue.mask);
/haiku/src/add-ons/translators/tiff/
H A DTIFFTranslator.cpp755 uint16 blue[256]; local
760 blue[i] = map->color_list[i].blue * 256 + map->color_list[i].blue;
762 TIFFSetField(tif, TIFFTAG_COLORMAP, &red, &green, &blue);
/haiku/src/apps/icon-o-matic/generic/gui/panel/color_picker/
H A DColorField.cpp307 RGB_to_HSV(color.red / 255.0, color.green / 255.0, color.blue / 255.0,
318 (255.0 - color.blue) / 255.0 * height);
323 (255.0 - color.blue) / 255.0 * height);
H A DColorPickerView.cpp47 b((float)color.blue / 255.0),
377 b = (float)color.blue / 255;
403 color.blue = (uint8)round(b * 255.0);
/haiku/src/add-ons/media/media-add-ons/usb_webcam/addons/sonix/
H A DSonixCamDevice.h81 virtual status_t SetVideoParams(float brightness, float contrast, float hue, float red, float green, float blue);
/haiku/src/add-ons/translators/ico/
H A DICO.cpp183 return ((color.blue >> 3) << 11) | ((color.green >> 2) << 5) | (color.red >> 3);
343 outRowData[x].blue = (color >> 11) << 3;
350 outRowData[x].blue = line[x * 3 + 0];
439 xorRowData[x * 3 + 0] = color.blue;
/haiku/src/tests/add-ons/opengl/fake_renderer/
H A DFakeRenderer.cpp175 *p++ = fDrawColor.blue;
/haiku/src/tests/servers/app/drawing_debugger/
H A DDrawingDebugger.cpp74 result.blue = (system_time() >> 16) % 256;
/haiku/src/tests/servers/app/following/
H A Dmain.cpp32 color.blue = rand() / 256;
/haiku/src/preferences/time/
H A DTimeZoneListItem.cpp160 if (textColor.red + textColor.green + textColor.blue > 128 * 3)
/haiku/src/bin/
H A DWindowShade.cpp124 color.blue = b;
/haiku/headers/os/interface/
H A DColorControl.h138 int32 c = (color.red << 24) + (color.green << 16) + (color.blue << 8);
/haiku/src/tests/kits/game/ParticlesII/
H A DparticlesII.cpp203 c1.blue = j*4;
210 c1.blue = 0;
217 c1.blue = 0;
224 c1.blue = j*4;
/haiku/src/apps/icon-o-matic/gui/
H A DIconObjectListView.cpp71 if (lowColor.red + lowColor.green + lowColor.blue > 128 * 3)
/haiku/src/apps/icon-o-matic/import_export/flat_icon/
H A DFlatIconExporter.cpp261 if (color.red == color.green && color.red == color.blue) {
289 || !buffer.Write(color.blue))
668 || step->color.red != step->color.blue)
711 || !buffer.Write(step->color.blue))
/haiku/src/tests/servers/app/painter/
H A DPainter.cpp360 handle[0] = c.blue;
387 handle[0] = c.blue;
613 handle[0] = c.blue;
1452 color.blue / 255.0));
1456 color.blue / 255.0));
1461 color.blue / 255.0));
1465 color.blue / 255.0));
1469 color.blue / 255.0));
H A DPainter.h326 color.blue = b;
338 color.blue = b;
/haiku/src/tests/servers/app/playground/
H A DObjectView.cpp477 color.blue != fColor.blue ||
/haiku/src/tools/translation/stxtinfo/
H A Dstxtinfo.cpp76 uint8 blue; member in struct:Style
100 static_cast<unsigned int>(style.blue),

Completed in 151 milliseconds

12345678910