Lines Matching refs:win

712 				struct omapfb_update_window *win,  in omapfb_update_window_async()  argument
736 if (win->x >= xres || win->y >= yres || in omapfb_update_window_async()
737 win->out_x > xres || win->out_y > yres) in omapfb_update_window_async()
744 if (win->x + win->width > xres) in omapfb_update_window_async()
745 win->width = xres - win->x; in omapfb_update_window_async()
746 if (win->y + win->height > yres) in omapfb_update_window_async()
747 win->height = yres - win->y; in omapfb_update_window_async()
748 if (win->out_x + win->out_width > xres) in omapfb_update_window_async()
749 win->out_width = xres - win->out_x; in omapfb_update_window_async()
750 if (win->out_y + win->out_height > yres) in omapfb_update_window_async()
751 win->out_height = yres - win->out_y; in omapfb_update_window_async()
752 if (!win->width || !win->height || !win->out_width || !win->out_height) in omapfb_update_window_async()
755 return fbdev->ctrl->update_window(fbi, win, callback, callback_data); in omapfb_update_window_async()
760 struct omapfb_update_window *win) in omapfb_update_win() argument
766 ret = omapfb_update_window_async(fbi, win, NULL, NULL); in omapfb_update_win()
776 struct omapfb_update_window win; in omapfb_update_full_screen() local
783 win.x = 0; in omapfb_update_full_screen()
784 win.y = 0; in omapfb_update_full_screen()
785 win.width = fbi->var.xres; in omapfb_update_full_screen()
786 win.height = fbi->var.yres; in omapfb_update_full_screen()
787 win.out_x = 0; in omapfb_update_full_screen()
788 win.out_y = 0; in omapfb_update_full_screen()
789 win.out_width = fbi->var.xres; in omapfb_update_full_screen()
790 win.out_height = fbi->var.yres; in omapfb_update_full_screen()
791 win.format = 0; in omapfb_update_full_screen()
794 r = fbdev->ctrl->update_window(fbi, &win, NULL, NULL); in omapfb_update_full_screen()
1068 struct omapfb_update_window win; in omapfb_write_first_pixel() local
1070 memset(&win, 0, sizeof(win)); in omapfb_write_first_pixel()
1071 win.width = 2; in omapfb_write_first_pixel()
1072 win.height = 2; in omapfb_write_first_pixel()
1073 win.out_width = 2; in omapfb_write_first_pixel()
1074 win.out_height = 2; in omapfb_write_first_pixel()
1075 fbdev->ctrl->update_window(fbdev->fb_info[0], &win, NULL, NULL); in omapfb_write_first_pixel()