Searched refs:alpha (Results 101 - 125 of 177) sorted by path

12345678

/haiku/src/apps/cortex/MediaRoutingView/
H A DMediaRoutingView.cpp1038 color.alpha = 255;
/haiku/src/apps/deskbar/
H A DBarApp.cpp1097 iconBits[i++] = B_TRANSPARENT_32_BIT.alpha;
/haiku/src/apps/glteapot/
H A DGLObject.cpp346 float alpha = 1; local
348 alpha = 1.0;
350 alpha = 0.95;
352 alpha = 0.6;
353 c[0][3] = c[1][3] = c[2][3] = alpha;
/haiku/src/apps/haikudepot/ui/
H A DPackageListView.cpp506 color.alpha = 190;
/haiku/src/apps/haikudepot/util/
H A DRatingUtils.cpp70 color.alpha = 190;
/haiku/src/apps/icon-o-matic/gui/
H A DGradientControl.cpp109 color.alpha = bits[3];
183 color.alpha = step->color.alpha;
498 blend_colors(uint8* d, uint8 alpha, uint8 c1, uint8 c2, uint8 c3) argument
500 if (alpha > 0) {
501 if (alpha == 255) {
506 d[0] += (uint8)(((c1 - d[0]) * alpha) >> 8);
507 d[1] += (uint8)(((c2 - d[1]) * alpha) >> 8);
508 d[2] += (uint8)(((c3 - d[2]) * alpha) >> 8);
554 // in order to make gradient steps with alpha mor
559 uint8 alpha = p[3]; local
[all...]
H A DStyleListView.cpp308 color.alpha = 255;
/haiku/src/apps/icon-o-matic/import_export/flat_icon/
H A DFlatIconExporter.cpp263 if (style->Color().alpha == 255)
269 if (style->Color().alpha == 255)
285 // solid color without alpha
295 || !buffer.Write(color.alpha))
298 // solid gray without alpha
661 bool alpha = false; local
665 if (step->color.alpha < 255)
666 alpha = true;
671 if (!alpha)
695 if (alpha) {
[all...]
/haiku/src/apps/icon-o-matic/import_export/svg/
H A DDocumentBuilder.cpp263 color.alpha = (paint->color >> 24) & 0xFF;
309 stopColor.alpha = (paint->gradient->stops[i].color >> 24) & 0xFF;
318 color.alpha = step->color.alpha;
322 color.alpha = (uint8)(color.alpha * svgShape->opacity);
H A DSVGExporter.cpp243 if (!style->Gradient() && style->Color().alpha < 255) {
245 append_float(helper, style->Color().alpha / 255.0);
264 if (!style->Gradient() && style->Color().alpha < 255) {
266 append_float(helper, style->Color().alpha / 255.0);
428 if (stop->color.alpha < 255) {
430 append_float(helper, (float)stop->color.alpha / 255.0);
/haiku/src/apps/magnify/
H A DMagnify.cpp2154 c.alpha = pixel >> 24;
/haiku/src/apps/people/
H A DPictureView.cpp396 PictureView::_CopyPicture(uint8 alpha) argument
398 bool hasAlpha = alpha != 255;
419 view.SetHighColor(0, 0, 0, alpha);
/haiku/src/apps/processcontroller/
H A DProcessController.cpp518 swap_color.alpha = 255;
H A DUtilities.cpp106 target.alpha = (uint8)(second.alpha * mix + (1. - mix) * first.alpha);
/haiku/src/apps/pulse/
H A DCPUButton.cpp68 fOffColor.alpha = 255;
H A DProgressBar.cpp53 segments[x].color.alpha = 0xff;
60 segments[x].color.alpha = 0xff;
/haiku/src/apps/screenshot/
H A DScreenshot.cpp239 uint8 alpha = 255 - bits[3]; local
240 bits[0] = ((areaBits[0] * alpha) >> 8) + bits[0];
241 bits[1] = ((areaBits[1] * alpha) >> 8) + bits[1];
242 bits[2] = ((areaBits[2] * alpha) >> 8) + bits[2];
/haiku/src/apps/serialconnect/
H A DTermView.cpp108 foreground.alpha = 255;
112 background.alpha = 255;
354 background.alpha = 255;
/haiku/src/apps/showimage/
H A DShowImageView.cpp129 uint8 alpha = p[3]; local
130 if (alpha < 255) {
132 alpha = 255 - alpha;
135 blend_colors(p, kAlphaLow.red, kAlphaLow.green, kAlphaLow.blue, alpha);
137 blend_colors(p, kAlphaHigh.red, kAlphaHigh.green, kAlphaHigh.blue, alpha);
141 blend_colors(p, kAlphaHigh.red, kAlphaHigh.green, kAlphaHigh.blue, alpha);
143 blend_colors(p, kAlphaLow.red, kAlphaLow.green, kAlphaLow.blue, alpha);
696 // with regard to alpha channel
740 ShowImageView::_CopySelection(uchar alpha, boo argument
[all...]
H A DShowImageView.h147 BBitmap* _CopySelection(uchar alpha = 255,
/haiku/src/apps/stylededit/
H A DStyledEditWindow.cpp724 color.alpha = 255;
/haiku/src/apps/terminal/
H A DColorPreview.cpp196 color.alpha = 255;
213 fColor.alpha = 255;
H A DPrefHandler.cpp401 col.alpha = 255;
/haiku/src/bin/
H A Dhey.cpp935 clr.alpha = atol(ptr + 1);
/haiku/src/bin/mail_utils/
H A Dspamdbm.cpp7175 m_FocusedColour.alpha = 255;
7180 m_UnfocusedColour.alpha = 255;
7399 FillColour.alpha = 255;

Completed in 231 milliseconds

12345678