Remove unused function

This commit is contained in:
twinaphex 2018-10-14 06:00:26 +02:00
parent 2e67f4f02c
commit 4d6dfd163d
2 changed files with 0 additions and 8 deletions

View File

@ -460,12 +460,6 @@ static bool set_resize_null(void *a, unsigned b, unsigned c)
return false;
}
void video_driver_set_resize(unsigned width, unsigned height)
{
if (current_video_context.set_resize)
current_video_context.set_resize(video_context_data, width, height);
}
/**
* video_driver_find_handle:
* @idx : index of driver to get handle to.

View File

@ -1126,8 +1126,6 @@ void video_driver_set_threaded(bool val);
void video_driver_get_status(uint64_t *frame_count, bool * is_alive,
bool *is_focused);
void video_driver_set_resize(unsigned width, unsigned height);
/**
* video_context_driver_init_first:
* @data : Input data.