Get rid of video_shader_driver_compile_program

This commit is contained in:
twinaphex 2019-02-03 05:52:41 +01:00
parent 9a04c4c67b
commit 0db583c245
2 changed files with 0 additions and 11 deletions

View File

@ -3613,15 +3613,6 @@ bool video_shader_driver_info(video_shader_ctx_info_t *shader_info)
return true;
}
bool video_shader_driver_compile_program(
struct shader_program_info *program_info)
{
if (program_info)
return current_shader->compile_program(program_info->data,
program_info->idx, NULL, program_info);
return false;
}
void video_driver_set_coords(video_shader_ctx_coords_t *coords)
{
if (current_shader && current_shader->set_coords)

View File

@ -1200,8 +1200,6 @@ bool video_shader_driver_info(video_shader_ctx_info_t *shader_info);
void video_driver_set_mvp(video_shader_ctx_mvp_t *mvp);
bool video_shader_driver_compile_program(struct shader_program_info *program_info);
float video_driver_get_refresh_rate(void);
extern bool (*video_driver_cb_has_focus)(void);