Codebase list smpeg / debian/0.4.5+cvs20030824-7.2 glmovie.h
debian/0.4.5+cvs20030824-7.2

Tree @debian/0.4.5+cvs20030824-7.2 (Download .tar.gz)

glmovie.h @debian/0.4.5+cvs20030824-7.2raw · 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