Ignore:
Timestamp:
Oct 15, 2018, 5:17:15 PM (6 years ago)
Author:
chronos
Message:
  • Added: 16-bit channel RGB color format.
Location:
trunk/Packages/FastGraphics
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Packages/FastGraphics/FastGraphics.lpk

    r26 r40  
    1111      <SearchPaths>
    1212        <OtherUnitFiles Value="ColorFormats"/>
    13         <UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)\"/>
     13        <UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
    1414      </SearchPaths>
    1515      <Parsing>
     
    3232    <License Value="CC0"/>
    3333    <Version Minor="1"/>
    34     <Files Count="10">
     34    <Files Count="11">
    3535      <Item1>
    3636        <Filename Value="UFGraphics.pas"/>
     
    7474        <UnitName Value="UColorRGBA8"/>
    7575      </Item10>
     76      <Item11>
     77        <Filename Value="ColorFormats\UColorRGB16.pas"/>
     78        <UnitName Value="UColorRGB16"/>
     79      </Item11>
    7680    </Files>
    7781    <RequiredPkgs Count="2">
  • trunk/Packages/FastGraphics/FastGraphics.pas

    r26 r40  
    55unit FastGraphics;
    66
     7{$warn 5023 off : no warning about unused units}
    78interface
    89
     
    1011  UFGraphics, UGGraphics, UPixmapSpecialized, UColorGray1, UColorGray2,
    1112  UColorGray4, UColorGray8, UColorRGB8, UColorRGB565, UColorRGBA8,
    12   LazarusPackageIntf;
     13  UColorRGB16, LazarusPackageIntf;
    1314
    1415implementation
  • trunk/Packages/FastGraphics/UFGraphics.pas

    r39 r40  
    207207uses
    208208  UColorGray1, UColorGray2,UColorGray4, UColorGray8, UColorRGB8, UColorRGBA8,
    209   UColorRGB565;
     209  UColorRGB565, UColorRGB16;
    210210
    211211procedure Register;
     
    633633  RegisterFormat(TColorFormatRGBA8);
    634634  RegisterFormat(TColorFormatRGB565);
     635  RegisterFormat(TColorFormatRGB16);
    635636end;
    636637
Note: See TracChangeset for help on using the changeset viewer.