Home | History | Annotate | Download | only in win

Lines Matching refs:info

69     BITMAP info = {0};
70 GetObject(bitmap, sizeof(info), &info);
71 ASSERT(info.bmBitsPixel == 32);
75 CGContextRef context = CGBitmapContextCreate(info.bmBits, info.bmWidth, info.bmHeight, 8,
76 info.bmWidthBytes, colorSpace.get(), kCGBitmapByteOrder32Little | kCGImageAlphaPremultipliedFirst);
78 cairo_surface_t* image = cairo_image_surface_create_for_data((unsigned char*)info.bmBits, CAIRO_FORMAT_ARGB32,
79 info.bmWidth, info.bmHeight, info.bmWidthBytes);