s/notcurses_render/demo_render/g pass

pull/265/head
nick black 5 years ago
parent 6a2dae0279
commit 1e403123e1
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

@ -24,7 +24,7 @@ The demonstrations include:
* (b)oxes—pulsating boxes with a transparent center
* (c)hunli—the strongest woman in the world
* (e)agle—they took some time off my life, back in the day
* (f)allin—the screen falls apart under heavy blows
* (f)allin'—the screen falls apart under heavy blows
* (g)rid—a gradient of color lain atop a great grid
* (j)ungle—low-bandwidth color cycling reveals ancient ruins
* (l)uigi-a dashing Apennine plumber in a world of fire
@ -69,7 +69,7 @@ Proper display requires:
# BUGS
If notcurses is built without FFmpeg, the following demos will fail immedaitely when specified: **xray**,
**eagle**, **chunli**, **fallin**, **view**, **outro**.
**eagle**, **chunli**, **fallin'**, **view**, **outro**.
# AUTHORS

@ -107,7 +107,7 @@ static struct {
{ "chunli", chunli_demo, },
{ NULL, NULL, },
{ "eagle", eagle_demo, },
{ "fallin", fallin_demo, },
{ "fallin'", fallin_demo, },
{ "grid", grid_demo, },
{ NULL, NULL, },
{ "intro", intro, },

@ -8,7 +8,7 @@ static int
patentpulser(struct notcurses* nc, struct ncplane* ncp, void* curry){
(void)ncp;
(void)curry;
if(notcurses_render(nc)){
if(demo_render(nc)){
return -1;
}
bool donecheck;

@ -13,7 +13,7 @@
static int
fade_block(struct notcurses* nc, struct ncplane* nn, const struct timespec* subdelay){
//int ret = ncplane_fadein(nn, subdelay, demo_fader);
int ret = notcurses_render(nc);
int ret = demo_render(nc);
nanosleep(subdelay, NULL);
ncplane_destroy(nn);
return ret;

Loading…
Cancel
Save