Lines Matching refs:biHeight
203 Sint32 biHeight = 0; in SDL_LoadBMP_RW() local
243 biHeight = (Uint32) SDL_ReadLE16(src); in SDL_LoadBMP_RW()
255 biHeight = SDL_ReadLE32(src); in SDL_LoadBMP_RW()
309 if (biWidth <= 0 || biHeight == 0) { in SDL_LoadBMP_RW()
310 SDL_SetError("BMP file with bad dimensions (%dx%d)", biWidth, biHeight); in SDL_LoadBMP_RW()
314 if (biHeight < 0) { in SDL_LoadBMP_RW()
316 biHeight = -biHeight; in SDL_LoadBMP_RW()
395 SDL_CreateRGBSurface(0, biWidth, biHeight, biBitCount, Rmask, Gmask, in SDL_LoadBMP_RW()
587 Sint32 biHeight; in SDL_SaveBMP_RW() local
685 biHeight = surface->h; in SDL_SaveBMP_RW()
717 SDL_WriteLE32(dst, biHeight); in SDL_SaveBMP_RW()