Changeset 297
- Timestamp:
- Dec 31, 2003, 2:55:34 PM (19 years ago)
- Location:
- libcaca/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/BUGS
r281 r297 3 3 Video rendering 4 4 5 o ncurses' hashmap scrolling optimi zation code causes the screen to6 occasionally flicker because it tries to optimi ze the vertical5 o ncurses' hashmap scrolling optimisation code causes the screen to 6 occasionally flicker because it tries to optimise the vertical 7 7 scrolling. 8 9 o Slang cannot display 256 colour pairs under Unix. This is partially10 solved by the OPTIMISE_SLANG_PALETTE code.11 8 12 9 o the X11 driver is very slow. 13 10 11 o some terminal emulators (Konsole, or the Linux VGA console) honour 12 the blink attribute instead of using it for bold or bright like any 13 other terminal emulator, hence reducing the amount of available 14 colour pairs. 15 -
libcaca/trunk/debian/rules
r271 r297 13 13 14 14 confflags += --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info 15 confflags += --enable-ncurses --enable-slang --enable-x11 15 confflags += --enable-ncurses --enable-slang --enable-x11 --enable-imlib2 16 16 17 17 configure: configure-stamp -
libcaca/trunk/doc/Makefile.am
r296 r297 39 39 if DOXYGEN 40 40 $(mkinstalldirs) $(DESTDIR)$(datadir)/doc/libcaca-dev/html 41 cp html/*.html $(DESTDIR)$(datadir)/doc/libcaca-dev/html42 cp html/*.gif html/*.png$(DESTDIR)$(datadir)/doc/libcaca-dev/html41 cp `find html -name '*.html' -o -name '*.gif' -o -name '*.png'` \ 42 $(DESTDIR)$(datadir)/doc/libcaca-dev/html 43 43 $(mkinstalldirs) $(DESTDIR)$(mandir)/man3 44 44 cp man/man3/*.3caca $(DESTDIR)$(mandir)/man3 -
libcaca/trunk/test/dithering.c
r292 r297 52 52 for(y = 0; y < 100; y++) 53 53 { 54 int color = CACA_COLOR_WHITE;55 54 char ch = '?'; 56 55
Note: See TracChangeset
for help on using the changeset viewer.