File: glmovie.h

package info (click to toggle)
smpeg 0.4.5%2Bcvs20030824-9
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, trixie
  • size: 2,160 kB
  • sloc: cpp: 14,970; sh: 8,042; ansic: 2,322; asm: 544; makefile: 122
file content (23 lines) | stat: -rw-r--r-- 409 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#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