Home | History | Annotate | Download | only in win

Lines Matching refs:bitmap

46     HBITMAP bitmap = static_cast<HBITMAP>(GetCurrentObject(hdc, OBJ_BITMAP));
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()));