summaryrefslogtreecommitdiff
path: root/drv/drv_screen.c
blob: d792794fdc02e9fc69a893e8230e94bdbf046878 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "drv_scrnintstr.h"

Bool
drvScreenInit(DrvScreenPtr pDrvScreen)
{
    pDrvScreen->ModifyPixmapHeader = drvModifyPixmapHeader;
    pDrvScreen->SetScreenPixmap = drvSetScreenPixmap;
    return TRUE;
}

void
drvSetScreenPixmap(DrvScreenPtr pDrvScreen, DrvPixmapPtr drvPixmap)
{
    pDrvScreen->screenPixmap = drvPixmap;
}

Bool
drvCreateScreenResources(DrvScreenPtr pDrvScreen)
{
    return TRUE;

}