need fbcon_scrub

pull/1953/head
nick black 3 years ago committed by nick black
parent 8f8e910eaf
commit c7dd482474

@ -23,6 +23,12 @@ int fbcon_blit(struct ncplane* nc, int linesize, const void* data,
return -1;
}
int fbcon_scrub(const struct ncpile* p, sprixel* s){
(void)p;
(void)s;
return -1;
}
int fbcon_draw(const struct ncpile *p, sprixel* s, FILE* out, int y, int x){
(void)p;
(void)s;

@ -176,6 +176,7 @@ int iterm_draw(const struct ncpile *p, sprixel* s, FILE* out, int y, int x);
int kitty_move(sprixel* s, FILE* out, unsigned noscroll);
int sixel_scrub(const struct ncpile* p, sprixel* s);
int kitty_scrub(const struct ncpile* p, sprixel* s);
int fbcon_scrub(const struct ncpile* p, sprixel* s);
int kitty_remove(int id, FILE* out);
int kitty_clear_all(FILE* fp);
int sixel_init(const tinfo* t, int fd);

@ -115,6 +115,7 @@ static inline void
setup_fbcon_bitmaps(tinfo* ti){
// FIXME
ti->pixel_draw = fbcon_draw;
ti->pixel_scrub = fbcon_scrub;
set_pixel_blitter(fbcon_blit);
}

Loading…
Cancel
Save