Lines Matching refs:win

707 				struct omapfb_update_window *win,  in omapfb_update_window_async()  argument
731 if (win->x >= xres || win->y >= yres || in omapfb_update_window_async()
732 win->out_x > xres || win->out_y > yres) in omapfb_update_window_async()
739 if (win->x + win->width > xres) in omapfb_update_window_async()
740 win->width = xres - win->x; in omapfb_update_window_async()
741 if (win->y + win->height > yres) in omapfb_update_window_async()
742 win->height = yres - win->y; in omapfb_update_window_async()
743 if (win->out_x + win->out_width > xres) in omapfb_update_window_async()
744 win->out_width = xres - win->out_x; in omapfb_update_window_async()
745 if (win->out_y + win->out_height > yres) in omapfb_update_window_async()
746 win->out_height = yres - win->out_y; in omapfb_update_window_async()
747 if (!win->width || !win->height || !win->out_width || !win->out_height) in omapfb_update_window_async()
750 return fbdev->ctrl->update_window(fbi, win, callback, callback_data); in omapfb_update_window_async()
755 struct omapfb_update_window *win) in omapfb_update_win() argument
761 ret = omapfb_update_window_async(fbi, win, NULL, NULL); in omapfb_update_win()
771 struct omapfb_update_window win; in omapfb_update_full_screen() local
778 win.x = 0; in omapfb_update_full_screen()
779 win.y = 0; in omapfb_update_full_screen()
780 win.width = fbi->var.xres; in omapfb_update_full_screen()
781 win.height = fbi->var.yres; in omapfb_update_full_screen()
782 win.out_x = 0; in omapfb_update_full_screen()
783 win.out_y = 0; in omapfb_update_full_screen()
784 win.out_width = fbi->var.xres; in omapfb_update_full_screen()
785 win.out_height = fbi->var.yres; in omapfb_update_full_screen()
786 win.format = 0; in omapfb_update_full_screen()
789 r = fbdev->ctrl->update_window(fbi, &win, NULL, NULL); in omapfb_update_full_screen()
1063 struct omapfb_update_window win; in omapfb_write_first_pixel() local
1065 memset(&win, 0, sizeof(win)); in omapfb_write_first_pixel()
1066 win.width = 2; in omapfb_write_first_pixel()
1067 win.height = 2; in omapfb_write_first_pixel()
1068 win.out_width = 2; in omapfb_write_first_pixel()
1069 win.out_height = 2; in omapfb_write_first_pixel()
1070 fbdev->ctrl->update_window(fbdev->fb_info[0], &win, NULL, NULL); in omapfb_write_first_pixel()