opengl_ext.h 1.86 KB
Newer Older
Lionel Ulmer's avatar
Lionel Ulmer committed
1 2 3
/* Typedefs for extensions loading

     Copyright (c) 2000 Lionel Ulmer
4 5 6 7 8 9 10 11 12 13 14 15 16
*
* 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
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Lionel Ulmer's avatar
Lionel Ulmer committed
18 19 20 21
*/
#ifndef __DLLS_OPENGL32_OPENGL_EXT_H
#define __DLLS_OPENGL32_OPENGL_EXT_H

22 23 24 25 26
#undef APIENTRY
#undef CALLBACK
#undef WINAPI

#define XMD_H /* This is to prevent the Xmd.h inclusion bug :-/ */
27
#define GL_GLEXT_PROTOTYPES
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
#include <GL/gl.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 */
49 50
void enter_gl(void);
#define ENTER_GL() enter_gl()
51 52 53
#define LEAVE_GL() wine_tsx11_unlock_ptr()


Lionel Ulmer's avatar
Lionel Ulmer committed
54
typedef struct {
55
  const char  *name;     /* name of the extension */
56
  const char  *extension; /* name of the GL/WGL extension */
Lionel Ulmer's avatar
Lionel Ulmer committed
57 58 59
  void  *func;     /* pointer to the Wine function for this extension */
} OpenGL_extension;

60
extern void *extension_funcs[];
61 62
extern const OpenGL_extension extension_registry[];
extern const int extension_registry_size;
Lionel Ulmer's avatar
Lionel Ulmer committed
63 64

#endif /* __DLLS_OPENGL32_OPENGL_EXT_H */