HomeSort by relevance Sort by last modified time
    Searched full:bitmapinfo (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/webkit/Source/WebCore/platform/win/
BitmapInfo.cpp 30 #include "BitmapInfo.h"
36 BitmapInfo bitmapInfoForSize(int width, int height, BitmapInfo::BitCount bitCount)
38 BitmapInfo bitmapInfo;
39 bitmapInfo.bmiHeader.biWidth = width;
40 bitmapInfo.bmiHeader.biHeight = height;
41 bitmapInfo.bmiHeader.biPlanes = 1;
42 bitmapInfo.bmiHeader.biBitCount = bitCount;
43 bitmapInfo.bmiHeader.biCompression = BI_RGB
    [all...]
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);
DragImageCGWin.cpp 29 #include "BitmapInfo.h"
48 BitmapInfo bmpInfo = BitmapInfo::create(size);
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));
DragImageCairoWin.cpp 29 #include "BitmapInfo.h"
47 BitmapInfo bmpInfo = BitmapInfo::create(size);
PopupMenuWin.cpp 26 #include "BitmapInfo.h"
584 BitmapInfo bitmapInfo = BitmapInfo::createBottomUp(clientRect().size(), BitmapInfo::BitCount16);
586 BitmapInfo bitmapInfo = BitmapInfo::createBottomUp(clientRect().size());
589 m_bmp = ::CreateDIBSection(m_DC, &bitmapInfo, DIB_RGB_COLORS, &pixels, 0, 0);
PasteboardWin.cpp 29 #include "BitmapInfo.h"
227 BitmapInfo bmInfo = BitmapInfo::create(image->size());
  /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/webkit/Source/WebKit2/UIProcess/win/
ChunkedUpdateDrawingAreaProxyWin.cpp 32 #include <WebCore/BitmapInfo.h>
48 BitmapInfo bitmapInfo = BitmapInfo::createBottomUp(size());
51 m_backingStoreBitmap.set(::CreateDIBSection(0, &bitmapInfo, DIB_RGB_COLORS, &pixels, 0, 0));
85 BitmapInfo bitmapInfo = BitmapInfo::createBottomUp(updateChunk->rect().size());
93 OwnPtr<HBITMAP> hBitmap(::CreateDIBSection(0, &bitmapInfo, DIB_RGB_COLORS, &pixels, updateChunkHandle, 0));
BackingStoreWin.cpp 31 #include <WebCore/BitmapInfo.h>
73 BitmapInfo info = BitmapInfo::createBottomUp(size);
  /external/webkit/Source/WebCore/platform/brew/
ScreenBrew.cpp 54 AEEBitmapInfo bitmapInfo;
55 IBitmap_GetInfo(bitmap.get(), &bitmapInfo, sizeof(AEEBitmapInfo));
57 info.width = bitmapInfo.cx;
58 info.height = bitmapInfo.cy;
59 info.depth = bitmapInfo.nDepth;
  /external/webkit/Source/WebCore/platform/graphics/win/
GraphicsContextWin.cpp 36 #include "BitmapInfo.h"
69 BitmapInfo bitmapInfo = BitmapInfo::create(size);
72 m_bitmap = CreateDIBSection(0, &bitmapInfo, DIB_RGB_COLORS, &storage, 0, 0);
108 BitmapInfo bitmapInfo = BitmapInfo::create(dstRect.size());
111 HBITMAP bitmap = ::CreateDIBSection(NULL, &bitmapInfo, DIB_RGB_COLORS, &pixels, 0, 0);
  /external/webkit/Source/WebCore/platform/graphics/wince/
