Skip to content

Commit

Permalink
More.
Browse files Browse the repository at this point in the history
  • Loading branch information
wmcbrine committed Jul 11, 2007
1 parent 9fa4be3 commit 0660f2b
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions HISTORY
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@ New features:

- SDL port. See INSTALL, docs/sdl.txt and sdl1/* for details.

- Minimize screen writes by checking, in wnoutrefresh() and doupdate(),
whether the changes to curscr would be real changes. In most cases,
this makes no difference (writes were already limited to areas marked
as changed), but it can greatly reduce the overhead from touchwin().
- Double-buffering -- minimize screen writes by checking, in doupdate()
and wnoutrefresh(), whether the changes to curscr are really changes.
In most cases, this makes no difference (writes were already limited
to areas marked as changed), but it can greatly reduce the overhead
from touchwin(). It also helps if you have small, separated updates on
the same line, or if you're repeatedly writing the same text to the
same area (which you shouldn't).

- The PDC_RGB colors can now be used, or not, with any platform (as long
as the same options are used when compiling both the library and
Expand All @@ -25,6 +28,9 @@ New features:
- Added setlocale() to tuidemo, to make it easier to browse files with
non-ASCII characters.

- Sped up firework demo by replacing unneeded clear() and init_pair()
calls.

- Allow exit from ptest demo by typing 'q'.

- New functions for implementors: PDC_pair_content() and PDC_init_pair()
Expand Down

0 comments on commit 0660f2b

Please sign in to comment.