This repository has been archived on 2022-05-19. You can view files and clone it, but cannot push or open issues or pull requests.
DemoGL4D/window.c

33 lines
753 B
C

#include <GL4D/gl4duw_SDL2.h>
#include "includes/animations.h"
int dimensions[] = {1280, 720};
// Animations
GL4DHanime animations[] = {
{ 5000, cube, NULL, NULL },
{ 2500, cube, voronoi, fondu },
{ 5000, voronoi, NULL, NULL },
{ 0, NULL, NULL, NULL }
};
// Comportement à la fermeture du programme
void fermeture(void);
int main(int argc, char *argv[]) {
if(!gl4duwCreateWindow(argc, argv, "Démo Anri KENNEL", 10, 10, dimensions[0], dimensions[1], GL4DW_SHOWN)) {
return 1;
}
gl4dhInit(animations, dimensions[0], dimensions[1], NULL);
atexit(fermeture);
gl4duwDisplayFunc(gl4dhDraw);
gl4duwMainLoop();
return 0;
}
void fermeture(void) {
gl4duClean(GL4DU_ALL);
}