summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-08-24 23:39:05 -0300
committerJames Almer <jamrial@gmail.com>2017-08-24 23:39:09 -0300
commite51073fe00d2f7ae1c455d441b305e2b5c8251bc (patch)
treeb8ce441c71087f81d6367725f6d494d67784aa53 /tests
parentcb96e9bea41839407e8e0bef722ac0b9d23812ae (diff)
checkasm/vf_blend: rename addition128 and difference128 to grainmerge and grainextract
This was missing from f8d0689d3f. Fixes checkasm.
Diffstat (limited to 'tests')
-rw-r--r--tests/checkasm/vf_blend.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/checkasm/vf_blend.c b/tests/checkasm/vf_blend.c
index 4e018ac69e..be65730452 100644
--- a/tests/checkasm/vf_blend.c
+++ b/tests/checkasm/vf_blend.c
@@ -103,11 +103,11 @@ void checkasm_check_blend(void)
check_blend_func();
check_and_report(addition, BLEND_ADDITION)
- check_and_report(addition128, BLEND_ADDITION128)
+ check_and_report(grainmerge, BLEND_GRAINMERGE)
check_and_report(and, BLEND_AND)
check_and_report(average, BLEND_AVERAGE)
check_and_report(darken, BLEND_DARKEN)
- check_and_report(difference128, BLEND_DIFFERENCE128)
+ check_and_report(grainextract, BLEND_GRAINEXTRACT)
check_and_report(hardmix, BLEND_HARDMIX)
check_and_report(lighten, BLEND_LIGHTEN)
check_and_report(multiply, BLEND_MULTIPLY)