Home
last modified time | relevance | path

Searched refs:botRight (Results 1 – 7 of 7) sorted by relevance

/third_party/skia/experimental/graphite/src/geom/
DRect.h31 AI Rect(float2 topLeft, float2 botRight) : fVals(topLeft, -botRight) {} in Rect() argument
75 AI float2 botRight() const { return -fVals.zw(); } in botRight() function
83 AI void setBotRight(float2 botRight) { fVals.zw() = -botRight; } in setBotRight() argument
DShape.h106 float2 p1() const { SkASSERT(this->isLine()); return fRect.botRight(); } in p1()
/third_party/skia/tests/
DPathOpsBoundsTest.cpp61 SkDPoint botRight = {3, 4}; in DEF_TEST() local
62 bounds.add(botRight); in DEF_TEST()
/third_party/flutter/skia/tests/
DPathOpsBoundsTest.cpp61 SkDPoint botRight = {3, 4}; in DEF_TEST() local
62 bounds.add(botRight); in DEF_TEST()
/third_party/skia/third_party/externals/angle2/util/windows/win32/
DWin32Window.cpp291 POINT botRight; in WndProc() local
292 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()
/third_party/flutter/skia/third_party/externals/angle2/util/windows/win32/
DWin32Window.cpp287 POINT botRight; in WndProc() local
288 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()
/third_party/skia/tests/graphite/
DRectTest.cpp53 CHECK(all(rect2.botRight() == float2(r,b))); in DEF_GRAPHITE_TEST()