Home
last modified time | relevance | path

Searched refs:bounds_rc (Results 1 – 1 of 1) sorted by relevance

/reactos/dll/win32/gdiplus/
H A Dmetafile.c1522 RECTL bounds_rc, gdi_bounds_rc; in METAFILE_GraphicsDeleted() local
1528 bounds_rc.left = floorf(metafile->auto_frame_min.X * x_scale); in METAFILE_GraphicsDeleted()
1529 bounds_rc.top = floorf(metafile->auto_frame_min.Y * y_scale); in METAFILE_GraphicsDeleted()
1530 bounds_rc.right = ceilf(metafile->auto_frame_max.X * x_scale); in METAFILE_GraphicsDeleted()
1531 bounds_rc.bottom = ceilf(metafile->auto_frame_max.Y * y_scale); in METAFILE_GraphicsDeleted()
1536 bounds_rc.left = min(bounds_rc.left, gdi_bounds_rc.left); in METAFILE_GraphicsDeleted()
1537 bounds_rc.top = min(bounds_rc.top, gdi_bounds_rc.top); in METAFILE_GraphicsDeleted()
1538 bounds_rc.right = max(bounds_rc.right, gdi_bounds_rc.right); in METAFILE_GraphicsDeleted()
1539 bounds_rc.bottom = max(bounds_rc.bottom, gdi_bounds_rc.bottom); in METAFILE_GraphicsDeleted()
1550 ((ENHMETAHEADER*)buffer)->rclFrame = bounds_rc; in METAFILE_GraphicsDeleted()