complete fxengine files

This commit is contained in:
Milang 2019-10-26 15:17:02 +02:00
parent 4c534571fd
commit 1730d98911
2 changed files with 8 additions and 2 deletions

View File

@ -14,6 +14,6 @@ void fe_callback_start();
void fe_callback_end();
void fe_draw(); // draw image, mais pour le rendu 3D
uint32_t fe_get_fps();
uint32_t fe_get_fps(); // Pas la fréquence d'affichage, mais la fréquence de rendu
#endif

View File

@ -54,6 +54,7 @@ void switch_frame()
}
static volatile bool quit=true;
void fe_load()
{
check_vram();
@ -67,8 +68,12 @@ void fe_load()
// Free some malloc
}
void fe_quit()
{
quit=1;
}
/*
#include <fxengine/zbuffer.h>
@ -146,3 +151,4 @@ void fe_update(const uint32_t libprof_channel)
fe_zbuffer_clear();
}
*/