[keller] fix up for ncvisual_blit() #1462

This commit is contained in:
nick black 2021-10-16 00:10:10 -04:00 committed by nick black
parent e95e2fac66
commit f096064648

View File

@ -23,10 +23,13 @@ visualize(struct notcurses* nc, struct ncvisual* ncv){
ncplane_set_base(stdn, "", 0, channels); ncplane_set_base(stdn, "", 0, channels);
for(size_t i = 0 ; i < sizeof(bs) / sizeof(*bs) ; ++i){ for(size_t i = 0 ; i < sizeof(bs) / sizeof(*bs) ; ++i){
struct ncvisual_options vopts = { struct ncvisual_options vopts = {
.n = notcurses_stdplane(nc),
.scaling = NCSCALE_SCALE, .scaling = NCSCALE_SCALE,
.blitter = bs[i], .blitter = bs[i],
.flags = NCVISUAL_OPTION_NODEGRADE | NCVISUAL_OPTION_HORALIGNED .flags = NCVISUAL_OPTION_NODEGRADE
| NCVISUAL_OPTION_VERALIGNED, | NCVISUAL_OPTION_HORALIGNED
| NCVISUAL_OPTION_VERALIGNED
| NCVISUAL_OPTION_CHILDPLANE,
}; };
int scalex, scaley, truey, truex; int scalex, scaley, truey, truex;
vopts.x = NCALIGN_CENTER; vopts.x = NCALIGN_CENTER;