demo: strip some explicit NCBLIT_2x2s, use NCBLIT_DEFAULT

This commit is contained in:
nick black 2020-10-31 17:15:20 -04:00
parent 78e5ac670d
commit 13a9b38390
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC
3 changed files with 0 additions and 3 deletions

View File

@ -186,7 +186,6 @@ int fallin_demo(struct notcurses* nc){
struct ncvisual_options vopts = {
.n = stdn,
.scaling = NCSCALE_STRETCH,
.blitter = NCBLIT_2x2,
};
if(ncvisual_render(nc, ncv, &vopts) == NULL){
ncvisual_destroy(ncv);

View File

@ -195,7 +195,6 @@ int outro(struct notcurses* nc){
}
vopts.scaling = NCSCALE_STRETCH;
vopts.flags = NCVISUAL_OPTION_BLEND;
vopts.blitter = NCBLIT_2x2;
if((vopts.n = ncvisual_render(nc, chncv, &vopts)) == NULL){
ncvisual_destroy(chncv);
return -1;

View File

@ -14,7 +14,6 @@ int yield_demo(struct notcurses* nc){
}
struct ncvisual_options vopts = {
.n = std,
.blitter = NCBLIT_2x2,
.y = 1,
.scaling = NCSCALE_STRETCH,
};