HomeSort by relevance Sort by last modified time
    Searched refs:crect (Results 1 - 3 of 3) sorted by null

  /external/skia/src/c/
sk_surface.cpp 161 static const SkRect& AsRect(const sk_rect_t& crect) {
162 return reinterpret_cast<const SkRect&>(crect);
289 void sk_path_add_rect(sk_path_t* cpath, const sk_rect_t* crect, sk_path_direction_t cdir) {
294 as_path(cpath)->addRect(AsRect(*crect), dir);
297 void sk_path_add_oval(sk_path_t* cpath, const sk_rect_t* crect, sk_path_direction_t cdir) {
302 as_path(cpath)->addOval(AsRect(*crect), dir);
305 bool sk_path_get_bounds(const sk_path_t* cpath, sk_rect_t* crect) {
309 if (crect) {
310 *crect = ToRect(SkRect::MakeEmpty());
315 if (crect) {
    [all...]
  /external/skia/samplecode/
OverView.cpp 76 const SkRect crect = SkRect::MakeXYWH(cx - 0.5f, cy - 0.5f, 1, 1); variable
80 if (this->bounds(loc).intersects(crect)) {
  /external/opencv3/modules/highgui/src/
window_w32.cpp 998 RECT crect, trect, rect; local
1002 GetClientRect(window->frame, &crect);
1007 SubtractRect( &rect, &crect, &trect);
1010 rect = crect;
    [all...]

Completed in 80 milliseconds