diff options
author | Antonino A. Daplas <adaplas@gmail.com> | 2007-07-17 07:05:25 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-17 13:23:11 -0400 |
commit | 01b15bd4bfae794246c047b961a282e19014e240 (patch) | |
tree | 4f049d33951b0fcf43ecdb91959f1cb7d2d518fe /drivers/video/nvidia | |
parent | bad07ff74c32829defce8c83d7ff6ea69c329441 (diff) |
nvidiafb: adjust flags to take advantage of new scroll method
The SCROLL_MOVE method has been optimized such that it is significantly faster
than SCROLL_REDRAW. Adjust flags to indicate that blitting is preferred over
rendering.
Signed-off-by: Antonino Daplas <adaplas@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video/nvidia')
-rw-r--r-- | drivers/video/nvidia/nvidia.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/video/nvidia/nvidia.c b/drivers/video/nvidia/nvidia.c index 41f63658572f..8c3a25360232 100644 --- a/drivers/video/nvidia/nvidia.c +++ b/drivers/video/nvidia/nvidia.c | |||
@@ -674,6 +674,7 @@ static int nvidiafb_set_par(struct fb_info *info) | |||
674 | info->fbops->fb_sync = nvidiafb_sync; | 674 | info->fbops->fb_sync = nvidiafb_sync; |
675 | info->pixmap.scan_align = 4; | 675 | info->pixmap.scan_align = 4; |
676 | info->flags &= ~FBINFO_HWACCEL_DISABLED; | 676 | info->flags &= ~FBINFO_HWACCEL_DISABLED; |
677 | info->flags |= FBINFO_READS_FAST; | ||
677 | NVResetGraphics(info); | 678 | NVResetGraphics(info); |
678 | } else { | 679 | } else { |
679 | info->fbops->fb_imageblit = cfb_imageblit; | 680 | info->fbops->fb_imageblit = cfb_imageblit; |
@@ -682,6 +683,7 @@ static int nvidiafb_set_par(struct fb_info *info) | |||
682 | info->fbops->fb_sync = NULL; | 683 | info->fbops->fb_sync = NULL; |
683 | info->pixmap.scan_align = 1; | 684 | info->pixmap.scan_align = 1; |
684 | info->flags |= FBINFO_HWACCEL_DISABLED; | 685 | info->flags |= FBINFO_HWACCEL_DISABLED; |
686 | info->flags &= ~FBINFO_READS_FAST; | ||
685 | } | 687 | } |
686 | 688 | ||
687 | par->cursor_reset = 1; | 689 | par->cursor_reset = 1; |