aboutsummaryrefslogtreecommitdiff
path: root/frontend/linux/fbdev.h
diff options
context:
space:
mode:
authornotaz2012-11-05 00:28:57 +0200
committernotaz2012-11-05 03:12:25 +0200
commitcc56203b76e1fcef2c7e55b460daf07e654a1547 (patch)
tree676013793bf5d42bdc6ef629385b07620e907bef /frontend/linux/fbdev.h
parent0e2e3f498456d1175916ecd69d0a9e80e701e760 (diff)
downloadpcsx_rearmed-cc56203b76e1fcef2c7e55b460daf07e654a1547.tar.gz
pcsx_rearmed-cc56203b76e1fcef2c7e55b460daf07e654a1547.tar.bz2
pcsx_rearmed-cc56203b76e1fcef2c7e55b460daf07e654a1547.zip
switch over to libpicofe
- libretro should not be affected by this, all others need to do 'git submodule init && git submodule update' from now on. - pandora should get gamma control support
Diffstat (limited to 'frontend/linux/fbdev.h')
-rw-r--r--frontend/linux/fbdev.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/frontend/linux/fbdev.h b/frontend/linux/fbdev.h
deleted file mode 100644
index 88cd519..0000000
--- a/frontend/linux/fbdev.h
+++ /dev/null
@@ -1,14 +0,0 @@
-struct vout_fbdev;
-
-struct vout_fbdev *vout_fbdev_init(const char *fbdev_name, int *w, int *h, int bpp, int buffer_count);
-void *vout_fbdev_flip(struct vout_fbdev *fbdev);
-void vout_fbdev_wait_vsync(struct vout_fbdev *fbdev);
-void *vout_fbdev_resize(struct vout_fbdev *fbdev, int w, int h, int bpp,
- int left_border, int right_border, int top_border, int bottom_border,
- int buffer_count);
-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);
-int vout_fbdev_save(struct vout_fbdev *fbdev);
-int vout_fbdev_restore(struct vout_fbdev *fbdev);
-void vout_fbdev_finish(struct vout_fbdev *fbdev);