Searched refs:botRight (Results 1 – 7 of 7) sorted by relevance
31 AI Rect(float2 topLeft, float2 botRight) : fVals(topLeft, -botRight) {} in Rect() argument75 AI float2 botRight() const { return -fVals.zw(); } in botRight() function83 AI void setBotRight(float2 botRight) { fVals.zw() = -botRight; } in setBotRight() argument
106 float2 p1() const { SkASSERT(this->isLine()); return fRect.botRight(); } in p1()
61 SkDPoint botRight = {3, 4}; in DEF_TEST() local62 bounds.add(botRight); in DEF_TEST()
291 POINT botRight; in WndProc() local292 botRight.x = winRect.right; in WndProc()293 botRight.y = winRect.bottom; in WndProc()294 ClientToScreen(hWnd, &botRight); in WndProc()298 event.Size.Width = botRight.x - topLeft.x; in WndProc()299 event.Size.Height = botRight.y - topLeft.y; in WndProc()
287 POINT botRight; in WndProc() local288 botRight.x = winRect.right; in WndProc()289 botRight.y = winRect.bottom; in WndProc()290 ClientToScreen(hWnd, &botRight); in WndProc()294 event.Size.Width = botRight.x - topLeft.x; in WndProc()295 event.Size.Height = botRight.y - topLeft.y; in WndProc()
53 CHECK(all(rect2.botRight() == float2(r,b))); in DEF_GRAPHITE_TEST()