opengl32: Get rid of X/GLX leftovers.
This commit is contained in:
parent
9483760b35
commit
18e704f9aa
|
@ -26,7 +26,6 @@
|
||||||
#define XMD_H /* This is to prevent the Xmd.h inclusion bug :-/ */
|
#define XMD_H /* This is to prevent the Xmd.h inclusion bug :-/ */
|
||||||
#define GL_GLEXT_PROTOTYPES
|
#define GL_GLEXT_PROTOTYPES
|
||||||
#include <GL/gl.h>
|
#include <GL/gl.h>
|
||||||
#include <GL/glx.h>
|
|
||||||
#ifdef HAVE_GL_GLEXT_H
|
#ifdef HAVE_GL_GLEXT_H
|
||||||
# include <GL/glext.h>
|
# include <GL/glext.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -82,9 +82,6 @@ static char* internal_gl_extensions = NULL;
|
||||||
|
|
||||||
typedef struct wine_glcontext {
|
typedef struct wine_glcontext {
|
||||||
HDC hdc;
|
HDC hdc;
|
||||||
XVisualInfo *vis;
|
|
||||||
GLXFBConfig fb_conf;
|
|
||||||
GLXContext ctx;
|
|
||||||
BOOL do_escape;
|
BOOL do_escape;
|
||||||
/* ... more stuff here */
|
/* ... more stuff here */
|
||||||
} Wine_GLContext;
|
} Wine_GLContext;
|
||||||
|
|
|
@ -104,10 +104,10 @@ typedef struct wine_glpixelformat {
|
||||||
|
|
||||||
typedef struct wine_glcontext {
|
typedef struct wine_glcontext {
|
||||||
HDC hdc;
|
HDC hdc;
|
||||||
|
BOOL do_escape;
|
||||||
XVisualInfo *vis;
|
XVisualInfo *vis;
|
||||||
WineGLPixelFormat *fmt;
|
WineGLPixelFormat *fmt;
|
||||||
GLXContext ctx;
|
GLXContext ctx;
|
||||||
BOOL do_escape;
|
|
||||||
HDC read_hdc;
|
HDC read_hdc;
|
||||||
Drawable drawables[2];
|
Drawable drawables[2];
|
||||||
BOOL refresh_drawables;
|
BOOL refresh_drawables;
|
||||||
|
|
Loading…
Reference in New Issue