Searched refs:biWidth (Results 1 – 10 of 10) sorted by relevance
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/ |
A D | rdbmp.c | 289 INT32 biWidth; in start_input_bmp() local 321 biWidth = (INT32) GET_2B(bmpinfoheader,4); in start_input_bmp() 343 biWidth = GET_4B(bmpinfoheader,4); 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() 416 row_width = (JDIMENSION) (biWidth * 3); in start_input_bmp() 418 row_width = (JDIMENSION) (biWidth * 4); in start_input_bmp() 420 row_width = (JDIMENSION) biWidth; in start_input_bmp() 437 (JDIMENSION) (biWidth * 3), (JDIMENSION) 1); in start_input_bmp() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/ |
A D | IMG_bmp.c | 247 Sint32 biWidth; in LoadBMP_RW() local 299 biWidth = SDL_ReadLE32(src); in LoadBMP_RW() 495 bmpPitch = (biWidth + 7) >> 3; 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() 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() [all …]
|
/AliOS-Things-master/components/SDL2/src/video/ |
A D | SDL_bmp.c | 202 Sint32 biWidth = 0; in SDL_LoadBMP_RW() local 242 biWidth = (Uint32) SDL_ReadLE16(src); in SDL_LoadBMP_RW() 254 biWidth = 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() 395 SDL_CreateRGBSurface(0, biWidth, biHeight, biBitCount, Rmask, Gmask, in SDL_LoadBMP_RW() 457 bmpPitch = (biWidth + 7) >> 3; in SDL_LoadBMP_RW() 461 bmpPitch = (biWidth + 1) >> 1; in SDL_LoadBMP_RW() 586 Sint32 biWidth; in SDL_SaveBMP_RW() local 684 biWidth = surface->w; in SDL_SaveBMP_RW() [all …]
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/contrib/win_dib/ |
A D | Tiffile.cpp | 155 bi.biWidth = imageWidth; in TIFFRGBA2DIB() 160 bi.biSizeImage = WIDTHBYTES(bi.biWidth * bi.biBitCount) * bi.biHeight; in TIFFRGBA2DIB() 210 bi.biWidth = imageWidth; in TIFFRGBA2DIB() 215 bi.biSizeImage = WIDTHBYTES(bi.biWidth * bi.biBitCount) * bi.biHeight; in TIFFRGBA2DIB()
|
A D | tiff2dib.c | 269 bi.biWidth = dwWidth; // fill in width from parameter in CreateDIB()
|
/AliOS-Things-master/components/SDL2/src/video/windows/ |
A D | SDL_windowsframebuffer.c | 83 info->bmiHeader.biWidth = window->w; in WIN_CreateWindowFramebuffer()
|
A D | SDL_windowskeyboard.c | 1291 infoHeader->biWidth = width; in StartDrawToBitmap()
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/gregbook/ |
A D | rpng-win.c | 522 bmih->biWidth = image_width; in rpng_win_create_window()
|
A D | rpng2-win.c | 728 bmih->biWidth = rpng2_info.width;
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/visupng/ |
A D | VisualPng.c | 748 pbmih->biWidth = cxWinSize;
|
Completed in 18 milliseconds