@@ -2,7 +2,9 @@ $Id$ | |||||
Video rendering | Video rendering | ||||
o Slang's and ncurses' hashmap scrolling optimization code cause the | |||||
screen to occasionally flicker because it tries to optimize the | |||||
vertical scrolling. | |||||
o ncurses' hashmap scrolling optimization code causes the screen to | |||||
occasionally flicker because it tries to optimize the vertical | |||||
scrolling. | |||||
o Slang cannot display 256 colour pairs under Unix. | |||||
@@ -17,6 +17,10 @@ High level stuff | |||||
o Sprite library | o Sprite library | ||||
o 256 colour sprites instead of 16 | |||||
o Alpha layer for sprites | |||||
o Clip all graphics primitives | o Clip all graphics primitives | ||||
o Fix the thin ellipse rendering | o Fix the thin ellipse rendering | ||||
@@ -10,7 +10,9 @@ Section: libdevel | |||||
Architecture: any | Architecture: any | ||||
Depends: ${shlibs:Depends}, libncurses5-dev | Depends: ${shlibs:Depends}, libncurses5-dev | ||||
Description: text mode graphics library | Description: text mode graphics library | ||||
libcaca is the Colour AsCii Art library. | |||||
libcaca is the Colour AsCii Art library. It provides high level functions | |||||
for colour text drawing, simple primitives for line, polygon and ellipse | |||||
drawing, as well as powerful image to text conversion routines. | |||||
. | . | ||||
This package contains the header files and static libraries needed to | This package contains the header files and static libraries needed to | ||||
compile applications or shared objects that use libcaca. | compile applications or shared objects that use libcaca. | ||||
@@ -1,14 +1,33 @@ | |||||
.TH caca-demo 1 "2003-11-22" "libcaca" | |||||
.TH libcaca 1 "2003-11-22" "libcaca" | |||||
.SH NAME | .SH NAME | ||||
caca-demo \- libcaca's demonstration application | |||||
cacademo, cacafire \- libcaca's demonstration applications | |||||
.SH SYNOPSIS | .SH SYNOPSIS | ||||
.B caca-demo | |||||
cacademo | |||||
.PP | |||||
cacafire | |||||
.RI | .RI | ||||
.SH DESCRIPTION | .SH DESCRIPTION | ||||
This is a simple demo which demonstrates some features of the libcaca | |||||
library. | |||||
This manual page documents briefly the cacademo and cacafire programs. | |||||
.PP | |||||
.B cacademo | |||||
is a simple demo which demonstrates some features of the libcaca | |||||
library. The main menu lists available keys and their actions. To | |||||
exit a particular demo, press any key. | |||||
.PP | |||||
.B cacafire | |||||
displays burning ASCII art flames. | |||||
.SH BUGS | |||||
Please report any bugs you find to <libcaca@lists.zoy.org>. | |||||
.SH LICENSE | |||||
cacademo and cacafire are all covered by the GNU Lesser General Public | |||||
License (LGPL). | |||||
.SH AUTHORS | |||||
.B cacafire | |||||
is a port of AAlib's | |||||
.B aafire | |||||
written by Jan Hubicka <hubicka@freesoft.cz>. | |||||
.PP | .PP | ||||
The main menu lists available keys and their actions. To exit a particular | |||||
demo, press any key. | |||||
.SH AUTHOR | |||||
This manual page was written by Sam Hocevar <sam@zoy.org> | |||||
.B cacademo | |||||
and this manual page were written by Sam Hocevar <sam@zoy.org> | |||||
.SH SEE ALSO | |||||
cacaview(1), aafire(1) |
@@ -34,6 +34,9 @@ zoom in and out | |||||
.B z | .B z | ||||
reset the zoom level to normal | reset the zoom level to normal | ||||
.TP | .TP | ||||
.B f | |||||
switch fullscreen mode (hide/show menu and status bars) | |||||
.TP | |||||
.B d | .B d | ||||
toggle the dithering mode (no dithering, 4x4 ordered dithering, 8x8 ordered | toggle the dithering mode (no dithering, 4x4 ordered dithering, 8x8 ordered | ||||
dithering and random dithering) | dithering and random dithering) | ||||