Searched refs:spl_rect (Results 1 – 3 of 3) sorted by relevance
17 struct spl_rect { struct136 struct spl_rect viewport;137 struct spl_rect viewport_c;138 struct spl_rect recout;264 struct spl_rect viewport;265 struct spl_rect viewport_c;442 struct spl_rect src_rect; // Source rect443 struct spl_rect dst_rect; // Destination Rect444 struct spl_rect clip_rect; // Clip rect470 struct spl_rect dst_rect; // Destination Rect[all …]
48 static struct spl_rect intersect_rec(const struct spl_rect *r0, const struct spl_rect *r1) in intersect_rec()50 struct spl_rect rec; in intersect_rec()68 static struct spl_rect shift_rec(const struct spl_rect *rec_in, int x, int y) in shift_rec()70 struct spl_rect rec_out = *rec_in; in shift_rec()95 const struct spl_rect *rec_in) in calculate_plane_rec_in_timing_active()160 struct spl_rect rec_out = {0}; in calculate_plane_rec_in_timing_active()197 struct spl_rect mpc_rec; in calculate_mpc_slice_in_timing_active()247 struct spl_rect odm_rec; in calculate_odm_slice_in_timing_active()396 struct spl_rect plane_clip; in spl_calculate_recout()398 struct spl_rect odm_slice; in spl_calculate_recout()[all …]
19 static void populate_splrect_from_rect(struct spl_rect *spl_rect, const struct rect *rect) in populate_splrect_from_rect() argument21 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() argument28 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()
Completed in 14 milliseconds