HomeSort by relevance Sort by last modified time
    Searched defs:hbitmap (Results 1 - 3 of 3) 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...]
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/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 164 milliseconds