forked from KolibriOS/kolibrios
switch build system to Tup
git-svn-id: svn://kolibrios.org@5098 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
28
programs/develop/libraries/TinyGL/include/kosgl.h
Normal file
28
programs/develop/libraries/TinyGL/include/kosgl.h
Normal file
@@ -0,0 +1,28 @@
|
||||
#ifndef KOSGL_H
|
||||
#define KOSGL_H
|
||||
|
||||
#include <GL/gl.h>
|
||||
#include <GL/glu.h>
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef void *KOSGLContext;
|
||||
|
||||
extern KOSGLContext kosglCreateContext( KOSGLContext shareList, int flags );
|
||||
|
||||
extern void kosglDestroyContext( KOSGLContext ctx1 );
|
||||
|
||||
extern int kosglMakeCurrent( int win_x0, int win_y0,
|
||||
int win_x, int win_y,
|
||||
KOSGLContext ctx);
|
||||
|
||||
extern void kosglSwapBuffers();
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user