Searched refs:use_small_emr (Results 1 – 2 of 2) sorted by relevance
/reactos/win32ss/gdi/gdi32/wine/enhmfdrv/ |
H A D | graphics.c | 560 BOOL ret, use_small_emr = can_use_short_points( pt, count ); local 565 emr->emr.iType = use_small_emr ? iType + EMR_POLYLINE16 - EMR_POLYLINE : iType; 569 store_points( emr->aptl, pt, count, use_small_emr ); 643 BOOL ret, use_small_emr, bounds_valid = TRUE; local 650 use_small_emr = can_use_short_points( pt, cptl ); 653 if(use_small_emr) 661 if(use_small_emr) emr->emr.iType += EMR_POLYPOLYLINE16 - EMR_POLYPOLYLINE; 674 store_points( (POINTL *)(emr->aPolyCounts + polys), pt, cptl, use_small_emr ); 716 BOOL use_small_emr = can_use_short_points( pts, count ); local 724 emr->emr.iType = use_small_emr ? EMR_POLYDRAW16 : EMR_POLYDRAW; [all …]
|
/reactos/win32ss/gdi/gdi32/wine/ |
H A D | emfdc.c | 854 BOOL ret, use_small_emr = can_use_short_points( points, count ); in emfdc_polylinegon() local 859 emr->emr.iType = use_small_emr ? type + EMR_POLYLINE16 - EMR_POLYLINE : type; in emfdc_polylinegon() 863 store_points( emr->aptl, points, count, use_small_emr ); in emfdc_polylinegon() 908 BOOL ret, use_small_emr, bounds_valid = TRUE; in emfdc_poly_polylinegon() local 915 use_small_emr = can_use_short_points( pt, cptl ); in emfdc_poly_polylinegon() 918 if(use_small_emr) in emfdc_poly_polylinegon() 926 if(use_small_emr) emr->emr.iType += EMR_POLYPOLYLINE16 - EMR_POLYPOLYLINE; in emfdc_poly_polylinegon() 970 BOOL use_small_emr = can_use_short_points( pts, count ); in EMFDC_PolyDraw() local 973 size = use_small_emr ? (DWORD)offsetof( EMRPOLYDRAW16, apts[count] ) in EMFDC_PolyDraw() 979 emr->emr.iType = use_small_emr ? EMR_POLYDRAW16 : EMR_POLYDRAW; in EMFDC_PolyDraw() [all …]
|