blob: f8e9661f9ccd601406c082050742fda957604190 [file] [log] [blame]
jtgafb833d1999-08-19 00:55:39 +00001/*
2 * Mesa 3-D graphics library
Brian Paul78a03d32001-09-23 16:06:13 +00003 * Version: 4.0
Brian Paul9e5e5e32001-06-20 19:52:11 +00004 * Copyright (C) 1995-2001 Brian Paul
jtgafb833d1999-08-19 00:55:39 +00005 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details.
15 *
16 * You should have received a copy of the GNU Library General Public
17 * License along with this library; if not, write to the Free
18 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21
22/*
jtgafb833d1999-08-19 00:55:39 +000023 * FXMesa - 3Dfx Glide driver for Mesa. Contributed by David Bucciarelli
24 *
Daniel Borca1b6cca62003-10-21 11:15:52 +000025 * NOTE: This version requires Glide3 (http://sourceforge.net/projects/glide)
jtgafb833d1999-08-19 00:55:39 +000026 */
27
28
29#ifndef FXMESA_H
30#define FXMESA_H
31
32
33#include <glide.h>
34
35
36#ifdef __cplusplus
37extern "C" {
38#endif
39
40
Daniel Borca65a9ca32004-10-12 06:43:57 +000041#define FXMESA_MAJOR_VERSION 6
42#define FXMESA_MINOR_VERSION 3
jtgafb833d1999-08-19 00:55:39 +000043
44
45/*
46 * Values for attribList parameter to fxMesaCreateContext():
47 */
48#define FXMESA_NONE 0 /* to terminate attribList */
49#define FXMESA_DOUBLEBUFFER 10
50#define FXMESA_ALPHA_SIZE 11 /* followed by an integer */
51#define FXMESA_DEPTH_SIZE 12 /* followed by an integer */
52#define FXMESA_STENCIL_SIZE 13 /* followed by an integer */
53#define FXMESA_ACCUM_SIZE 14 /* followed by an integer */
Brian Paulc19cbb52003-07-17 14:50:11 +000054#define FXMESA_COLORDEPTH 20 /* followed by an integer */
Brian Paula75246f2003-10-02 17:36:43 +000055#define FXMESA_SHARE_CONTEXT 990099 /* keep in sync with xmesa1.c! */
jtgafb833d1999-08-19 00:55:39 +000056
57
58
59typedef struct tfxMesaContext *fxMesaContext;
60
61
62#if defined (__BEOS__)
63#pragma export on
64#endif
65
66
67GLAPI fxMesaContext GLAPIENTRY fxMesaCreateContext(GLuint win, GrScreenResolution_t,
68 GrScreenRefresh_t,
69 const GLint attribList[]);
70
71GLAPI fxMesaContext GLAPIENTRY fxMesaCreateBestContext(GLuint win,
72 GLint width, GLint height,
73 const GLint attribList[]);
74GLAPI void GLAPIENTRY fxMesaDestroyContext(fxMesaContext ctx);
75
Daniel Borcae9e98402003-12-19 11:26:46 +000076GLAPI GLint GLAPIENTRY fxMesaSelectCurrentBoard(int n);
jtgafb833d1999-08-19 00:55:39 +000077
78GLAPI void GLAPIENTRY fxMesaMakeCurrent(fxMesaContext ctx);
79
Daniel Borca22633802004-02-10 07:46:07 +000080GLAPI fxMesaContext GLAPIENTRY fxMesaGetCurrentContext(void);
jtgafb833d1999-08-19 00:55:39 +000081
82GLAPI void GLAPIENTRY fxMesaSwapBuffers(void);
83
84GLAPI void GLAPIENTRY fxMesaSetNearFar(GLfloat nearVal, GLfloat farVal);
85
86GLAPI void GLAPIENTRY fxMesaUpdateScreenSize(fxMesaContext ctx);
87
jtgafb833d1999-08-19 00:55:39 +000088GLAPI void GLAPIENTRY fxCloseHardware(void);
89
Brian Paul9ec58c22003-08-19 15:52:51 +000090GLAPI void GLAPIENTRY fxGetScreenGeometry (GLint *w, GLint *h);
91
jtgafb833d1999-08-19 00:55:39 +000092
93#if defined (__BEOS__)
94#pragma export off
95#endif
96
97
98#ifdef __cplusplus
99}
100#endif
101
102
103#endif