aboutsummaryrefslogtreecommitdiffstats
path: root/fbpdf.c
diff options
context:
space:
mode:
Diffstat (limited to 'fbpdf.c')
-rw-r--r--fbpdf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fbpdf.c b/fbpdf.c
index 9b4e665..73ce1f9 100644
--- a/fbpdf.c
+++ b/fbpdf.c
@@ -317,10 +317,10 @@ int main(int argc, char *argv[])
/* device specified */
if (strncmp(device, "/dev/d", 6) == 0) {
if (opengl) {
- gfx = drm_init_egl(device, output);
+ gfx = drm_init_egl(device, output, mode);
}
if (!gfx) {
- gfx = drm_init(device, output, pageflip);
+ gfx = drm_init(device, output, mode, pageflip);
}
} else {
framebuffer = true;
@@ -329,10 +329,10 @@ int main(int argc, char *argv[])
} else {
/* try drm first, failing that fb */
if (opengl) {
- gfx = drm_init_egl(NULL, output);
+ gfx = drm_init_egl(NULL, output, mode);
}
if (!gfx) {
- gfx = drm_init(NULL, output, pageflip);
+ gfx = drm_init(NULL, output, mode, pageflip);
}
if (!gfx) {
framebuffer = true;