diff --git a/gfx/video_driver.c b/gfx/video_driver.c index 1196db3d4a..0488dfc945 100644 --- a/gfx/video_driver.c +++ b/gfx/video_driver.c @@ -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) diff --git a/gfx/video_driver.h b/gfx/video_driver.h index 24b140a572..53b5eb91c2 100644 --- a/gfx/video_driver.h +++ b/gfx/video_driver.h @@ -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);