1
0
mirror of https://github.com/libretro/RetroArch synced 2025-04-15 14:42:27 +00:00

Add fallback for menu_display_get_default_mvp

This commit is contained in:
twinaphex 2015-11-02 23:24:45 +01:00
parent 66914232ab
commit c2f044d30f

@ -671,6 +671,12 @@ void menu_display_texture_unload(uintptr_t *id)
return; return;
video_texture_unload(id); video_texture_unload(id);
} }
#else
static math_matrix_4x4 *menu_display_get_default_mvp(void)
{
return NULL;
}
#endif #endif
void menu_display_matrix_4x4_rotate_z(void *data, float rotation, void menu_display_matrix_4x4_rotate_z(void *data, float rotation,