OSDN Git Service

FIRST REPOSITORY
[eos/hostdependOTHERS.git] / HP / util / HP / include / GL / ggimesa.h
1 /*
2  * Mesa 3-D graphics library
3  * Version:  2.4
4  * Copyright (C) 1995-1997  Brian Paul
5  * Copyright (C) 1998  Uwe Maurer
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the Free
19  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  */
21
22
23 /*
24  *
25  *
26  */
27
28
29 #ifndef GGIMESA_H
30 #define GGIMESA_H
31
32 #ifdef __cplusplus
33 extern "C" {
34 #endif
35
36 #include "GL/gl.h"
37
38
39 typedef struct ggi_mesa_context *GGIMesaContext;
40
41 #include <ggi/libggi.h>
42
43 extern GGIMesaContext GGIMesaCreateContext(void);
44
45 extern void GGIMesaDestroyContext( GGIMesaContext ctx );
46
47 extern void GGIMesaMakeCurrent(GGIMesaContext ctx );
48
49 extern GGIMesaContext GGIMesaGetCurrentContext( void );
50
51 extern void GGIMesaSwapBuffers( void );
52
53 extern int GGIMesaSetVisual(GGIMesaContext ctx,ggi_visual_t vis,
54                                 GLboolean rgb_flag,GLboolean db_flag);
55
56 #ifdef __cplusplus
57 }
58 #endif
59
60 #endif