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/stars/stars.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/modules/stars/stars.c') diff --git a/src/modules/stars/stars.c b/src/modules/stars/stars.c index 61f652e..f624a62 100644 --- a/src/modules/stars/stars.c +++ b/src/modules/stars/stars.c @@ -13,7 +13,7 @@ /* Copyright (C) 2017 Philip J. Freeman */ -static void stars(fb_fragment_t *fragment) +static void stars_render_fragment(fb_fragment_t *fragment) { static int initialized, z; static struct universe* u; @@ -55,7 +55,7 @@ static void stars(fb_fragment_t *fragment) } rototiller_module_t stars_module = { - .render = stars, + .render_fragment = stars_render_fragment, .name = "stars", .description = "basic starfield", .author = "Philip J Freeman ", -- cgit v1.2.1