diff options
author | James Almer | 2017-08-24 23:39:05 -0300 |
---|---|---|
committer | James Almer | 2017-08-24 23:39:09 -0300 |
commit | e51073fe00d2f7ae1c455d441b305e2b5c8251bc (patch) | |
tree | b8ce441c71087f81d6367725f6d494d67784aa53 /tests | |
parent | cb96e9bea41839407e8e0bef722ac0b9d23812ae (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.c | 4 |
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) |