(GL) Move more code

This commit is contained in:
twinaphex 2016-08-02 03:12:48 +02:00
parent 9b06ec6c4e
commit 84588a1527
2 changed files with 3 additions and 1 deletions

View File

@ -122,7 +122,7 @@ bool gl_query_core_context_in_use(void)
return gl_core_context;
}
static INLINE void context_bind_hw_render(bool enable)
void context_bind_hw_render(bool enable)
{
if (gl_shared_context_use)
video_context_driver_bind_hw_render(&enable);

View File

@ -98,6 +98,8 @@ bool gl_init_hw_render(gl_t *gl, unsigned width, unsigned height);
bool gl_check_capability(enum gl_capability_enum enum_idx);
void context_bind_hw_render(bool enable);
RETRO_END_DECLS
#endif