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

  /external/chromium_org/skia/ext/
bitmap_platform_device_win.cc 20 // HBITMAP.
23 PlatformBitmapPixelRef(HBITMAP bitmap_handle, void* pixels);
33 HBITMAP bitmap_handle_;
37 HBITMAP CreateHBitmap(int width, int height, bool is_opaque,
59 HBITMAP hbitmap = CreateDIBSection(NULL, reinterpret_cast<BITMAPINFO*>(&hdr), local
64 if (!hbitmap) {
104 HBITMAP small_bitmap = CreateDIBSection(
117 return hbitmap;
120 PlatformBitmapPixelRef::PlatformBitmapPixelRef(HBITMAP bitmap_handle
200 HBITMAP hbitmap = CreateHBitmap(width, height, is_opaque, shared_section, local
380 HBITMAP hbitmap = CreateHBitmap(width, height, is_opaque, 0, &data); local
    [all...]
bitmap_platform_device_win.h 77 BitmapPlatformDevice(HBITMAP hbitmap, const SkBitmap& bitmap);
82 HBITMAP hbitmap_;
86 HBITMAP old_hbitmap_;
vector_platform_device_emf_win.cc 81 // VectorPlatformDeviceEmf has no way to detect this, so the HBITMAP
934 HBITMAP hbitmap = ::CreateDIBSection( local
951 SkASSERT(hbitmap);
952 HGDIOBJ old_bitmap = ::SelectObject(bitmap_dc, hbitmap);
976 ::SelectObject(bitmap_dc, static_cast<HBITMAP>(old_bitmap));
977 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 296 HBITMAP source_hbitmap =
306 // Now we have an HBITMAP, we can write it to the clipboard
315 void Clipboard::WriteBitmapFromHandle(HBITMAP source_hbitmap,
326 // This is the HBITMAP we will eventually write to the clipboard
327 HBITMAP hbitmap = ::CreateCompatibleBitmap(dc, size.width(), size.height()); local
328 if (!hbitmap) {
336 HBITMAP old_hbitmap = (HBITMAP)SelectObject(compatible_dc, hbitmap);
    [all...]

Completed in 681 milliseconds