blob: f88ecffc5e2d2794b264b195bc448e8e373de3bd [file] [log] [blame]
Brian Paul668ac872000-02-09 19:03:28 +00001/* $Id: ggimesa.h,v 1.3 2000/02/09 19:03:28 brianp Exp $ */
jtgafb833d1999-08-19 00:55:39 +00002
3/*
4 * Mesa 3-D graphics library
Brian Paul668ac872000-02-09 19:03:28 +00005 * Version: 3.3
6 * Copyright (C) 1995-2000 Brian Paul
jtgafb833d1999-08-19 00:55:39 +00007 * 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
jtgafb833d1999-08-19 00:55:39 +000025#ifndef GGIMESA_H
26#define GGIMESA_H
27
Brian Paul668ac872000-02-09 19:03:28 +000028
29#define GGIMESA_MAJOR_VERSION 3
30#define GGIMESA_MINOR_VERSION 3
31
32
jtgafb833d1999-08-19 00:55:39 +000033#ifdef __cplusplus
34extern "C" {
35#endif
36
37#include "GL/gl.h"
38
39
40typedef struct ggi_mesa_context *GGIMesaContext;
41
42#include <ggi/ggi.h>
43
44extern GGIMesaContext GGIMesaCreateContext(void);
45
Jon Taylor6583efc1999-08-23 22:34:08 +000046extern void GGIMesaDestroyContext(GGIMesaContext ctx);
jtgafb833d1999-08-19 00:55:39 +000047
Jon Taylor6583efc1999-08-23 22:34:08 +000048extern void GGIMesaMakeCurrent(GGIMesaContext ctx);
jtgafb833d1999-08-19 00:55:39 +000049
Jon Taylor6583efc1999-08-23 22:34:08 +000050extern GGIMesaContext GGIMesaGetCurrentContext(void);
jtgafb833d1999-08-19 00:55:39 +000051
Jon Taylor6583efc1999-08-23 22:34:08 +000052extern void GGIMesaSwapBuffers(void);
jtgafb833d1999-08-19 00:55:39 +000053
Jon Taylor6583efc1999-08-23 22:34:08 +000054extern int GGIMesaSetVisual(GGIMesaContext ctx, ggi_visual_t vis,
55 GLboolean rgb_flag, GLboolean db_flag);
jtgafb833d1999-08-19 00:55:39 +000056
57#ifdef __cplusplus
58}
59#endif
60
61#endif