Home
last modified time | relevance | path

Searched refs:IsHighColor (Results 1 – 13 of 13) sorted by relevance

/haiku/src/servers/app/drawing/Painter/drawing_modes/
H A DDrawingModeInvert.h39 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 DDrawingModeErase.h34 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 DDrawingModeOver.h34 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 DDrawingModeSelect.h58 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 DDrawingModeInvertSUBPIX.h37 if (pattern->IsHighColor(x, y)) { in blend_solid_hspan_invert_subpix()
H A DDrawingModeEraseSUBPIX.h34 if (pattern->IsHighColor(x, y)) { in blend_solid_hspan_erase_subpix()
H A DDrawingModeOverSUBPIX.h34 if (pattern->IsHighColor(x, y)) { in blend_solid_hspan_over_subpix()
H A DDrawingModeSelectSUBPIX.h36 if (pattern->IsHighColor(x, y)) { in blend_solid_hspan_select_subpix()
H A DDrawingModeAlphaCC.h72 if (pattern->IsHighColor(x, y)) in blend_hline_alpha_cc()
H A DDrawingModeAlphaCO.h72 if (pattern->IsHighColor(x, y)) in blend_hline_alpha_co()
H A DDrawingModeCopy.h73 if (pattern->IsHighColor(x, y)) in blend_hline_copy()
/haiku/src/servers/app/drawing/
H A DPatternHandler.h118 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 DPatternHandler.cpp212 PatternHandler::IsHighColor(const BPoint &pt) const in IsHighColor() function in PatternHandler
214 return IsHighColor((int)pt.x, (int)pt.y); in IsHighColor()