diff options
author | Kevin Brace <kevinbrace@gmx.com> | 2019-04-11 17:36:09 -0700 |
---|---|---|
committer | Kevin Brace <kevinbrace@gmx.com> | 2019-04-11 17:36:09 -0700 |
commit | 5d8d7bcbb1dce839b604b7ee63c29782152a6438 (patch) | |
tree | 74847c3e65de235283de73ba9b48f42e0f6a8b87 | |
parent | ee3504d959ccd08614e2f12037525ba07d03bef2 (diff) |
Tab to spaces conversion for cir.h
Signed-off-by: Kevin Brace <kevinbrace@gmx.com>
-rw-r--r-- | src/cir.h | 92 |
1 files changed, 46 insertions, 46 deletions
@@ -20,60 +20,60 @@ struct lgRec; struct alpRec; typedef struct { - ScrnInfoPtr pScrn; - CARD32 properties; - pciVideoPtr PciInfo; + ScrnInfoPtr pScrn; + CARD32 properties; + pciVideoPtr PciInfo; #ifndef XSERVER_LIBPCIACCESS - PCITAG PciTag; + PCITAG PciTag; #endif - unsigned long PIOReg; + unsigned long PIOReg; union { - struct lgRec *lg; - struct alpRec *alp; + struct lgRec *lg; + struct alpRec *alp; } chip; - EntityInfoPtr pEnt; - int Chipset; - int ChipRev; - int Rounding; - int BppShift; - Bool HasFBitBlt; - CARD32 IOAddress; - CARD32 FbAddress; - void * IOBase; - void * FbBase; - long FbMapSize; - long IoMapSize; - int MinClock; - int MaxClock; - Bool NoAccel; - Bool HWCursor; - Bool UseMMIO; + EntityInfoPtr pEnt; + int Chipset; + int ChipRev; + int Rounding; + int BppShift; + Bool HasFBitBlt; + CARD32 IOAddress; + CARD32 FbAddress; + void * IOBase; + void * FbBase; + long FbMapSize; + long IoMapSize; + int MinClock; + int MaxClock; + Bool NoAccel; + Bool HWCursor; + Bool UseMMIO; #ifdef HAVE_XAA_H - XAAInfoRecPtr AccelInfoRec; + XAAInfoRecPtr AccelInfoRec; #endif - xf86CursorInfoPtr CursorInfoRec; - int DGAnumModes; - DGAModePtr DGAModes; - Bool DGAactive; - Bool (*DGAModeInit)(ScrnInfoPtr, DisplayModePtr); - int DGAViewportStatus; - I2CBusPtr I2CPtr1; - I2CBusPtr I2CPtr2; - CloseScreenProcPtr CloseScreen; + xf86CursorInfoPtr CursorInfoRec; + int DGAnumModes; + DGAModePtr DGAModes; + Bool DGAactive; + Bool (*DGAModeInit)(ScrnInfoPtr, DisplayModePtr); + int DGAViewportStatus; + I2CBusPtr I2CPtr1; + I2CBusPtr I2CPtr2; + CloseScreenProcPtr CloseScreen; - Bool CursorIsSkewed; - Bool shadowFB; - int rotate; - int ShadowPitch; - unsigned char * ShadowPtr; - void (*PointerMoved)(SCRN_ARG_TYPE arg, int x, int y); - int pitch; + Bool CursorIsSkewed; + Bool shadowFB; + int rotate; + int ShadowPitch; + unsigned char * ShadowPtr; + void (*PointerMoved)(SCRN_ARG_TYPE arg, int x, int y); + int pitch; - unsigned char ** ScanlineColorExpandBuffers; - void (*InitAccel)(ScrnInfoPtr); - int offscreen_size; - int offscreen_offset; - OptionInfoPtr Options; + unsigned char ** ScanlineColorExpandBuffers; + void (*InitAccel)(ScrnInfoPtr); + int offscreen_size; + int offscreen_offset; + OptionInfoPtr Options; } CirRec, *CirPtr; /* CirrusClk.c */ |