Searched defs:bmih (Results 1 - 4 of 4) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/util/
H A Du_debug_image.c241 struct bmp_info_header bmih; local
253 bmih.biSize = 40;
254 bmih.biWidth = width;
255 bmih.biHeight = height;
256 bmih.biPlanes = 1;
257 bmih.biBitCount = 32;
258 bmih.biCompression = 0;
259 bmih.biSizeImage = height*width*4;
260 bmih.biXPelsPerMeter = 0;
261 bmih
297 struct bmp_info_header bmih; local
[all...]
/external/pdfium/core/fxge/win32/
H A Dfx_win32_dib.cpp193 BITMAPINFOHEADER bmih; local
194 FXSYS_memset(&bmih, 0, sizeof bmih);
195 bmih.biSize = sizeof bmih;
196 bmih.biBitCount = 24;
197 bmih.biHeight = -height;
198 bmih.biPlanes = 1;
199 bmih.biWidth = width;
200 m_hBitmap = CreateDIBSection(hDC, (BITMAPINFO*)&bmih, DIB_RGB_COLOR
[all...]
/external/libpng/contrib/gregbook/
H A Drpng-win.c159 static BITMAPINFOHEADER *bmih; variable
513 bmih = (BITMAPINFOHEADER *)dib;
514 bmih->biSize = sizeof(BITMAPINFOHEADER);
515 bmih->biWidth = image_width;
516 bmih->biHeight = -((long)image_height);
517 bmih->biPlanes = 1;
518 bmih->biBitCount = 24;
519 bmih->biCompression = 0;
705 wimage_data, (BITMAPINFO *)bmih,
H A Drpng2-win.c267 static BITMAPINFOHEADER *bmih; variable
720 bmih = (BITMAPINFOHEADER *)dib;
721 bmih->biSize = sizeof(BITMAPINFOHEADER);
722 bmih->biWidth = rpng2_info.width;
723 bmih->biHeight = -((long)rpng2_info.height);
724 bmih->biPlanes = 1;
725 bmih->biBitCount = 24;
726 bmih->biCompression = 0;
1233 wimage_data, (BITMAPINFO *)bmih,

Completed in 182 milliseconds