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