Răsfoiți Sursa

draft pen phong aliased

Johann ELSASS 5 ani în urmă
părinte
comite
540f333f4d
1 a modificat fișierele cu 4 adăugiri și 1 ștergeri
  1. 4 1
      lazpaintcontrols/lcvectortextshapes.pas

+ 4 - 1
lazpaintcontrols/lcvectortextshapes.pas

@@ -1366,7 +1366,10 @@ var
       pts[i].Offset(AOffset.x, AOffset.Y);
       pts[i].Offset(AOffset.x, AOffset.Y);
 
 
     ADestination.FillMode:= fmWinding;
     ADestination.FillMode:= fmWinding;
-    ADestination.FillPolyAntialias(pts, ABrush, false);
+    if (ADraft and PenPhong) or Aliased then
+      ADestination.FillPoly(pts, ABrush, false)
+    else
+      ADestination.FillPolyAntialias(pts, ABrush, false);
   end;
   end;
 
 
   procedure RenderPen(ADestination: TBGRACustomBitmap; AOffset: TPoint);
   procedure RenderPen(ADestination: TBGRACustomBitmap; AOffset: TPoint);