Ignore:
Timestamp:
Dec 22, 2016, 8:49:19 PM (8 years ago)
Author:
chronos
Message:
  • Modified: Updated BGRABitmap package.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GraphicTest/Packages/bgrabitmap/blendpixels.inc

    r452 r494  
    290290        begin
    291291          SoftLightPixelInline(pdest, psrc^);
     292          Inc(pdest);
     293          Inc(psrc);
     294          Dec(Count);
     295        end;
     296end;
     297
     298procedure SvgSoftLightPixels(pdest: PBGRAPixel; psrc: PBGRAPixel; Count: integer);
     299begin
     300  while Count > 0 do
     301        begin
     302          SvgSoftLightPixelInline(pdest, psrc^);
    292303          Inc(pdest);
    293304          Inc(psrc);
     
    327338      @GlowPixels, @ReflectPixels, @LinearOverlayPixels, @OverlayPixels, @DarkenPixels, @LinearMultiplyPixels, @ColorBurnPixels,
    328339      @DifferencePixels, @LinearDifferencePixels, @ExclusionPixels, @LinearExclusionPixels, @SubtractPixels, @LinearSubtractPixels,
    329       @SubtractInversePixels, @LinearSubtractInversePixels, @NegationPixels, @LinearNegationPixels, @BlendXorPixels);
     340      @SubtractInversePixels, @LinearSubtractInversePixels, @NegationPixels, @LinearNegationPixels, @BlendXorPixels, @SvgSoftLightPixels);
    330341
    331342procedure BlendPixels(pdest: PBGRAPixel; psrc: PBGRAPixel;
Note: See TracChangeset for help on using the changeset viewer.