Jon Taylor | 6583efc | 1999-08-23 22:34:08 +0000 | [diff] [blame] | 1 | /* $Id: ggimesa.h,v 1.2 1999/08/23 22:34:08 jtaylor Exp $ */ |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 2 | |
| 3 | /* |
| 4 | * Mesa 3-D graphics library |
| 5 | * Version: 3.1 |
| 6 | * Copyright (C) 1995-1998 Brian Paul |
| 7 | * Copyright (C) 1998 Uwe Maurer |
| 8 | * |
| 9 | * This library is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU Library General Public |
| 11 | * License as published by the Free Software Foundation; either |
| 12 | * version 2 of the License, or (at your option) any later version. |
| 13 | * |
| 14 | * This library is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 17 | * Library General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU Library General Public |
| 20 | * License along with this library; if not, write to the Free |
| 21 | * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 22 | */ |
| 23 | |
| 24 | |
| 25 | /* |
| 26 | * $Log: ggimesa.h,v $ |
Jon Taylor | 6583efc | 1999-08-23 22:34:08 +0000 | [diff] [blame] | 27 | * Revision 1.2 1999/08/23 22:34:08 jtaylor |
| 28 | * Misc small cleanups |
| 29 | * |
| 30 | * Revision 1.1.1.1 1999/08/19 00:55:40 jtg |
| 31 | * Imported sources |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 32 | * |
| 33 | * Revision 1.2 1998/09/29 01:46:40 brianp |
| 34 | * applied Emmanuel Marty's patches for latest GGI |
| 35 | * |
| 36 | */ |
| 37 | |
| 38 | |
| 39 | #ifndef GGIMESA_H |
| 40 | #define GGIMESA_H |
| 41 | |
| 42 | #ifdef __cplusplus |
| 43 | extern "C" { |
| 44 | #endif |
| 45 | |
| 46 | #include "GL/gl.h" |
| 47 | |
| 48 | |
| 49 | typedef struct ggi_mesa_context *GGIMesaContext; |
| 50 | |
| 51 | #include <ggi/ggi.h> |
| 52 | |
| 53 | extern GGIMesaContext GGIMesaCreateContext(void); |
| 54 | |
Jon Taylor | 6583efc | 1999-08-23 22:34:08 +0000 | [diff] [blame] | 55 | extern void GGIMesaDestroyContext(GGIMesaContext ctx); |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 56 | |
Jon Taylor | 6583efc | 1999-08-23 22:34:08 +0000 | [diff] [blame] | 57 | extern void GGIMesaMakeCurrent(GGIMesaContext ctx); |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 58 | |
Jon Taylor | 6583efc | 1999-08-23 22:34:08 +0000 | [diff] [blame] | 59 | extern GGIMesaContext GGIMesaGetCurrentContext(void); |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 60 | |
Jon Taylor | 6583efc | 1999-08-23 22:34:08 +0000 | [diff] [blame] | 61 | extern void GGIMesaSwapBuffers(void); |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 62 | |
Jon Taylor | 6583efc | 1999-08-23 22:34:08 +0000 | [diff] [blame] | 63 | extern int GGIMesaSetVisual(GGIMesaContext ctx, ggi_visual_t vis, |
| 64 | GLboolean rgb_flag, GLboolean db_flag); |
jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 65 | |
| 66 | #ifdef __cplusplus |
| 67 | } |
| 68 | #endif |
| 69 | |
| 70 | #endif |