HomeSort by relevance Sort by last modified time
    Searched refs:bmih (Results 1 - 4 of 4) sorted by null

  /external/mesa3d/src/gallium/auxiliary/util/
u_debug_image.c 241 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.biYPelsPerMeter = 0
297 struct bmp_info_header bmih; local
    [all...]
  /external/pdfium/core/fxge/win32/
fx_win32_dib.cpp 193 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_COLORS
    [all...]
  /external/libpng/contrib/gregbook/
rpng-win.c 159 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,
rpng2-win.c 267 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;
    [all...]

Completed in 108 milliseconds