initial pandora port, with hardware scaling and stuff

This commit is contained in:
notaz
2011-09-04 20:02:19 +03:00
parent 43c24b301d
commit eb3668fc5d
16 changed files with 1472 additions and 34 deletions

12
pandora/linux/fbdev.h Normal file
View File

@@ -0,0 +1,12 @@
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);
void vout_fbdev_finish(struct vout_fbdev *fbdev);