vo: document draw_image

This commit is contained in:
wm4 2014-04-30 22:25:11 +02:00
parent cb411ac520
commit 7fc999b577
1 changed files with 6 additions and 0 deletions

View File

@ -177,6 +177,12 @@ struct vo_driver {
*/
int (*control)(struct vo *vo, uint32_t request, void *data);
/*
* Render the given frame to the VO's backbuffer. This operation will be
* followed by a draw_osd and a flip_page[_timed] call.
* mpi belongs to the caller; if the VO needs it longer, it has to create
* a new reference to mpi.
*/
void (*draw_image)(struct vo *vo, struct mp_image *mpi);
/*