Codebase list smpeg / 08961337-126b-4815-a560-87e086cf9a33/main glmovie.h
08961337-126b-4815-a560-87e086cf9a33/main

Tree @08961337-126b-4815-a560-87e086cf9a33/main (Download .tar.gz)

glmovie.h @08961337-126b-4815-a560-87e086cf9a33/mainraw · history · blame

#ifndef _GLMOVIE_H_
#define _GLMOVIE_H_

#include <GL/gl.h>
#include <GL/glu.h>
#include <stdio.h>

#ifdef __cplusplus
extern "C" {
#endif

GLenum glmovie_init( GLuint, GLuint );
void glmovie_quit( void );
void glmovie_draw( GLubyte* );
void glmovie_resize( GLuint, GLuint );
GLuint glmovie_next_power_of_2( GLuint seed );
GLboolean glmovie_is_power_of_2( GLuint value );

#ifdef __cplusplus
}
#endif

#endif