HomeSort by relevance Sort by last modified time
    Searched refs:BITMAP (Results 1 - 25 of 43) sorted by null

1 2

  /external/chromium/chrome/browser/
icon_loader_win.cc 37 BITMAP bitmap_info = { 0 };
  /external/webkit/Source/WebCore/platform/graphics/win/
ImageCGWin.cpp 66 BITMAP bmpInfo;
67 GetObject(bmp, sizeof(BITMAP), &bmpInfo);
ImageCairoWin.cpp 62 BITMAP bmpInfo;
63 GetObject(bmp, sizeof(BITMAP), &bmpInfo);
65 // If this is a 32bpp bitmap, which it always should be, we'll clear it so alpha-wise it will be visible
DIBPixelData.cpp 34 DIBPixelData::DIBPixelData(HBITMAP bitmap)
36 initialize(bitmap);
39 void DIBPixelData::initialize(HBITMAP bitmap)
41 BITMAP bmpInfo;
42 GetObject(bitmap, sizeof(bmpInfo), &bmpInfo);
GraphicsContextCairoWin.cpp 46 HBITMAP bitmap = static_cast<HBITMAP>(GetCurrentObject(hdc, OBJ_BITMAP)); local
48 BITMAP info;
49 if (!GetObject(bitmap, sizeof(info), &info))
98 // Need to make a cairo_surface_t out of the bitmap's pixel buffer and then draw
134 OwnPtr<HBITMAP> bitmap = adoptPtr(static_cast<HBITMAP>(GetCurrentObject(hdc, OBJ_BITMAP)));
136 DIBPixelData pixelData(bitmap.get());
141 // to zero. We need to manually set the bitmap to be fully opaque.
151 void GraphicsContext::drawWindowsBitmap(WindowsBitmap* bitmap, const IntPoint& point)
153 drawBitmapToContext(m_data, platformContext()->cr(), bitmap->windowsDIB(), IntSize(point.x(), bitmap->size().height() + point.y()))
    [all...]
