From f2a5ae589f6d8d14a22329e17888f5978442e74e Mon Sep 17 00:00:00 2001 From: nick black Date: Sun, 7 Nov 2021 01:06:15 -0400 Subject: [PATCH] LoadVideoPixelScale -> Stretch --- src/tests/media.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/media.cpp b/src/tests/media.cpp index da994c503..6c4e5af79 100644 --- a/src/tests/media.cpp +++ b/src/tests/media.cpp @@ -253,7 +253,7 @@ TEST_CASE("Media") { } // do a pixel video, reusing the same plane over and over - SUBCASE("LoadVideoPixelScaleOnePlane") { + SUBCASE("LoadVideoPixelStretchOnePlane") { if(notcurses_check_pixel_support(nc_) > 0){ if(notcurses_canopen_videos(nc_)){ int dimy, dimx; @@ -268,7 +268,7 @@ TEST_CASE("Media") { } CHECK(0 == ret); struct ncvisual_options opts{}; - opts.scaling = NCSCALE_SCALE; + opts.scaling = NCSCALE_STRETCH; opts.blitter = NCBLIT_PIXEL; opts.n = n; n = ncvisual_blit(nc_, ncv, &opts);