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

  /external/skia/src/c/
sk_surface.cpp 137 static const SkRect& AsRect(const sk_rect_t& crect) {
138 return reinterpret_cast<const SkRect&>(crect);
141 static const SkRect* AsRect(const sk_rect_t* crect) {
142 return reinterpret_cast<const SkRect*>(crect);
272 void sk_path_add_rect(sk_path_t* cpath, const sk_rect_t* crect, sk_path_direction_t cdir) {
277 as_path(cpath)->addRect(AsRect(*crect), dir);
280 void sk_path_add_oval(sk_path_t* cpath, const sk_rect_t* crect, sk_path_direction_t cdir) {
285 as_path(cpath)->addOval(AsRect(*crect), dir);
288 bool sk_path_get_bounds(const sk_path_t* cpath, sk_rect_t* crect) {
292 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)) {

Completed in 68 milliseconds