aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2017-11-02 21:29:17 +0000
committernicm <nicm>2017-11-02 21:29:17 +0000
commit8d37f699ad2406ad96080b0cee211142dbcb33cb (patch)
treea7dae5d870c763361435ddd2d25bdee5c5339783 /tmux.h
parent17655e5ba65e37787cd9920e1a89aedf6f623957 (diff)
downloadrtmux-8d37f699ad2406ad96080b0cee211142dbcb33cb.tar.gz
rtmux-8d37f699ad2406ad96080b0cee211142dbcb33cb.tar.bz2
rtmux-8d37f699ad2406ad96080b0cee211142dbcb33cb.zip
Add a "fast" version of screen_write_copy for tree mode that doesn't do
all the checks and selection and marking stuff needed for copy mode.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tmux.h b/tmux.h
index 974a0678..62e88248 100644
--- a/tmux.h
+++ b/tmux.h
@@ -2037,6 +2037,8 @@ void screen_write_putc(struct screen_write_ctx *, const struct grid_cell *,
u_char);
void screen_write_copy(struct screen_write_ctx *, struct screen *, u_int,
u_int, u_int, u_int, bitstr_t *, const struct grid_cell *);
+void screen_write_fast_copy(struct screen_write_ctx *, struct screen *,
+ u_int, u_int, u_int, u_int);
void screen_write_hline(struct screen_write_ctx *, u_int, int, int);
void screen_write_vline(struct screen_write_ctx *, u_int, int, int);
void screen_write_box(struct screen_write_ctx *, u_int, u_int);