2000-05-12 22:18:14 +02:00
|
|
|
/* Typedefs for extensions loading
|
|
|
|
|
|
|
|
Copyright (c) 2000 Lionel Ulmer
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2000-05-12 22:18:14 +02:00
|
|
|
*/
|
|
|
|
#ifndef __DLLS_OPENGL32_OPENGL_EXT_H
|
|
|
|
#define __DLLS_OPENGL32_OPENGL_EXT_H
|
|
|
|
|
2002-09-25 02:29:56 +02:00
|
|
|
#undef APIENTRY
|
|
|
|
#undef CALLBACK
|
|
|
|
#undef WINAPI
|
|
|
|
|
|
|
|
#define XMD_H /* This is to prevent the Xmd.h inclusion bug :-/ */
|
2005-09-28 20:12:00 +02:00
|
|
|
#define GL_GLEXT_PROTOTYPES
|
2002-09-25 02:29:56 +02:00
|
|
|
#include <GL/gl.h>
|
|
|
|
#include <GL/glx.h>
|
|
|
|
#ifdef HAVE_GL_GLEXT_H
|
|
|
|
# include <GL/glext.h>
|
|
|
|
#endif
|
|
|
|
#undef XMD_H
|
|
|
|
|
|
|
|
#undef APIENTRY
|
|
|
|
#undef CALLBACK
|
|
|
|
#undef WINAPI
|
|
|
|
|
|
|
|
/* Redefines the constants */
|
|
|
|
#define CALLBACK __stdcall
|
|
|
|
#define WINAPI __stdcall
|
|
|
|
#define APIENTRY WINAPI
|
|
|
|
|
|
|
|
/* X11 locking */
|
|
|
|
|
|
|
|
extern void (*wine_tsx11_lock_ptr)(void);
|
|
|
|
extern void (*wine_tsx11_unlock_ptr)(void);
|
|
|
|
|
|
|
|
/* As GLX relies on X, this is needed */
|
2006-02-02 13:23:55 +01:00
|
|
|
void enter_gl(void);
|
|
|
|
#define ENTER_GL() enter_gl()
|
2002-09-25 02:29:56 +02:00
|
|
|
#define LEAVE_GL() wine_tsx11_unlock_ptr()
|
|
|
|
|
|
|
|
|
2000-05-12 22:18:14 +02:00
|
|
|
typedef struct {
|
2003-10-04 05:04:45 +02:00
|
|
|
const char *name; /* name of the extension */
|
2006-10-29 22:56:27 +01:00
|
|
|
const char *extension; /* name of the GL/WGL extension */
|
2000-05-12 22:18:14 +02:00
|
|
|
void *func; /* pointer to the Wine function for this extension */
|
|
|
|
} OpenGL_extension;
|
|
|
|
|
2006-06-09 18:13:09 +02:00
|
|
|
extern void *extension_funcs[];
|
2006-06-09 16:11:38 +02:00
|
|
|
extern const OpenGL_extension extension_registry[];
|
|
|
|
extern const int extension_registry_size;
|
2000-05-12 22:18:14 +02:00
|
|
|
|
|
|
|
#endif /* __DLLS_OPENGL32_OPENGL_EXT_H */
|