first implementation of putimage

* hw/kdrive/ephyr/ephyrhostvideo.c,h:
          (EphyrHostXVPutImage): first implementation. does not
          support clipping regions yet.
        * hw/kdrive/ephyr/ephyrvideo.c:
          (DoSimpleClip): clip using a clipping box. Does not
           support regions yet.
          (EphyrPutImage): first implementation.
           Uses a simple clipping rectangle, no region yet.
        * hw/kdrive/ephyr/hostx.c:
          (hostx_get_window): added this to get the main
          window of the host x.
This commit is contained in:
Dodji Seketeli 2007-08-03 01:10:39 +02:00
commit 207714b60d
5 changed files with 166 additions and 1 deletions

View file

@ -962,3 +962,8 @@ hostx_get_display(void)
return HostX.dpy ;
}
int
hostx_get_window(void)
{
return HostX.win ;
}