Buildfixes for Win32

This commit is contained in:
twinaphex 2017-11-14 21:45:11 +01:00
parent 229841b1c4
commit b50a667335
3 changed files with 3 additions and 4 deletions

View File

@ -2529,6 +2529,8 @@ static void gl_unload_texture(void *data, uintptr_t id)
} }
static const video_poke_interface_t gl_poke_interface = { static const video_poke_interface_t gl_poke_interface = {
NULL, /* set_coords */
NULL, /* set_mvp */
gl_load_texture, gl_load_texture,
gl_unload_texture, gl_unload_texture,
gl_set_video_mode, gl_set_video_mode,

View File

@ -2483,7 +2483,7 @@ static bool video_driver_cb_set_coords(void *handle_data,
} }
#endif #endif
bool video_driver_set_coords_fallback(void *handle_data, static bool video_driver_set_coords_fallback(void *handle_data,
void *shader_data, const struct video_coords *coords) void *shader_data, const struct video_coords *coords)
{ {
#ifdef HAVE_OPENGL #ifdef HAVE_OPENGL

View File

@ -1304,9 +1304,6 @@ bool renderchain_gl_init_first(
const gl_renderchain_driver_t **renderchain_driver, const gl_renderchain_driver_t **renderchain_driver,
void **renderchain_handle); void **renderchain_handle);
bool video_driver_set_coords_fallback(void *handle_data,
void *shader_data, const struct video_coords *coords);
extern bool (*video_driver_cb_has_focus)(void); extern bool (*video_driver_cb_has_focus)(void);
extern shader_backend_t *current_shader; extern shader_backend_t *current_shader;