Ignore:
Timestamp:
May 4, 2018, 1:36:00 PM (6 years ago)
Author:
chronos
Message:
  • Modified: Drawing using pen with connected lines instead of individual pixels.
  • Added: Negative image function for RGB8 format.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Packages/FastGraphics/UGGraphics.pas

    r35 r36  
    344344      for X := 0 to FSize.X - 1 do begin
    345345        if (X >= 0) and (X < FSize.X) and (Y >= 0) and (Y < FSize.Y) then
    346           PInteger(DstPtr.Pixel)^ := ColorConvertFunc(PInteger(SrcPtr.Pixel)^);
     346          PGColor(DstPtr.Pixel)^ := ColorConvertFunc(PInteger(SrcPtr.Pixel)^);
    347347        SrcPtr.NextPixel;
    348348        DstPtr.NextPixel;
Note: See TracChangeset for help on using the changeset viewer.