aboutsummaryrefslogtreecommitdiff
path: root/frontend/linux/fbdev.h
diff options
context:
space:
mode:
authornotaz2010-11-19 01:56:51 +0200
committernotaz2010-11-19 01:56:51 +0200
commitb60f2812208aa36dc8b9e8e90f02b608dafd0c00 (patch)
treee169253e546478f8be4962f90546b3dc43ad0787 /frontend/linux/fbdev.h
parente906c010e1bea71ed4df425be97ce45dc777818c (diff)
downloadpcsx_rearmed-b60f2812208aa36dc8b9e8e90f02b608dafd0c00.tar.gz
pcsx_rearmed-b60f2812208aa36dc8b9e8e90f02b608dafd0c00.tar.bz2
pcsx_rearmed-b60f2812208aa36dc8b9e8e90f02b608dafd0c00.zip
fbdev output for xvideo, basic ARM build
Diffstat (limited to 'frontend/linux/fbdev.h')
-rw-r--r--frontend/linux/fbdev.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/frontend/linux/fbdev.h b/frontend/linux/fbdev.h
new file mode 100644
index 0000000..fa163aa
--- /dev/null
+++ b/frontend/linux/fbdev.h
@@ -0,0 +1,12 @@
+struct vout_fbdev;
+
+struct vout_fbdev *vout_fbdev_init(const char *fbdev_name, int *w, int *h, int no_dblbuf);
+void *vout_fbdev_flip(struct vout_fbdev *fbdev);
+void vout_fbdev_wait_vsync(struct vout_fbdev *fbdev);
+int vout_fbdev_resize(struct vout_fbdev *fbdev, int w, int h,
+ int left_border, int right_border, int top_border, int bottom_border,
+ int no_dblbuf);
+void vout_fbdev_clear(struct vout_fbdev *fbdev);
+void vout_fbdev_clear_lines(struct vout_fbdev *fbdev, int y, int count);
+int vout_fbdev_get_fd(struct vout_fbdev *fbdev);
+void vout_fbdev_finish(struct vout_fbdev *fbdev);