Home
last modified time | relevance | path

Searched refs:area_w (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/buildroot/package/lvgl/lv_drivers/
H A D0007-Added-rga-Acceleration-rga-copy-instead-of-memcpy.patch86 + int area_w = area->x2 - area->x1 + 1;
94 + rga_set_rect(&src.rect, 0, 0, area_w, area_h, wstride, hstride, format);
95 + rga_set_rect(&dst.rect, area->x1, area->y1, area_w, area_h, lcd_ws, lcd_hs, format);
101 int area_w = area->x2 - area->x1 + 1;
103 memcpy(disp, color_p, area_w * 4);
104 color_p += area_w;
H A D0009-display-drm-support-LV_COLOR_DEPTH-16.patch27 int area_w = area->x2 - area->x1 + 1;
29 - memcpy(disp, color_p, area_w * 4);
31 + memcpy(disp, color_p, area_w * (LV_COLOR_DEPTH >> 3));
32 color_p += area_w;
H A D0006-drm-Reconstructs-the-drm-display-driver.patch1532 + int area_w = area->x2 - area->x1 + 1;
1534 + memcpy(disp, color_p, area_w * 4);
1535 + color_p += area_w;
/OK3568_Linux_fs/external/drm-cursor/
H A Ddrm_cursor.c785 int x, y, off_x, off_y, width, height, area_w, area_h; in drm_crtc_update_offsets() local
807 area_w = crtc->width - width; in drm_crtc_update_offsets()
818 if (x > area_w) in drm_crtc_update_offsets()
819 off_x = x - area_w; in drm_crtc_update_offsets()