Subversion Repositories HelenOS-historic

Rev

Rev 1562 | Rev 1610 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1562 Rev 1567
Line 697... Line 697...
697
 
697
 
698
    for (y=0; y < realheight; y++) {
698
    for (y=0; y < realheight; y++) {
699
        tmp = (vport->y + y) * screen.scanline + vport->x * screen.pixelbytes;
699
        tmp = (vport->y + y) * screen.scanline + vport->x * screen.pixelbytes;
700
        memcpy(screen.fbaddress + tmp, pmap->data + y * srcrowsize, realrowsize);
700
        memcpy(screen.fbaddress + tmp, pmap->data + y * srcrowsize, realrowsize);
701
    }
701
    }
702
    return pm;
702
    return 0;
703
}
703
}
704
 
704
 
705
/** Handler for messages concerning pixmap handling */
705
/** Handler for messages concerning pixmap handling */
706
static int pixmap_handle(ipc_callid_t callid, ipc_call_t *call, int vp)
706
static int pixmap_handle(ipc_callid_t callid, ipc_call_t *call, int vp)
707
{
707
{