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

  /external/webkit/WebCore/platform/graphics/win/
ImageCGWin.cpp 40 DIBSECTION dibSection;
41 if (!GetObject(hBitmap, sizeof(DIBSECTION), &dibSection))
44 ASSERT(dibSection.dsBm.bmBitsPixel == 32);
45 if (dibSection.dsBm.bmBitsPixel != 32)
48 ASSERT(dibSection.dsBm.bmBits);
49 if (!dibSection.dsBm.bmBits)
53 RetainPtr<CGContextRef> bitmapContext(AdoptCF, CGBitmapContextCreate(dibSection.dsBm.bmBits, dibSection.dsBm.bmWidth, dibSection.dsBm.bmHeight, 8
    [all...]
ImageCairoWin.cpp 40 DIBSECTION dibSection;
41 if (!GetObject(hBitmap, sizeof(DIBSECTION), &dibSection))
44 ASSERT(dibSection.dsBm.bmBitsPixel == 32);
45 if (dibSection.dsBm.bmBitsPixel != 32)
48 ASSERT(dibSection.dsBm.bmBits);
49 if (!dibSection.dsBm.bmBits)
52 cairo_surface_t* image = cairo_win32_surface_create_with_dib (CAIRO_FORMAT_ARGB32, dibSection.dsBm.bmWidth, dibSection.dsBm.bmHeight)
    [all...]

Completed in 14 milliseconds