[w3m-dev 03732] Re: scroll() is slow ?

* configure (use_raw_scroll): added
	(config.h) use_raw_scroll
* config.h.dist (USE_RAW_SCROLL): added
* display.c (displayBuffer): ifdef USE_RAW_SCROLL
* proto.h (scroll): ifdef USE_RAW_SCROLL
	(rscroll): ditto
	(need_clrtoeol): if 0
	(terms.c): if 0 need_clrtoeol
	(scroll_raw): ifdef USE_RAW_SCROLL
From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
This commit is contained in:
Fumitoshi UKAI
2003-02-06 17:15:04 +00:00
parent 254eeb195f
commit fbc26e9c4b
6 changed files with 43 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
/* $Id: proto.h,v 1.88 2003/02/05 16:44:00 ukai Exp $ */
/* $Id: proto.h,v 1.89 2003/02/06 17:15:13 ukai Exp $ */
/*
* This file was automatically generated by version 1.7 of cextract.
* Manual editing not recommended.
@@ -449,9 +449,13 @@ extern void setbcolor(int color);
#endif /* USE_COLOR */
extern void refresh(void);
extern void clear(void);
#ifdef USE_RAW_SCROLL
extern void scroll(int);
extern void rscroll(int);
#endif
#if 0
extern void need_clrtoeol(void);
#endif
extern void clrtoeol(void);
extern void clrtoeolx(void);
extern void clrtobot(void);