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

  /external/chromium_org/skia/ext/
bitmap_platform_device_win.cc 19 // HBITMAP.
22 PlatformBitmapPixelRef(HBITMAP bitmap_handle, void* pixels);
32 HBITMAP bitmap_handle_;
36 HBITMAP CreateHBitmap(int width, int height, bool is_opaque,
58 HBITMAP hbitmap = CreateDIBSection(NULL, reinterpret_cast<BITMAPINFO*>(&hdr), local
60 return hbitmap;
63 PlatformBitmapPixelRef::PlatformBitmapPixelRef(HBITMAP bitmap_handle,
90 HBITMAP hbitmap)
168 HBITMAP hbitmap = CreateHBitmap(width, height, is_opaque, shared_section, local
334 HBITMAP hbitmap = CreateHBitmap(width, height, is_opaque, 0, &data); local
    [all...]
vector_platform_device_emf_win.cc 81 // VectorPlatformDeviceEmf has no way to detect this, so the HBITMAP
933 HBITMAP hbitmap = ::CreateDIBSection( local
950 SkASSERT(hbitmap);
951 HGDIOBJ old_bitmap = ::SelectObject(bitmap_dc, hbitmap);
975 ::SelectObject(bitmap_dc, static_cast<HBITMAP>(old_bitmap));
976 DeleteObject(hbitmap);
  /external/chromium_org/ui/base/dragdrop/
drag_utils_win.cc 23 static void SetDragImageOnDataObject(HBITMAP hbitmap,
34 sdi.hbmpDragImage = hbitmap;
40 // Blit the contents of the canvas to a new HBITMAP. It is the caller's
42 static HBITMAP CreateHBITMAPFromSkBitmap(const SkBitmap& sk_bitmap) {
47 HBITMAP bitmap =
66 // SetDragImageOnDataObject(HBITMAP) takes ownership of the bitmap.
67 HBITMAP bitmap = CreateHBITMAPFromSkBitmap(
  /external/chromium_org/ui/base/clipboard/
clipboard_win.cc 297 HBITMAP source_hbitmap =
304 // Now we have an HBITMAP, we can write it to the clipboard
312 void Clipboard::WriteBitmapFromHandle(HBITMAP source_hbitmap,
323 // This is the HBITMAP we will eventually write to the clipboard
324 HBITMAP hbitmap = ::CreateCompatibleBitmap(dc, size.width(), size.height()); local
325 if (!hbitmap) {
333 HBITMAP old_hbitmap = (HBITMAP)SelectObject(compatible_dc, hbitmap);
    [all...]

Completed in 7904 milliseconds