From 28fee77230c77ae3429544b40df5a992769add53 Mon Sep 17 00:00:00 2001 From: pacien Date: Sat, 2 Dec 2017 20:39:43 +0100 Subject: Change local utility function scope Signed-off-by: pacien --- test/blender/blender.c | 9 --------- 1 file changed, 9 deletions(-) (limited to 'test') diff --git a/test/blender/blender.c b/test/blender/blender.c index 9a43db0..bf16dc6 100644 --- a/test/blender/blender.c +++ b/test/blender/blender.c @@ -1,14 +1,6 @@ #include "blender/blender.h" #include -static void test_color_blending() { - Color origin = {{0xFF, 0xED, 0x00, 0x00}}; - Color target = {{0x00, 0x47, 0xAB, 0x00}}; - Color result = blender_blend_colors(origin, target, 0.125); - - assert(color_equals(result, (Color) {{0xEE, 0xDF, 0x3C, 0x00}})); -} - static void test_canvas_blending() { Morphing morphing; Canvas origin, target, result; @@ -32,7 +24,6 @@ static void test_canvas_blending() { } int main(int argc, char **argv) { - test_color_blending(); test_canvas_blending(); return 0; } -- cgit v1.2.3