Home
last modified time | relevance | path

Searched refs:pTableGammaIn (Results 1 – 1 of 1) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
DSDL_macwm.c88 static Ptr CopyGammaTable (GammaTblPtr pTableGammaIn) in CopyGammaTable() argument
93 if (pTableGammaIn) /* if there is a table to copy */ in CopyGammaTable()
95 dataWidth = (pTableGammaIn->gDataWidth + 7) / 8; /* number of bytes per entry */ in CopyGammaTable()
96 tableSize = sizeof (GammaTbl) + pTableGammaIn->gFormulaSize + in CopyGammaTable()
97 (pTableGammaIn->gChanCnt * pTableGammaIn->gDataCnt * dataWidth); in CopyGammaTable()
100 BlockMove( (Ptr)pTableGammaIn, (Ptr)pTableGammaOut, tableSize); /* move everything */ in CopyGammaTable()