GraphicsContextWin.cpp 46 static void fillWithClearColor(HBITMAP bitmap)
48 BITMAP bmpInfo;
49 GetObject(bitmap, sizeof(bmpInfo), &bmpInfo);
102 // FIXME: Should a bitmap be created also when a shadow is set?
107 // Create a bitmap DC in which to draw.
111 HBITMAP bitmap = ::CreateDIBSection(NULL, &bitmapInfo, DIB_RGB_COLORS, &pixels, 0, 0); local
112 if (!bitmap)
116 ::SelectObject(bitmapDC, bitmap);
120 fillWithClearColor(bitmap);
125 // Apply a translation to our context so that the drawing done will be at (0,0) of the bitmap
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
sbitmap.h 24 /* It's not clear yet whether using bitmap.[ch] will be a win.
49 #define SBITMAP_SIZE_BYTES(BITMAP) ((BITMAP)->size * sizeof (SBITMAP_ELT_TYPE))
51 /* Test if bit number bitno in the bitmap is set. */
52 #define TEST_BIT(BITMAP, BITNO) \
53 ((BITMAP)->elms [(BITNO) / SBITMAP_ELT_BITS] >> (BITNO) % SBITMAP_ELT_BITS & 1)
56 if this bitmap has one. */
75 count if this bitmap has one. */
93 /* The pointer to the first word of the bitmap. */
96 /* The size of the bitmap. *
    [all...]
bitmap.h 27 /* Fundamental storage type for bitmap. */
40 /* Number of bits in each actual element of a bitmap. */
51 /* Bitmap set element. We use a linked list to hold only the bits that
71 /* Head of bitmap linked list. gengtype ignores ifdefs, but for
72 statistics we need to add a bitmap descriptor pointer. As it is
87 extern bitmap_element bitmap_zero_bits; /* Zero bitmap element */
88 extern bitmap_obstack bitmap_default_obstack; /* Default bitmap obstack */
90 /* Clear a bitmap by freeing up the linked list. */
91 extern void bitmap_clear (bitmap);
93 /* Copy a bitmap to another bitmap. *
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
sbitmap.h 24 /* It's not clear yet whether using bitmap.[ch] will be a win.
49 #define SBITMAP_SIZE_BYTES(BITMAP) ((BITMAP)->size * sizeof (SBITMAP_ELT_TYPE))
51 /* Test if bit number bitno in the bitmap is set. */
52 #define TEST_BIT(BITMAP, BITNO) \
53 ((BITMAP)->elms [(BITNO) / SBITMAP_ELT_BITS] >> (BITNO) % SBITMAP_ELT_BITS & 1)
56 if this bitmap has one. */
75 count if this bitmap has one. */
93 /* The pointer to the first word of the bitmap. */
96 /* The size of the bitmap. *
    [all...]
bitmap.h 27 /* Fundamental storage type for bitmap. */
40 /* Number of bits in each actual element of a bitmap. */
51 /* Bitmap set element. We use a linked list to hold only the bits that
71 /* Head of bitmap linked list. gengtype ignores ifdefs, but for
72 statistics we need to add a bitmap descriptor pointer. As it is
87 extern bitmap_element bitmap_zero_bits; /* Zero bitmap element */
88 extern bitmap_obstack bitmap_default_obstack; /* Default bitmap obstack */
90 /* Clear a bitmap by freeing up the linked list. */
91 extern void bitmap_clear (bitmap);
93 /* Copy a bitmap to another bitmap. *
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
sbitmap.h 24 /* It's not clear yet whether using bitmap.[ch] will be a win.
49 #define SBITMAP_SIZE_BYTES(BITMAP) ((BITMAP)->size * sizeof (SBITMAP_ELT_TYPE))
51 /* Test if bit number bitno in the bitmap is set. */
52 #define TEST_BIT(BITMAP, BITNO) \
53 ((BITMAP)->elms [(BITNO) / SBITMAP_ELT_BITS] >> (BITNO) % SBITMAP_ELT_BITS & 1)
56 if this bitmap has one. */
75 count if this bitmap has one. */
93 /* The pointer to the first word of the bitmap. */
96 /* The size of the bitmap. *
    [all...]
bitmap.h 27 /* Fundamental storage type for bitmap. */
40 /* Number of bits in each actual element of a bitmap. */
51 /* Bitmap set element. We use a linked list to hold only the bits that
71 /* Head of bitmap linked list. gengtype ignores ifdefs, but for
72 statistics we need to add a bitmap descriptor pointer. As it is
87 extern bitmap_element bitmap_zero_bits; /* Zero bitmap element */
88 extern bitmap_obstack bitmap_default_obstack; /* Default bitmap obstack */
90 /* Clear a bitmap by freeing up the linked list. */
91 extern void bitmap_clear (bitmap);
93 /* Copy a bitmap to another bitmap. *
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
sbitmap.h 24 /* It's not clear yet whether using bitmap.[ch] will be a win.
49 #define SBITMAP_SIZE_BYTES(BITMAP) ((BITMAP)->size * sizeof (SBITMAP_ELT_TYPE))
51 /* Test if bit number bitno in the bitmap is set. */
52 #define TEST_BIT(BITMAP, BITNO) \
53 ((BITMAP)->elms [(BITNO) / SBITMAP_ELT_BITS] >> (BITNO) % SBITMAP_ELT_BITS & 1)
56 if this bitmap has one. */
75 count if this bitmap has one. */
93 /* The pointer to the first word of the bitmap. */
96 /* The size of the bitmap. *
    [all...]
bitmap.h 27 /* Fundamental storage type for bitmap. */
40 /* Number of bits in each actual element of a bitmap. */
51 /* Bitmap set element. We use a linked list to hold only the bits that
71 /* Head of bitmap linked list. gengtype ignores ifdefs, but for
72 statistics we need to add a bitmap descriptor pointer. As it is
87 extern bitmap_element bitmap_zero_bits; /* Zero bitmap element */
88 extern bitmap_obstack bitmap_default_obstack; /* Default bitmap obstack */
90 /* Clear a bitmap by freeing up the linked list. */
91 extern void bitmap_clear (bitmap);
93 /* Copy a bitmap to another bitmap. *
    [all...]
  /external/webkit/Tools/DumpRenderTree/win/
PixelDumpSupportWin.cpp 62 HBITMAP bitmap = CreateDIBSection(0, &bmp, DIB_RGB_COLORS, &bits, 0, 0); local
65 SelectObject(memoryDC, bitmap);
69 BITMAP info = {0};
70 GetObject(bitmap, sizeof(info), &info);
84 return BitmapContext::createByAdoptingBitmapAndContext(bitmap, context);
  /external/webkit/Source/WebCore/platform/graphics/wince/
ImageWinCE.cpp 67 BITMAP bmpInfo;
68 GetObject(bmp, sizeof(BITMAP), &bmpInfo);
  /external/webkit/Source/WebCore/platform/win/
DragImageWin.cpp 53 BITMAP b;
54 GetObject(image, sizeof(BITMAP), &b);
DragImageCGWin.cpp 68 static CGContextRef createCgContextFromBitmap(HBITMAP bitmap)
70 BITMAP info;
71 GetObject(bitmap, sizeof(info), &info);
DragImageCairoWin.cpp 88 static cairo_surface_t* createCairoContextFromBitmap(HBITMAP bitmap)
90 BITMAP info;
91 GetObject(bitmap, sizeof(info), &info);
94 // At this point, we have a Cairo surface that points to a Windows BITMAP. The BITMAP
CursorWin.cpp 82 BITMAP cursor;
83 GetObject(hCursor.get(), sizeof(BITMAP), &cursor);
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebDragClient.cpp 129 BITMAP b;
130 GetObject(image, sizeof(BITMAP), &b);
  /frameworks/base/libs/hwui/font/
Font.h 52 * If bitmap is specified, it will be used as the render target
55 int numGlyphs, int x, int y, uint8_t *bitmap = NULL,
78 BITMAP,
85 int numGlyphs, int x, int y, RenderMode mode, uint8_t *bitmap,
104 uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH,
107 uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH,
110 uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH,
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglWindowsApi.cpp 344 EGLint window,bitmap,pbuffer,transparent; local
365 IS_TRUE(s_wglExtProcs->wglGetPixelFormatAttribivARB(dpy,index,0,1,&attribs[1],&bitmap));
368 if(bitmap) supportedSurfaces |= EGL_PIXMAP_BIT;
443 BITMAP bm;
445 return GetObject(pix->getBmap(), sizeof(BITMAP), (LPSTR)&bm);
462 BITMAP bm;
463 if(!GetObject(pix, sizeof(BITMAP), (LPSTR)&bm)) return false;
  /external/openssl/crypto/rand/
rand_win.c 743 HBITMAP hBitmap; /* handle for our bitmap */
744 HBITMAP hOldBitmap; /* handle for previous bitmap */
745 BITMAP bm; /* bitmap properties */
746 unsigned int size; /* size of bitmap */
747 char *bmbits; /* contents of bitmap */
764 /* Create a bitmap compatible with the screen DC */
767 /* Select new bitmap into memory DC */
770 /* Get bitmap properties */
771 GetObject(hBitmap, sizeof(BITMAP), (LPSTR)&bm)
    [all...]
  /frameworks/rs/
rsFont.h 49 BITMAP,
89 uint8_t *bitmap = NULL, uint32_t bitmapW = 0, uint32_t bitmapH = 0);
96 // Location of the cached glyph in the bitmap
111 // Values below contain a glyph's origin in the bitmap
136 uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH);
153 uint8_t *bitmap = NULL, uint32_t bitmapW = 0, uint32_t bitmapH = 0);
179 bool fitBitmap(FT_Bitmap_ *bitmap, uint32_t *retOriginX, uint32_t *retOriginY);
225 bool cacheBitmap(FT_Bitmap_ *bitmap, uint32_t *retOriginX, uint32_t *retOriginY);

Completed in 5053 milliseconds

1 2