source: trunk/Packages/FastGraphics/FastGraphics.pas

Last change on this file was 40, checked in by chronos, 6 years ago
  • Added: 16-bit channel RGB color format.
File size: 582 bytes
Line 
1{ This file was automatically created by Lazarus. Do not edit!
2 This source is only used to compile and install the package.
3 }
4
5unit FastGraphics;
6
7{$warn 5023 off : no warning about unused units}
8interface
9
10uses
11 UFGraphics, UGGraphics, UPixmapSpecialized, UColorGray1, UColorGray2,
12 UColorGray4, UColorGray8, UColorRGB8, UColorRGB565, UColorRGBA8,
13 UColorRGB16, LazarusPackageIntf;
14
15implementation
16
17procedure Register;
18begin
19 RegisterUnit('UFGraphics', @UFGraphics.Register);
20end;
21
22initialization
23 RegisterPackage('FastGraphics', @Register);
24end.
Note: See TracBrowser for help on using the repository browser.