Searched refs:IsHighColor (Results 1 – 13 of 13) sorted by relevance
/haiku/src/servers/app/drawing/Painter/drawing_modes/ |
H A D | DrawingModeInvert.h | 39 if (pattern->IsHighColor(x, y)) { in blend_pixel_invert() 58 if (pattern->IsHighColor(x, y)) { in blend_hline_invert() 66 if (pattern->IsHighColor(x, y)) { in blend_hline_invert() 83 if (pattern->IsHighColor(x, y)) { in blend_solid_hspan_invert() 108 if (pattern->IsHighColor(x, y)) { in blend_solid_vspan_invert()
|
H A D | DrawingModeErase.h | 34 if (pattern->IsHighColor(x, y)) { in blend_pixel_erase() 61 if (pattern->IsHighColor(x, y)) in blend_hline_erase() 70 if (pattern->IsHighColor(x, y)) { in blend_hline_erase() 88 if (pattern->IsHighColor(x, y)) { in blend_solid_hspan_erase() 114 if (pattern->IsHighColor(x, y)) { in blend_solid_vspan_erase()
|
H A D | DrawingModeOver.h | 34 if (pattern->IsHighColor(x, y)) { in blend_pixel_over() 61 if (pattern->IsHighColor(x, y)) in blend_hline_over() 70 if (pattern->IsHighColor(x, y)) { in blend_hline_over() 88 if (pattern->IsHighColor(x, y)) { in blend_solid_hspan_over() 114 if (pattern->IsHighColor(x, y)) { in blend_solid_vspan_over()
|
H A D | DrawingModeSelect.h | 58 if (pattern->IsHighColor(x, y)) { in blend_pixel_select() 85 if (pattern->IsHighColor(x, y) in blend_hline_select() 93 if (pattern->IsHighColor(x, y) in blend_hline_select() 114 if (pattern->IsHighColor(x, y)) { in blend_solid_hspan_select() 142 if (pattern->IsHighColor(x, y)) { in blend_solid_vspan_select()
|
H A D | DrawingModeInvertSUBPIX.h | 37 if (pattern->IsHighColor(x, y)) { in blend_solid_hspan_invert_subpix()
|
H A D | DrawingModeEraseSUBPIX.h | 34 if (pattern->IsHighColor(x, y)) { in blend_solid_hspan_erase_subpix()
|
H A D | DrawingModeOverSUBPIX.h | 34 if (pattern->IsHighColor(x, y)) { in blend_solid_hspan_over_subpix()
|
H A D | DrawingModeSelectSUBPIX.h | 36 if (pattern->IsHighColor(x, y)) { in blend_solid_hspan_select_subpix()
|
H A D | DrawingModeAlphaCC.h | 72 if (pattern->IsHighColor(x, y)) in blend_hline_alpha_cc()
|
H A D | DrawingModeAlphaCO.h | 72 if (pattern->IsHighColor(x, y)) in blend_hline_alpha_co()
|
H A D | DrawingModeCopy.h | 73 if (pattern->IsHighColor(x, y)) in blend_hline_copy()
|
/haiku/src/servers/app/drawing/ |
H A D | PatternHandler.h | 118 bool IsHighColor(const BPoint& pt) const; 119 inline bool IsHighColor(int x, int y) const; 152 return IsHighColor(x, y) ? fHighColor : fLowColor; in ColorAt() 162 PatternHandler::IsHighColor(int x, int y) const in IsHighColor() function
|
H A D | PatternHandler.cpp | 212 PatternHandler::IsHighColor(const BPoint &pt) const in IsHighColor() function in PatternHandler 214 return IsHighColor((int)pt.x, (int)pt.y); in IsHighColor()
|