diff options
author | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2007-12-02 18:12:30 +0000 |
---|---|---|
committer | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2007-12-02 18:12:30 +0000 |
commit | b98125eb588b85ce05fafd07f6e48413187bdba1 (patch) | |
tree | 5fbf4d8df610dc03fe6f88dfd3bd401f0d35c604 /src/corelib/x11 | |
parent | 51b57f100e50eb56b87641efb7b0cb29f8340407 (diff) | |
download | fpGUI-b98125eb588b85ce05fafd07f6e48413187bdba1.tar.xz |
* Implemented the Wu Anti-Aliased line drawing algorithm. Soon the canvas DrawLine will start using it.
* Created a very quick and simple Wu Line example.
Diffstat (limited to 'src/corelib/x11')
-rw-r--r-- | src/corelib/x11/fpgfx_package.lpk | 6 | ||||
-rw-r--r-- | src/corelib/x11/fpgfx_package.pas | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/corelib/x11/fpgfx_package.lpk b/src/corelib/x11/fpgfx_package.lpk index 49ac5b3a..6536d8e5 100644 --- a/src/corelib/x11/fpgfx_package.lpk +++ b/src/corelib/x11/fpgfx_package.lpk @@ -24,7 +24,7 @@ <License Value="Modified LGPL "/> <Version Minor="5" Release="1"/> - <Files Count="17"> + <Files Count="18"> <Item1> <Filename Value="x11_xft.pas"/> <UnitName Value="x11_xft"/> @@ -93,6 +93,10 @@ <Filename Value="../gfx_command_intf.pas"/> <UnitName Value="gfx_command_intf"/> </Item17> + <Item18> + <Filename Value="../gfx_wuline.pas"/> + <UnitName Value="gfx_wuline"/> + </Item18> </Files> <LazDoc Paths="../../../docs/xml/corelib/;../../../docs/xml/corelib/x11/;../../../docs/xml/corelib/gdi/"/> <RequiredPkgs Count="1"> diff --git a/src/corelib/x11/fpgfx_package.pas b/src/corelib/x11/fpgfx_package.pas index d3ec9058..34e24d16 100644 --- a/src/corelib/x11/fpgfx_package.pas +++ b/src/corelib/x11/fpgfx_package.pas @@ -10,7 +10,7 @@ uses x11_xft, x11_keyconv, gfxbase, gfx_x11, fpgfx, gfx_stdimages, gfx_imgfmt_bmp, gfx_widget, gfx_UTF8utils, gfx_extinterpolation, gfx_cmdlineparams, gfx_clipboard, gfx_utils, gfx_popupwindow, gfx_impl, gfx_strings, - gfx_command_intf; + gfx_command_intf, gfx_wuline; implementation |