HomeSort by relevance Sort by last modified time
    Searched refs:BITMAP (Results 1 - 25 of 38) 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...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
sbitmap.h 24 /* It's not clear yet whether using bitmap.[ch] will be a win.
53 #define SBITMAP_SIZE_BYTES(BITMAP) ((BITMAP)->size * sizeof (SBITMAP_ELT_TYPE))
55 /* Test if bit number bitno in the bitmap is set. */
56 #define TEST_BIT(BITMAP, BITNO) \
57 ((BITMAP)->elms [(BITNO) / SBITMAP_ELT_BITS] >> (BITNO) % SBITMAP_ELT_BITS & 1)
60 if this bitmap has one. */
79 count if this bitmap has one. */
97 /* The pointer to the first word of the bitmap. */
100 /* 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. */
52 /* Bitmap set element. We use a linked list to hold only the bits that
73 /* Head of bitmap linked list. gengtype ignores ifdefs, but for
74 statistics we need to add a bitmap descriptor pointer. As it is
89 extern bitmap_element bitmap_zero_bits; /* Zero bitmap element */
90 extern bitmap_obstack bitmap_default_obstack; /* Default bitmap obstack */
92 /* Clear a bitmap by freeing up the linked list. */
93 extern void bitmap_clear (bitmap);
95 /* Copy a bitmap to another bitmap. *
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
sbitmap.h 24 /* It's not clear yet whether using bitmap.[ch] will be a win.
53 #define SBITMAP_SIZE_BYTES(BITMAP) ((BITMAP)->size * sizeof (SBITMAP_ELT_TYPE))
55 /* Test if bit number bitno in the bitmap is set. */
56 #define TEST_BIT(BITMAP, BITNO) \
57 ((BITMAP)->elms [(BITNO) / SBITMAP_ELT_BITS] >> (BITNO) % SBITMAP_ELT_BITS & 1)
60 if this bitmap has one. */
79 count if this bitmap has one. */
97 /* The pointer to the first word of the bitmap. */
100 /* 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. */
52 /* Bitmap set element. We use a linked list to hold only the bits that
73 /* Head of bitmap linked list. gengtype ignores ifdefs, but for
74 statistics we need to add a bitmap descriptor pointer. As it is
89 extern bitmap_element bitmap_zero_bits; /* Zero bitmap element */
90 extern bitmap_obstack bitmap_default_obstack; /* Default bitmap obstack */
92 /* Clear a bitmap by freeing up the linked list. */
93 extern void bitmap_clear (bitmap);
95 /* Copy a bitmap to another bitmap. *
    [all...]
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
sbitmap.h 24 /* It's not clear yet whether using bitmap.[ch] will be a win.
53 #define SBITMAP_SIZE_BYTES(BITMAP) ((BITMAP)->size * sizeof (SBITMAP_ELT_TYPE))
55 /* Test if bit number bitno in the bitmap is set. */
56 #define TEST_BIT(BITMAP, BITNO) \
57 ((BITMAP)->elms [(BITNO) / SBITMAP_ELT_BITS] >> (BITNO) % SBITMAP_ELT_BITS & 1)
60 if this bitmap has one. */
79 count if this bitmap has one. */
97 /* The pointer to the first word of the bitmap. */
100 /* 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. */
52 /* Bitmap set element. We use a linked list to hold only the bits that
73 /* Head of bitmap linked list. gengtype ignores ifdefs, but for
74 statistics we need to add a bitmap descriptor pointer. As it is
89 extern bitmap_element bitmap_zero_bits; /* Zero bitmap element */
90 extern bitmap_obstack bitmap_default_obstack; /* Default bitmap obstack */
92 /* Clear a bitmap by freeing up the linked list. */
93 extern void bitmap_clear (bitmap);
95 /* 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);
  /development/tools/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;
439 BITMAP bm;
441 return GetObject(pix->getBmap(), sizeof(BITMAP), (LPSTR)&bm);
458 BITMAP bm;
459 if(!GetObject(pix, sizeof(BITMAP), (LPSTR)&bm)) return false;
  /frameworks/base/core/java/android/widget/
RemoteViews.java 32 import android.graphics.Bitmap;
138 // We currently only calculate Bitmap memory usage, so by default, don't do anything
645 static final int BITMAP = 12;
704 case BITMAP:
705 this.value = Bitmap.CREATOR.createFromParcel(in);
762 case BITMAP:
763 ((Bitmap)this.value).writeToParcel(out, flags);
800 case BITMAP:
801 return Bitmap.class;
853 // We currently only calculate Bitmap memory usag
    [all...]
  /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...]
  /external/qemu/android/camera/
camera-capture-windows.c 59 /* DC for frame bitmap manipulation. Null indicates that frames are not
62 /* Bitmap info for the frames obtained from the video capture driver. */
64 /* Bitmap info to use for GetDIBits calls. We can't really use bitmap info
68 * which causes GetDIBits to fail. Second, the bitmap that represents a frame
70 * bitmap info that capture driver has returned. Sometimes the captured bitmap
72 * address these issues we need to have another bitmap info, that can be used
81 /* If != 0, frame bitmap is "top-down". If 0, frame bitmap is "bottom-up". *
237 BITMAP bitmap; local
    [all...]
  /frameworks/base/libs/rs/
rsFont.h 50 BITMAP,
90 uint8_t *bitmap = NULL, uint32_t bitmapW = 0, uint32_t bitmapH = 0);
97 // Location of the cached glyph in the bitmap
112 // Values below contain a glyph's origin in the bitmap
137 uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH);
154 uint8_t *bitmap = NULL, uint32_t bitmapW = 0, uint32_t bitmapH = 0);
177 bool fitBitmap(FT_Bitmap_ *bitmap, uint32_t *retOriginX, uint32_t *retOriginY);
222 bool cacheBitmap(FT_Bitmap_ *bitmap, uint32_t *retOriginX, uint32_t *retOriginY);
  /external/webkit/Source/WebCore/platform/graphics/wx/
GraphicsContextWx.cpp 616 // Create a bitmap DC in which to draw.
631 HBITMAP bitmap = ::CreateDIBSection(0, &bitmapInfo, DIB_RGB_COLORS, &pixels, 0, 0); local
632 if (!bitmap)
639 ::SelectObject(bitmapDC, bitmap);
643 BITMAP bmpInfo;
644 GetObject(bitmap, sizeof(bmpInfo), &bmpInfo);
657 HBITMAP bitmap = static_cast<HBITMAP>(GetCurrentObject(hdc, OBJ_BITMAP)); local
658 BITMAP info;
659 GetObject(bitmap, sizeof(info), &info);
663 bmp.SetHBITMAP(bitmap);
    [all...]

Completed in 247 milliseconds

1 2