diff options
author | Jerome Glisse <glisse@freedesktop.org> | 2007-06-18 00:03:29 +0200 |
---|---|---|
committer | Jerome Glisse <glisse@freedesktop.org> | 2007-06-18 00:03:29 +0200 |
commit | 052d51671716eb5a1909136bb87ab9cb1d9829cd (patch) | |
tree | d4d81828352217f7afe5a6807563d43953003d22 /xorg | |
parent | d0d5ee700b53d376cbe2ac7f70e6d97cc076eb4a (diff) |
avivo: disable fb manager initialization
Don't know if this fb manager is usefull for something i disable
it now as it will get in the way of change needed to align scan
out buffer width to be 256 bytes aligned.
Diffstat (limited to 'xorg')
-rw-r--r-- | xorg/avivo.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xorg/avivo.c b/xorg/avivo.c index 265e3bb..f66853a 100644 --- a/xorg/avivo.c +++ b/xorg/avivo.c @@ -725,6 +725,7 @@ avivo_screen_init(int index, ScreenPtr screen, int argc, char **argv) avivo_wait_idle(avivo); /* fb memory box */ +#if 0 memset(&avivo->fb_memory_box, 0, sizeof(avivo->fb_memory_box)); avivo->fb_memory_box.x1 = 0; avivo->fb_memory_box.x2 = screen_info->displayWidth; @@ -735,6 +736,7 @@ avivo_screen_init(int index, ScreenPtr screen, int argc, char **argv) "Couldn't init fb manager\n"); return FALSE; } +#endif if (screen_info->virtualX > screen_info->displayWidth) screen_info->displayWidth = screen_info->virtualX; |