MCUXpresso_MIMXRT1052xxxxB/boards/evkbimxrt1050/crank_storyboard_examples/crank_storyboard_homecontrols/sbengine_plugins.h
Yilin Sun 6baf4427ce
Updated to v2.15.000
Signed-off-by: Yilin Sun <imi415@imi.moe>
2024-03-18 23:15:10 +08:00

38 lines
998 B
C

/*
* Copyright 2013, Crank Software Inc. All Rights Reserved.
*
* For more information email info@cranksoftware.com.
*/
#include <gre/sdk/plugin.h>
/*
* This is a list of the available plugins. Add the functions to the plugin list
* below to make the features available to your application
*/
// gre plugins
extern int gre_plugin_animate(gr_plugin_state_t *);
extern int gre_plugin_script_lua(gr_plugin_state_t *);
extern int gre_plugin_greio(gr_plugin_state_t *);
extern int gre_plugin_logger(gr_plugin_state_t *);
extern int gre_plugin_timer(gr_plugin_state_t *);
// Render extension plugins
extern int gre_plugin_circle(gr_plugin_state_t *);
extern int gre_plugin_poly(gr_plugin_state_t *);
// Image loading plugins
extern int gre_plugin_sbimage_soil(gr_plugin_state_t *);
const gr_plugin_create_func_t sb_plugins[] = {
gre_plugin_animate,
gre_plugin_greio,
gre_plugin_circle,
gre_plugin_logger,
gre_plugin_poly,
gre_plugin_timer,
gre_plugin_sbimage_soil,
NULL,
};