diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2016-03-30 16:17:07 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2016-03-30 16:17:07 +0200 |
commit | 6b54359f371edab9f6165757aabcfe823b77ccd4 (patch) | |
tree | 8902d2d3adc9b8bcc1cd52b4c82d36b9ab0667a2 /fbi.c | |
parent | 23c102eb5272d3c2199cb5d952c3ad4b15a03cf6 (diff) | |
download | fbida-6b54359f371edab9f6165757aabcfe823b77ccd4.tar.gz |
fbpdf: pageflip
Diffstat (limited to 'fbi.c')
-rw-r--r-- | fbi.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1478,14 +1478,14 @@ int main(int argc, char *argv[]) if (device) { /* device specified */ if (strncmp(device, "/dev/d", 6) == 0) { - gfx = drm_init(device, output); + gfx = drm_init(device, output, false); } else { framebuffer = true; gfx = fb_init(device, mode, GET_VT()); } } else { /* try drm first, failing that fb */ - gfx = drm_init(NULL, output); + gfx = drm_init(NULL, output, false); if (!gfx) { framebuffer = true; gfx = fb_init(NULL, mode, GET_VT()); |