rayjs/src/main.cpp

27 lines
562 B
C++
Raw Normal View History

2023-05-02 19:33:02 +00:00
#include <Magnum/GL/DefaultFramebuffer.h>
2023-05-02 21:30:09 +00:00
#include <Magnum/GL/Context.h>
#include <Magnum/Platform/GLContext.h>
#include "common.h"
//#include "shaders.h"
2023-05-02 19:33:02 +00:00
using namespace Magnum;
2023-05-02 21:30:09 +00:00
App_Config app_config = { 640, 480 };
App_State app_state = { NULL, 0 };
int main(int argc, char *argv[]) {
app_init_quickjs(argc, argv);
app_init_sdl();
Platform::GLContext context;
// Main loop
while (!app_state.quit) {
app_update_sdl();
app_update_quickjs();
}
app_dispose_sdl();
app_dispose_quickjs();
return 0;
}