Lines Matching refs:y
27 points.push_back({center.x + STEP, center.y}); in GetCheckPoints()
28 points.push_back({center.x + STEP, center.y + STEP}); in GetCheckPoints()
29 points.push_back({center.x + STEP, center.y - STEP}); in GetCheckPoints()
30 points.push_back({center.x, center.y + STEP}); in GetCheckPoints()
31 points.push_back({center.x - STEP, center.y}); in GetCheckPoints()
32 points.push_back({center.x - STEP, center.y - STEP}); in GetCheckPoints()
33 points.push_back({center.x - STEP, center.y + STEP}); in GetCheckPoints()
34 points.push_back({center.x, center.y - STEP}); in GetCheckPoints()
66 if ((point.x >= RECT.x) && (point.x < (RECT.x + RECT.w)) && (point.y >= RECT.y) && in GetCheckColors()
67 (point.y < (RECT.y + RECT.h))) { in GetCheckColors()
90 GetCheckPoints({RECT.x, RECT.y}, points); in Check()
91 GetCheckPoints({RECT.x, RECT.y + RECT.h}, points); in Check()
92 GetCheckPoints({RECT.x + RECT.w, RECT.y}, points); in Check()
93 GetCheckPoints({RECT.x + RECT.w, RECT.y + RECT.h}, points); in Check()
95 … GetCheckPoints({RECT.x + RECT.w / MID_POS, RECT.y + RECT.h / MID_POS}, points); // center point in Check()
104 if ((points[i].x >= clientBuffer.width) || (points[i].x < 0) || (points[i].y < 0) || in Check()
105 (points[i].y >= clientBuffer.height)) { in Check()
108 ret = CheckPixel(clientBuffer, points[i].x, points[i].y, colors[i]); in Check()