SharedBitmap.h 25 #include "BitmapInfo.h"
47 static PassRefPtr<SharedBitmap> create(const IntSize&, BitmapInfo::BitCount = BitmapInfo::BitCount32, bool initPixels = true);
50 const BitmapInfo& bitmapInfo() const { return m_bmpInfo; }
70 PassOwnPtr<HBITMAP> createHandle(void** pixels, BitmapInfo* bmpInfo, int h = -1, bool use16bit = true) const;
80 PassOwnPtr<HBITMAP> clipBitmap(const IntRect& rect, bool useAlpha, BitmapInfo& bmpInfo, void*& pixels);
131 SharedBitmap(const IntSize&, BitmapInfo::BitCount, bool initPixels);
132 BitmapInfo m_bmpInfo;
SharedBitmap.cpp 43 PassRefPtr<SharedBitmap> SharedBitmap::create(const IntSize& size, BitmapInfo::BitCount bitCount, bool initPixels)
53 RefPtr<SharedBitmap> result = create(size, BitmapInfo::BitCount32, false);
61 SharedBitmap::SharedBitmap(const IntSize& size, BitmapInfo::BitCount bitCount, bool initPixels)
62 : m_bmpInfo(BitmapInfo::createBottomUp(size, bitCount))
76 if (bitCount == BitmapInfo::BitCount16)
133 BitmapInfo newBmpInfo = BitmapInfo::create(m_bmpInfo.size(), BitmapInfo::BitCount16);
190 PassOwnPtr<HBITMAP> SharedBitmap::createHandle(void** pixels, BitmapInfo* bmpInfo, int height, bool use16bit) const
197 *bmpInfo = BitmapInfo::createBottomUp(IntSize(width(), height), (use16bit || is16bit()) ? BitmapInfo::BitCount16 : Bitma (…)
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/win/
ChunkedUpdateDrawingAreaWin.cpp 31 #include <WebCore/BitmapInfo.h>
43 BitmapInfo bmp = BitmapInfo::createBottomUp(updateChunk->rect().size());
  /external/skia/src/pipe/
SkGPipePriv.h 156 class BitmapInfo : SkNoncopyable {
158 BitmapInfo(SkBitmap* bitmap, uint32_t genID, int toBeDrawnCount)
167 ~BitmapInfo() {
199 // bitmap or removing this BitmapInfo we know how much memory has been
203 BitmapInfo* fMoreRecentlyUsed;
204 BitmapInfo* fLessRecentlyUsed;
  /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/webkit/Source/WebKit/win/
WebNodeHighlight.cpp 33 #include <WebCore/BitmapInfo.h>
148 BitmapInfo bitmapInfo = BitmapInfo::createBottomUp(IntSize(size));
151 OwnPtr<HBITMAP> hbmp(::CreateDIBSection(hdc, &bitmapInfo, DIB_RGB_COLORS, &pixels, 0, 0));
  /external/webkit/Source/WebCore/page/win/
FrameCGWin.cpp 31 #include "BitmapInfo.h"
62 BitmapInfo bmp = BitmapInfo::create(IntSize(w, h));
  /external/webkit/Source/WebKit2/Shared/cg/
ShareableBitmapCG.cpp 37 static CGBitmapInfo bitmapInfo(ShareableBitmap::Flags flags)
56 bitmapInfo(m_flags), releaseBitmapContextData, this));
83 RetainPtr<CGImageRef> image(AdoptCF, CGImageCreate(m_size.width(), m_size.height(), 8, 32, m_size.width() * 4, colorSpace.get(), bitmapInfo(m_flags), dataProvider.get(), 0, false, kCGRenderingIntentDefault));
  /external/webkit/Source/JavaScriptCore/wtf/wince/
MemoryManager.h 27 typedef struct tagBITMAPINFO BITMAPINFO;
40 static HBITMAP createDIBSection(const BITMAPINFO* pbmi, void** ppvBits);
  /external/clang/test/Analysis/Inputs/
system-header-simulator.h 61 CGBitmapInfo bitmapInfo*/);
  /external/chromium/chrome/browser/ui/window_snapshot/
window_snapshot_win.cc 33 reinterpret_cast<BITMAPINFO*>(&hdr),
  /external/opencv/otherlibs/highgui/
image.cpp 211 BITMAPINFO* bmi = (BITMAPINFO*)buffer;
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp     [all...]

Completed in 1756 milliseconds

1 2 3