Ignore:
Timestamp:
Feb 1, 2012, 3:02:33 PM (12 years ago)
Author:
chronos
Message:
  • Modified: Updated BGRABitmap package to version 5.5.
  • Modified: Removed draw method ComboBox and reorganized method list to single listview with using ownerdraw facility.
  • Added: New draw method TBitmap.RawImage.Data Move which use fast Move operation. It requires same pixel format.
  • Added: New draw method Dummy for comparion of empty method and to determine possibily max frame rate limit.
Location:
GraphicTest/BGRABitmap
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • GraphicTest/BGRABitmap

    • Property svn:ignore set to
      lib
  • GraphicTest/BGRABitmap/bgraanimatedgif.pas

    r210 r317  
    10051005            begin
    10061006              PChangePix^ := PBackground^;
    1007               DrawPixelInline(PBGRAPixel(PChangePix), PBGRAPixel(@newpix)^);
     1007              DrawPixelInlineNoAlphaCheck(PBGRAPixel(PChangePix), PBGRAPixel(@newpix)^);
    10081008            end
    10091009            else if PChangePix^ and AlphaMask <> 0 then
     
    10451045              begin
    10461046                PChangePix^ := PBackground^;
    1047                 DrawPixelInline(PBGRAPixel(PChangePix), PBGRAPixel(@newpix)^);
     1047                DrawPixelInlineNoAlphaCheck(PBGRAPixel(PChangePix), PBGRAPixel(@newpix)^);
    10481048              end
    10491049              else if PChangePix^ and AlphaMask <> 0 then
     
    11761176        begin
    11771177          PChangePix^ := MemPixEraseColor;
    1178           DrawPixelInline(PBGRAPixel(PChangePix), PBGRAPixel(@newpix)^);
     1178          DrawPixelInlineNoAlphaCheck(PBGRAPixel(PChangePix), PBGRAPixel(@newpix)^);
    11791179        end
    11801180        else if PChangePix^ and AlphaMask <> 0 then
Note: See TracChangeset for help on using the changeset viewer.