diff options
author | Andrew Mahone <andrew.mahone@gmail.com> | 2009-01-16 10:34:40 +0000 |
---|---|---|
committer | Andrew Mahone <andrew.mahone@gmail.com> | 2009-01-16 10:34:40 +0000 |
commit | 23d9812273d9c74af72ccdc3aa4cfea971f220a4 (patch) | |
tree | 8e60c3a2a41879f8b2a52516fa416b3ab906e239 /apps/plugins/test_grey.c | |
parent | 35677cbc54bbe400ebbff59b489dda7ca7f04916 (diff) |
loader-initialized global plugin API:
struct plugin_api *rb is declared in PLUGIN_HEADER, and pointed to by
__header.api
the loader uses this pointer to initialize rb before calling entry_point
entry_point is no longer passed a pointer to the plugin API
all plugins, and pluginlib functions, are modified to refer to the
global rb
pluginlib functions which only served to copy the API pointer are
removed
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19776 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/test_grey.c')
-rw-r--r-- | apps/plugins/test_grey.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/apps/plugins/test_grey.c b/apps/plugins/test_grey.c index 1b65c34f4e..84dcdae3e2 100644 --- a/apps/plugins/test_grey.c +++ b/apps/plugins/test_grey.c @@ -108,7 +108,6 @@ static const unsigned char dither_matrix[16][16] = { static unsigned char input_levels[STEPS+1]; static unsigned char lcd_levels[STEPS+1]; -static const struct plugin_api* rb; static unsigned char *gbuf; static size_t gbuf_size = 0; @@ -139,7 +138,7 @@ static void fill_rastered(int bx, int by, int bw, int bh, int step) } /* plugin entry point */ -enum plugin_status plugin_start(const struct plugin_api* api, const void* parameter) +enum plugin_status plugin_start(const void* parameter) { bool done = false; int cur_step = 1; @@ -148,11 +147,10 @@ enum plugin_status plugin_start(const struct plugin_api* api, const void* parame /* standard stuff */ (void)parameter; - rb = api; gbuf = (unsigned char *) rb->plugin_get_buffer(&gbuf_size); - if (!grey_init(rb, gbuf, gbuf_size, + if (!grey_init(gbuf, gbuf_size, GREY_BUFFERED|GREY_RAWMAPPED|GREY_ON_COP, LCD_WIDTH, LCD_HEIGHT, NULL)) { @@ -162,7 +160,7 @@ enum plugin_status plugin_start(const struct plugin_api* api, const void* parame for (i = 0; i <= STEPS; i++) input_levels[i] = lcd_levels[i] = (255 * i + (STEPS/2)) / STEPS; - backlight_force_on(rb); /* backlight control in lib/helper.c */ + backlight_force_on(); /* backlight control in lib/helper.c */ grey_set_background(0); /* set background to black */ grey_clear_display(); @@ -240,6 +238,6 @@ enum plugin_status plugin_start(const struct plugin_api* api, const void* parame } grey_release(); - backlight_use_settings(rb); /* backlight control in lib/helper.c */ + backlight_use_settings(); /* backlight control in lib/helper.c */ return PLUGIN_OK; } |