jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame^] | 1 | /* $Id: ggimesa.h,v 1.1 1999/08/19 00:55:40 jtg Exp $ */ |
| 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 $ |
| 27 | * Revision 1.1 1999/08/19 00:55:40 jtg |
| 28 | * Initial revision |
| 29 | * |
| 30 | * Revision 1.2 1998/09/29 01:46:40 brianp |
| 31 | * applied Emmanuel Marty's patches for latest GGI |
| 32 | * |
| 33 | */ |
| 34 | |
| 35 | |
| 36 | #ifndef GGIMESA_H |
| 37 | #define GGIMESA_H |
| 38 | |
| 39 | #ifdef __cplusplus |
| 40 | extern "C" { |
| 41 | #endif |
| 42 | |
| 43 | #include "GL/gl.h" |
| 44 | |
| 45 | |
| 46 | typedef struct ggi_mesa_context *GGIMesaContext; |
| 47 | |
| 48 | #include <ggi/ggi.h> |
| 49 | |
| 50 | extern GGIMesaContext GGIMesaCreateContext(void); |
| 51 | |
| 52 | extern void GGIMesaDestroyContext( GGIMesaContext ctx ); |
| 53 | |
| 54 | extern void GGIMesaMakeCurrent(GGIMesaContext ctx ); |
| 55 | |
| 56 | extern GGIMesaContext GGIMesaGetCurrentContext( void ); |
| 57 | |
| 58 | extern void GGIMesaSwapBuffers( void ); |
| 59 | |
| 60 | extern int GGIMesaSetVisual(GGIMesaContext ctx,ggi_visual_t vis, |
| 61 | GLboolean rgb_flag,GLboolean db_flag); |
| 62 | |
| 63 | #ifdef __cplusplus |
| 64 | } |
| 65 | #endif |
| 66 | |
| 67 | #endif |