mirror of
https://github.com/libretro/RetroArch
synced 2025-04-16 17:43:02 +00:00
Get rid of forward declaration
This commit is contained in:
parent
4a6f49fc0a
commit
ca328662d0
@ -86,9 +86,11 @@ static const float ticker_pixel_period = (1.0f / 60.0f) * 1000.0f;
|
|||||||
static const char ticker_spacer_default[] = TICKER_SPACER_DEFAULT;
|
static const char ticker_spacer_default[] = TICKER_SPACER_DEFAULT;
|
||||||
|
|
||||||
/* Forward declarations */
|
/* Forward declarations */
|
||||||
|
|
||||||
|
/* By default, this should be a NOOP */
|
||||||
static void gfx_animation_update_time_default(
|
static void gfx_animation_update_time_default(
|
||||||
float *dst,
|
float *ticker_pixel_increment,
|
||||||
unsigned video_width, unsigned video_height);
|
unsigned video_width, unsigned video_height) { }
|
||||||
|
|
||||||
static update_time_cb update_time_callback = gfx_animation_update_time_default;
|
static update_time_cb update_time_callback = gfx_animation_update_time_default;
|
||||||
|
|
||||||
@ -1206,13 +1208,6 @@ bool gfx_animation_push(gfx_animation_ctx_entry_t *entry)
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void gfx_animation_update_time_default(
|
|
||||||
float *ticker_pixel_increment,
|
|
||||||
unsigned video_width, unsigned video_height)
|
|
||||||
{
|
|
||||||
/* By default, this should be a NOOP */
|
|
||||||
}
|
|
||||||
|
|
||||||
void gfx_animation_set_update_time_cb(update_time_cb cb)
|
void gfx_animation_set_update_time_cb(update_time_cb cb)
|
||||||
{
|
{
|
||||||
update_time_callback = cb;
|
update_time_callback = cb;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user