Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 434468 | Differences between
and this patch

Collapse All | Expand All

(-)a/src/neo_dga.c (-6 / +2 lines)
Lines 38-47 Link Here
38
static Bool NEO_OpenFramebuffer(ScrnInfoPtr, char **, unsigned char **, 
38
static Bool NEO_OpenFramebuffer(ScrnInfoPtr, char **, unsigned char **, 
39
					int *, int *, int *);
39
					int *, int *, int *);
40
static Bool NEO_SetMode(ScrnInfoPtr, DGAModePtr);
40
static Bool NEO_SetMode(ScrnInfoPtr, DGAModePtr);
41
static void NEO_Sync(ScrnInfoPtr);
42
static int  NEO_GetViewport(ScrnInfoPtr);
41
static int  NEO_GetViewport(ScrnInfoPtr);
43
static void NEO_SetViewport(ScrnInfoPtr, int, int, int);
42
static void NEO_SetViewport(ScrnInfoPtr, int, int, int);
44
#ifdef HAVE_XAA_H
43
#ifdef HAVE_XAA_H
44
static void NEO_Sync(ScrnInfoPtr);
45
static void NEO_FillRect(ScrnInfoPtr, int, int, int, int, unsigned long);
45
static void NEO_FillRect(ScrnInfoPtr, int, int, int, int, unsigned long);
46
static void NEO_BlitRect(ScrnInfoPtr, int, int, int, int, int, int);
46
static void NEO_BlitRect(ScrnInfoPtr, int, int, int, int, int, int);
47
#if 0
47
#if 0
Lines 57-64 DGAFunctionRec NEODGAFuncs = { Link Here
57
   NEO_SetMode,
57
   NEO_SetMode,
58
   NEO_SetViewport,
58
   NEO_SetViewport,
59
   NEO_GetViewport,
59
   NEO_GetViewport,
60
   NEO_Sync,
61
#ifdef HAVE_XAA_H
60
#ifdef HAVE_XAA_H
61
   NEO_Sync,
62
   NEO_FillRect,
62
   NEO_FillRect,
63
   NEO_BlitRect,
63
   NEO_BlitRect,
64
#if 0
64
#if 0
Lines 219-235 NEO_FillRect ( Link Here
219
    }
219
    }
220
}
220
}
221
221
222
223
static void 
222
static void 
224
NEO_Sync(
223
NEO_Sync(
225
   ScrnInfoPtr pScrn
224
   ScrnInfoPtr pScrn
226
){
225
){
227
    NEOPtr pNEO = NEOPTR(pScrn);
226
    NEOPtr pNEO = NEOPTR(pScrn);
228
#ifdef HAVE_XAA_H
229
    if(pNEO->AccelInfoRec) {
227
    if(pNEO->AccelInfoRec) {
230
	(*pNEO->AccelInfoRec->Sync)(pScrn);
228
	(*pNEO->AccelInfoRec->Sync)(pScrn);
231
    }
229
    }
232
#endif
233
}
230
}
234
231
235
static void 
232
static void 
236
- 

Return to bug 434468