Searched refs:area_w (Results 1 – 4 of 4) sorted by relevance
| /OK3568_Linux_fs/buildroot/package/lvgl/lv_drivers/ |
| H A D | 0007-Added-rga-Acceleration-rga-copy-instead-of-memcpy.patch | 86 + 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 D | 0009-display-drm-support-LV_COLOR_DEPTH-16.patch | 27 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 D | 0006-drm-Reconstructs-the-drm-display-driver.patch | 1532 + 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 D | drm_cursor.c | 785 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()
|