Home | History | Annotate | Download | only in win32

Lines Matching refs:image_rect

1043         FX_RECT image_rect;

1044 image_rect.left = dest_width > 0 ? dest_left : dest_left + dest_width;
1045 image_rect.right = dest_width > 0 ? dest_left + dest_width : dest_left;
1046 image_rect.top = dest_height > 0 ? dest_top : dest_top + dest_height;
1047 image_rect.bottom = dest_height > 0 ? dest_top + dest_height : dest_top;
1048 FX_RECT clip_rect = image_rect;
1050 clip_rect.Offset(-image_rect.left, -image_rect.top);
1058 !GetDIBits(&background, image_rect.left + clip_rect.left, image_rect.top + clip_rect.top, NULL) ||
1064 FX_BOOL ret = SetDIBits(&background, 0, &src_rect, image_rect.left + clip_rect.left, image_rect.top + clip_rect.top, FXDIB_BLEND_NORMAL, 0, NULL);