mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
video fbdev: expand to support fb resize and stuff
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@884 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
c32f841a6e
commit
207e58ef99
2 changed files with 120 additions and 62 deletions
|
@ -3,5 +3,10 @@ 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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue