소스 검색

* test/dithering.c:

+ Fixed a minor compilation warning.
  * debian/rules:
    + Explicitely use --enable-imlib2.
  * BUGS:
    + Added a note about blinking consoles.
  * doc/Makefile.am:
    + Fixed a bashism in the HTML files installation.
tags/v0.99.beta14
Sam Hocevar sam 22 년 전
부모
커밋
673d941a57
4개의 변경된 파일10개의 추가작업 그리고 9개의 파일을 삭제
  1. +7
    -5
      BUGS
  2. +1
    -1
      debian/rules
  3. +2
    -2
      doc/Makefile.am
  4. +0
    -1
      test/dithering.c

+ 7
- 5
BUGS 파일 보기

@@ -2,12 +2,14 @@ $Id$

Video rendering

o ncurses' hashmap scrolling optimization code causes the screen to
occasionally flicker because it tries to optimize the vertical
o ncurses' hashmap scrolling optimisation code causes the screen to
occasionally flicker because it tries to optimise the vertical
scrolling.

o Slang cannot display 256 colour pairs under Unix. This is partially
solved by the OPTIMISE_SLANG_PALETTE code.

o the X11 driver is very slow.

o some terminal emulators (Konsole, or the Linux VGA console) honour
the blink attribute instead of using it for bold or bright like any
other terminal emulator, hence reducing the amount of available
colour pairs.


+ 1
- 1
debian/rules 파일 보기

@@ -12,7 +12,7 @@ else
endif

confflags += --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
confflags += --enable-ncurses --enable-slang --enable-x11
confflags += --enable-ncurses --enable-slang --enable-x11 --enable-imlib2

configure: configure-stamp
configure-stamp:


+ 2
- 2
doc/Makefile.am 파일 보기

@@ -38,8 +38,8 @@ clean-local:
install-data-local:
if DOXYGEN
$(mkinstalldirs) $(DESTDIR)$(datadir)/doc/libcaca-dev/html
cp html/*.html $(DESTDIR)$(datadir)/doc/libcaca-dev/html
cp html/*.gif html/*.png $(DESTDIR)$(datadir)/doc/libcaca-dev/html
cp `find html -name '*.html' -o -name '*.gif' -o -name '*.png'` \
$(DESTDIR)$(datadir)/doc/libcaca-dev/html
$(mkinstalldirs) $(DESTDIR)$(mandir)/man3
cp man/man3/*.3caca $(DESTDIR)$(mandir)/man3
endif


+ 0
- 1
test/dithering.c 파일 보기

@@ -51,7 +51,6 @@ int main(void)
for(x = 0; x < 100; x++)
for(y = 0; y < 100; y++)
{
int color = CACA_COLOR_WHITE;
char ch = '?';

/* distance to black */


불러오는 중...
취소
저장