/external/webkit/Source/JavaScriptCore/wtf/wince/ |
MemoryManager.h | 27 typedef struct tagBITMAPINFO BITMAPINFO; 40 static HBITMAP createDIBSection(const BITMAPINFO* pbmi, void** ppvBits);
|
MemoryManager.cpp | 57 HBITMAP MemoryManager::createDIBSection(const BITMAPINFO* pbmi, void** ppvBits)
|
/external/webkit/Source/WebCore/platform/win/ |
BitmapInfo.h | 37 struct BitmapInfo : public BITMAPINFO { 47 BitmapInfo(); 48 static BitmapInfo create(const IntSize&, BitCount bitCount = BitCount32); 49 static BitmapInfo createBottomUp(const IntSize&, BitCount bitCount = BitCount32);
|
CursorWin.cpp | 30 #include "BitmapInfo.h" 49 BitmapInfo cursorImage = BitmapInfo::create(IntSize(img->width(), img->height())); 54 OwnPtr<HBITMAP> hCursor(CreateDIBSection(dc, (BITMAPINFO *)&cursorImage, DIB_RGB_COLORS, 0, 0, 0));
|
/external/chromium/chrome/browser/ui/window_snapshot/ |
window_snapshot_win.cc | 33 reinterpret_cast<BITMAPINFO*>(&hdr),
|
/external/webkit/Tools/DumpRenderTree/win/ |
PixelDumpSupportWin.cpp | 53 BITMAPINFO bmp = {0};
|
/external/qemu/android/camera/ |
camera-capture-windows.c | 63 BITMAPINFO* frame_bitmap; 74 BITMAPINFO* gdi_bitmap; 266 wcd->frame_bitmap = (BITMAPINFO*)malloc(format_info_size); 384 wcd->gdi_bitmap = (BITMAPINFO*)malloc(wcd->frame_bitmap->bmiHeader.biSize);
|
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/ |
WebDragClientWin.cpp | 33 #include <WebCore/BitmapInfo.h> 70 BITMAPINFO bitmapInfo = {0}; 71 bitmapInfo.bmiHeader.biSize = sizeof(BITMAPINFOHEADER); 72 GetDIBits(bitmapDC.get(), image, 0, 0, 0, &bitmapInfo, DIB_RGB_COLORS); 73 if (bitmapInfo.bmiHeader.biSizeImage <= 0) 74 bitmapInfo.bmiHeader.biSizeImage = bitmapInfo.bmiHeader.biWidth * abs(bitmapInfo.bmiHeader.biHeight) * (bitmapInfo.bmiHeader.biBitCount + 7) / 8 [all...] |
/external/opencv/otherlibs/highgui/ |
image.cpp | 211 BITMAPINFO* bmi = (BITMAPINFO*)buffer;
|
/external/chromium/webkit/glue/ |
webcursor_win.cc | 158 BITMAPINFO cursor_bitmap_info = {0};
|
/external/libpng/contrib/gregbook/ |
rpng-win.c | 661 wimage_data, (BITMAPINFO *)bmih,
|
rpng2-win.c | [all...] |
/external/chromium/chrome/browser/ |
aeropeek_manager.cc | 356 reinterpret_cast<BITMAPINFO*>(&header), 471 reinterpret_cast<BITMAPINFO*>(&header), [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/gapi/ |
SDL_gapivideo.c | [all...] |
/external/webkit/Source/WebCore/platform/graphics/wx/ |
GraphicsContextWx.cpp | 617 BITMAPINFO bitmapInfo; 618 bitmapInfo.bmiHeader.biSize = sizeof(BITMAPINFOHEADER); 619 bitmapInfo.bmiHeader.biWidth = dstRect.width(); 620 bitmapInfo.bmiHeader.biHeight = dstRect.height(); 621 bitmapInfo.bmiHeader.biPlanes = 1; 622 bitmapInfo.bmiHeader.biBitCount = 32; 623 bitmapInfo.bmiHeader.biCompression = BI_RGB; 624 bitmapInfo.bmiHeader.biSizeImage = 0; 625 bitmapInfo.bmiHeader.biXPelsPerMeter = 0 [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/windib/ |
SDL_dibvideo.c | 493 BITMAPINFO *binfo; 725 binfo = (BITMAPINFO *)SDL_malloc(binfo_size); [all...] |
/external/libpng/contrib/visupng/ |
VisualPng.c | 410 0, cyWinSize, pDiData, (BITMAPINFO *) pDib, DIB_RGB_COLORS);
|
/external/skia/src/ports/ |
SkFontHost_win.cpp | 507 struct MyBitmapInfo : public BITMAPINFO { [all...] |
/external/webkit/Source/WebCore/platform/graphics/qt/ |
GraphicsContextQt.cpp | [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/os2fslib/ |
SDL_os2fslib.c | 60 BITMAPINFO; [all...] |