Home
last modified time | relevance | path

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

/external/qemu/distrib/sdl-1.2.15/src/video/
DSDL_bmp.c52 int bmpPitch; in SDL_LoadBMP_RW() local
265 bmpPitch = (biWidth + 7) >> 3; in SDL_LoadBMP_RW()
266 pad = (((bmpPitch)%4) ? (4-((bmpPitch)%4)) : 0); in SDL_LoadBMP_RW()
269 bmpPitch = (biWidth + 1) >> 1; in SDL_LoadBMP_RW()
270 pad = (((bmpPitch)%4) ? (4-((bmpPitch)%4)) : 0); in SDL_LoadBMP_RW()