Marcel Plch
9c5b5d7471
Code imported from my seminary work. In this simplified version it rotates a triangle using OpenGL libraries. Crashes upon exit.
12 lines
165 B
C
12 lines
165 B
C
#ifndef MODEL_LOADER_H
|
|
#define MODEL_LOADER_H
|
|
|
|
typedef struct _model {
|
|
GLfloat *object;
|
|
size_t bufsize;
|
|
} Model;
|
|
|
|
Model * model_load(const char *);
|
|
|
|
#endif
|
|
|