Lines Matching refs:rect
126 rga_rect_t rect;
155 @param rect:The rect user want to set,like setting the src rect:
158 mean to set the src rect to the value.
160 static inline int rga_set_rect(rga_rect_t *rect, int x, int y, int w, int h, int sw, int sh, int f)
162 if (!rect) {
165 rect->xoffset = x;
166 rect->yoffset = y;
167 rect->width = w;
168 rect->height = h;
169 rect->wstride = sw;
170 rect->hstride = sh;
171 rect->format = f;