Lines Matching refs:biWidth
247 Sint32 biWidth; in LoadBMP_RW() local
287 biWidth = (Uint32)SDL_ReadLE16(src); in LoadBMP_RW()
299 biWidth = SDL_ReadLE32(src); in LoadBMP_RW()
434 biWidth, biHeight, biBitCount, Rmask, Gmask, Bmask, Amask); in LoadBMP_RW()
495 bmpPitch = (biWidth + 7) >> 3; in LoadBMP_RW()
499 bmpPitch = (biWidth + 1) >> 1; in LoadBMP_RW()
639 Sint32 biWidth; in LoadICOCUR_RW() local
708 biWidth = SDL_ReadLE32(src); in LoadICOCUR_RW()
762 if ((biWidth < 0) || (biWidth > 0xFFFFFF) || in LoadICOCUR_RW()
773 SDL_CreateRGBSurface(0, biWidth, biHeight, 32, 0x00FF0000, in LoadICOCUR_RW()
800 bmpPitch = (biWidth + 7) >> 3; in LoadICOCUR_RW()
804 bmpPitch = (biWidth + 1) >> 1; in LoadICOCUR_RW()
808 bmpPitch = biWidth; in LoadICOCUR_RW()
812 bmpPitch = biWidth * 4; in LoadICOCUR_RW()
859 bmpPitch = (biWidth + 7) >> 3; in LoadICOCUR_RW()