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

  /external/pdfium/core/src/fxge/win32/
fx_win32_dib.cpp 191 BITMAPINFOHEADER bmih; local
192 FXSYS_memset(&bmih, 0, sizeof bmih);
193 bmih.biSize = sizeof bmih;
194 GetDIBits(hDC, hBitmap, 0, 0, NULL, (BITMAPINFO*)&bmih, DIB_RGB_COLORS);
195 int width = bmih.biWidth;
196 int height = abs(bmih.biHeight);
197 bmih.biHeight = -height;
198 bmih.biCompression = BI_RGB
266 BITMAPINFOHEADER bmih; local
    [all...]
fx_win32_device.cpp 1332 BITMAPINFOHEADER bmih; local
    [all...]
  /external/opencv3/modules/videoio/src/
cap_vfw.cpp 60 BITMAPINFOHEADER bmih; local
61 memset( &bmih, 0, sizeof(bmih));
62 bmih.biSize = sizeof(bmih);
63 bmih.biWidth = width;
64 bmih.biHeight = height;
65 bmih.biBitCount = (WORD)bpp;
66 bmih.biCompression = compression;
67 bmih.biPlanes = 1
115 BITMAPINFOHEADER * bmih; member in class:CvCaptureAVI_VFW
748 BITMAPINFO_8Bit bmih; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_debug.c 647 struct bmp_info_header bmih; local
659 bmih.biSize = 40;
660 bmih.biWidth = width;
661 bmih.biHeight = height;
662 bmih.biPlanes = 1;
663 bmih.biBitCount = 32;
664 bmih.biCompression = 0;
665 bmih.biSizeImage = height*width*4;
666 bmih.biXPelsPerMeter = 0;
667 bmih.biYPelsPerMeter = 0
    [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...]
  /external/pdfium/fpdfsdk/src/
fpdfview.cpp 599 BITMAPINFOHEADER bmih; local
600 FXSYS_memset(&bmih, 0, sizeof bmih);
601 bmih.biSize = sizeof bmih;
602 bmih.biBitCount = 24;
603 bmih.biHeight = -height;
604 bmih.biPlanes = 1;
605 bmih.biWidth = width;
606 pContext->m_hBitmap = CreateDIBSection(dc, (BITMAPINFO*)&bmih, DIB_RGB_COLORS
    [all...]
  /external/opencv3/modules/highgui/src/
window_w32.cpp 106 BITMAPINFOHEADER* bmih = &(bmi->bmiHeader); local
108 memset( bmih, 0, sizeof(*bmih));
109 bmih->biSize = sizeof(BITMAPINFOHEADER);
110 bmih->biWidth = width;
111 bmih->biHeight = origin ? abs(height) : -abs(height);
112 bmih->biPlanes = 1;
113 bmih->biBitCount = (unsigned short)bpp;
114 bmih->biCompression = BI_RGB;
    [all...]

Completed in 508 milliseconds