Searched refs:biHeight (Results 1 – 10 of 10) sorted by relevance
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/ |
A D | rdbmp.c | 290 INT32 biHeight; in start_input_bmp() local 322 biHeight = (INT32) GET_2B(bmpinfoheader,6); in start_input_bmp() 329 TRACEMS2(cinfo, 1, JTRC_BMP_OS2_MAPPED, (int) biWidth, (int) biHeight); in start_input_bmp() 332 TRACEMS2(cinfo, 1, JTRC_BMP_OS2, (int) biWidth, (int) biHeight); in start_input_bmp() 344 biHeight = GET_4B(bmpinfoheader,8); in start_input_bmp() 356 TRACEMS2(cinfo, 1, JTRC_BMP_MAPPED, (int) biWidth, (int) biHeight); in start_input_bmp() 359 TRACEMS2(cinfo, 1, JTRC_BMP, (int) biWidth, (int) biHeight); in start_input_bmp() 362 TRACEMS2(cinfo, 1, JTRC_BMP, (int) biWidth, (int) biHeight); in start_input_bmp() 383 if (biWidth <= 0 || biHeight <= 0) in start_input_bmp() 427 row_width, (JDIMENSION) biHeight, (JDIMENSION) 1); in start_input_bmp() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/ |
A D | IMG_bmp.c | 248 Sint32 biHeight = 0; in LoadBMP_RW() local 288 biHeight = (Uint32)SDL_ReadLE16(src); in LoadBMP_RW() 300 biHeight = SDL_ReadLE32(src); in LoadBMP_RW() 354 if (biHeight < 0) { in LoadBMP_RW() 356 biHeight = -biHeight; in LoadBMP_RW() 434 biWidth, biHeight, biBitCount, Rmask, Gmask, Bmask, Amask); in LoadBMP_RW() 640 Sint32 biHeight; in LoadICOCUR_RW() local 709 biHeight = SDL_ReadLE32(src); in LoadICOCUR_RW() 763 (biHeight < 0) || (biHeight > 0xFFFFFF)) { in LoadICOCUR_RW() 770 biHeight = biHeight >> 1; in LoadICOCUR_RW() [all …]
|
/AliOS-Things-master/components/SDL2/src/video/ |
A D | SDL_bmp.c | 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() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/contrib/win_dib/ |
A D | Tiffile.cpp | 156 bi.biHeight = imageLength; in TIFFRGBA2DIB() 160 bi.biSizeImage = WIDTHBYTES(bi.biWidth * bi.biBitCount) * bi.biHeight; in TIFFRGBA2DIB() 211 bi.biHeight = imageLength; in TIFFRGBA2DIB() 215 bi.biSizeImage = WIDTHBYTES(bi.biWidth * bi.biBitCount) * bi.biHeight; in TIFFRGBA2DIB()
|
A D | tiff2dib.c | 270 bi.biHeight = dwHeight; // fill in height from parameter in CreateDIB()
|
/AliOS-Things-master/components/SDL2/src/video/windows/ |
A D | SDL_windowsframebuffer.c | 84 info->bmiHeader.biHeight = -window->h; /* negative for topdown bitmap */ in WIN_CreateWindowFramebuffer()
|
A D | SDL_windowskeyboard.c | 1292 infoHeader->biHeight = -1 * SDL_abs(height); in StartDrawToBitmap()
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/gregbook/ |
A D | rpng-win.c | 523 bmih->biHeight = -((long)image_height); in rpng_win_create_window()
|
A D | rpng2-win.c | 729 bmih->biHeight = -((long)rpng2_info.height);
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/visupng/ |
A D | VisualPng.c | 749 pbmih->biHeight = -((long) cyWinSize);
|
Completed in 17 milliseconds