Reworked overlay, much better but still not perfect.

Original commit message from CVS:
Reworked overlay, much better but still not perfect.
This commit is contained in:
Wim Taymans 2000-03-05 21:48:05 +00:00
parent 58b4147fb2
commit 660c01217f

View file

@ -50,6 +50,8 @@ struct _MetaDGA {
void *base; void *base;
// the dimensions of the screen // the dimensions of the screen
int swidth, sheight; int swidth, sheight;
// the number of bytes in a line
int bytes_per_line;
}; };
struct _MetaOverlay { struct _MetaOverlay {
@ -63,6 +65,7 @@ struct _MetaOverlay {
struct _OverlayClip overlay_clip[32]; struct _OverlayClip overlay_clip[32];
gboolean did_overlay; gboolean did_overlay;
gboolean fully_obscured;
}; };
struct _MetaVideoRaw { struct _MetaVideoRaw {