From 406495a01b1de41abc1b9240096da3741155b6fd Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Fri, 21 Apr 2017 14:42:14 -0700 Subject: *: /render/render_fragment/ in rototiller_module_t Adding more context to the name in anticipation of adding a prepare_frame() method to the module struct. --- src/modules/julia/julia.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/modules/julia') diff --git a/src/modules/julia/julia.c b/src/modules/julia/julia.c index f8072a8..9e3dba2 100644 --- a/src/modules/julia/julia.c +++ b/src/modules/julia/julia.c @@ -35,7 +35,7 @@ static inline unsigned julia_iter(float real, float imag, float creal, float cim } /* Draw a morphing Julia set */ -static void julia(fb_fragment_t *fragment) +static void julia_render_fragment(fb_fragment_t *fragment) { static uint32_t colors[] = { /* this palette is just something I slapped together, definitely needs improvement. TODO */ @@ -109,7 +109,7 @@ static void julia(fb_fragment_t *fragment) } rototiller_module_t julia_module = { - .render = julia, + .render_fragment = julia_render_fragment, .name = "julia", .description = "Julia set fractal morpher", .author = "Vito Caputo ", -- cgit v1.2.3