Lines Matching refs:rect
19 static void populate_splrect_from_rect(struct spl_rect *spl_rect, const struct rect *rect) in populate_splrect_from_rect() argument
21 spl_rect->x = rect->x; in populate_splrect_from_rect()
22 spl_rect->y = rect->y; in populate_splrect_from_rect()
23 spl_rect->width = rect->width; in populate_splrect_from_rect()
24 spl_rect->height = rect->height; in populate_splrect_from_rect()
26 static void populate_rect_from_splrect(struct rect *rect, const struct spl_rect *spl_rect) in populate_rect_from_splrect() argument
28 rect->x = spl_rect->x; in populate_rect_from_splrect()
29 rect->y = spl_rect->y; in populate_rect_from_splrect()
30 rect->width = spl_rect->width; in populate_rect_from_splrect()
31 rect->height = spl_rect->height; in populate_rect_from_splrect()
80 struct rect odm_slice_src = resource_get_odm_slice_src_rect(pipe_ctx); in translate_SPL_in_params_from_pipe_ctx()