Commit 1249c642 authored by Alexandre Julliard's avatar Alexandre Julliard

opengl32: Make some functions and variables static.

parent 986e202a
...@@ -47,8 +47,20 @@ ...@@ -47,8 +47,20 @@
WINE_DEFAULT_DEBUG_CHANNEL(wgl); WINE_DEFAULT_DEBUG_CHANNEL(wgl);
WINE_DECLARE_DEBUG_CHANNEL(opengl); WINE_DECLARE_DEBUG_CHANNEL(opengl);
typedef struct wine_glx_s {
unsigned version;
/** SGIX / 1.3 */
GLXFBConfig* (*p_glXChooseFBConfig) (Display *dpy, int screen, const int *attrib_list, int *nelements);
int (*p_glXGetFBConfigAttrib) (Display *dpy, GLXFBConfig config, int attribute, int *value);
XVisualInfo* (*p_glXGetVisualFromFBConfig) (Display *dpy, GLXFBConfig config);
/** 1.3 */
GLXFBConfig* (*p_glXGetFBConfigs) (Display *dpy, int screen, int *nelements);
void (*p_glXQueryDrawable) (Display *dpy, GLXDrawable draw, int attribute, unsigned int *value);
Bool (*p_glXMakeContextCurrent) (Display *, GLXDrawable, GLXDrawable, GLXContext);
} wine_glx_t;
/** global glx object */ /** global glx object */
wine_glx_t wine_glx; static wine_glx_t wine_glx;
/* x11drv GDI escapes */ /* x11drv GDI escapes */
#define X11DRV_ESCAPE 6789 #define X11DRV_ESCAPE 6789
......
...@@ -90,21 +90,21 @@ static char *WGL_extensions = NULL; ...@@ -90,21 +90,21 @@ static char *WGL_extensions = NULL;
* *
* @TODO: use a struct to handle parameters * @TODO: use a struct to handle parameters
*/ */
BOOL query_function_make_current_read(glXGetProcAddressARB_t proc, const char *gl_version, const char *gl_extensions, static BOOL query_function_make_current_read(glXGetProcAddressARB_t proc, const char *gl_version, const char *gl_extensions,
const char* glx_version, const char *glx_extensions, const char* glx_version, const char *glx_extensions,
const char *server_glx_extensions, const char *client_glx_extensions) const char *server_glx_extensions, const char *client_glx_extensions)
{ {
return 0 <= strcmp("1.3", glx_version); return 0 <= strcmp("1.3", glx_version);
} }
BOOL query_function_multisample(glXGetProcAddressARB_t proc, const char *gl_version, const char *gl_extensions, static BOOL query_function_multisample(glXGetProcAddressARB_t proc, const char *gl_version, const char *gl_extensions,
const char* glx_version, const char *glx_extensions, const char* glx_version, const char *glx_extensions,
const char *server_glx_extensions, const char *client_glx_extensions) const char *server_glx_extensions, const char *client_glx_extensions)
{ {
return NULL != strstr(glx_extensions, "GLX_ARB_multisample"); return NULL != strstr(glx_extensions, "GLX_ARB_multisample");
} }
BOOL query_function_pbuffer(glXGetProcAddressARB_t proc, const char *gl_version, const char *gl_extensions, static BOOL query_function_pbuffer(glXGetProcAddressARB_t proc, const char *gl_version, const char *gl_extensions,
const char* glx_version, const char *glx_extensions, const char* glx_version, const char *glx_extensions,
const char *server_glx_extensions, const char *client_glx_extensions) const char *server_glx_extensions, const char *client_glx_extensions)
{ {
...@@ -114,7 +114,7 @@ BOOL query_function_pbuffer(glXGetProcAddressARB_t proc, const char *gl_version, ...@@ -114,7 +114,7 @@ BOOL query_function_pbuffer(glXGetProcAddressARB_t proc, const char *gl_version,
return 0 <= strcmp("1.3", glx_version) || NULL != strstr(glx_extensions, "GLX_SGIX_pbuffer"); return 0 <= strcmp("1.3", glx_version) || NULL != strstr(glx_extensions, "GLX_SGIX_pbuffer");
} }
BOOL query_function_pixel_format(glXGetProcAddressARB_t proc, const char *gl_version, const char *gl_extensions, static BOOL query_function_pixel_format(glXGetProcAddressARB_t proc, const char *gl_version, const char *gl_extensions,
const char* glx_version, const char *glx_extensions, const char* glx_version, const char *glx_extensions,
const char *server_glx_extensions, const char *client_glx_extensions) const char *server_glx_extensions, const char *client_glx_extensions)
{ {
...@@ -126,12 +126,12 @@ BOOL query_function_pixel_format(glXGetProcAddressARB_t proc, const char *gl_ver ...@@ -126,12 +126,12 @@ BOOL query_function_pixel_format(glXGetProcAddressARB_t proc, const char *gl_ver
* http://oss.sgi.com/projects/ogl-sample/registry/ARB/wgl_render_texture.txt * http://oss.sgi.com/projects/ogl-sample/registry/ARB/wgl_render_texture.txt
* ~/tmp/ogl/ogl_offscreen_rendering_3 * ~/tmp/ogl/ogl_offscreen_rendering_3
*/ */
Bool (*p_glXBindTexImageARB)(Display *dpy, GLXPbuffer pbuffer, int buffer); static Bool (*p_glXBindTexImageARB)(Display *dpy, GLXPbuffer pbuffer, int buffer);
Bool (*p_glXReleaseTexImageARB)(Display *dpy, GLXPbuffer pbuffer, int buffer); static Bool (*p_glXReleaseTexImageARB)(Display *dpy, GLXPbuffer pbuffer, int buffer);
Bool (*p_glXDrawableAttribARB)(Display *dpy, GLXDrawable draw, const int *attribList); static Bool (*p_glXDrawableAttribARB)(Display *dpy, GLXDrawable draw, const int *attribList);
int use_render_texture_emulation = 0; static int use_render_texture_emulation = 0;
int use_render_texture_ati = 0; static int use_render_texture_ati = 0;
BOOL query_function_render_texture(glXGetProcAddressARB_t proc, const char *gl_version, const char *gl_extensions, static BOOL query_function_render_texture(glXGetProcAddressARB_t proc, const char *gl_version, const char *gl_extensions,
const char* glx_version, const char *glx_extensions, const char* glx_version, const char *glx_extensions,
const char *server_glx_extensions, const char *client_glx_extensions) const char *server_glx_extensions, const char *client_glx_extensions)
{ {
...@@ -165,8 +165,8 @@ BOOL query_function_render_texture(glXGetProcAddressARB_t proc, const char *gl_v ...@@ -165,8 +165,8 @@ BOOL query_function_render_texture(glXGetProcAddressARB_t proc, const char *gl_v
return bTest; return bTest;
} }
int (*p_glXSwapIntervalSGI)(int); static int (*p_glXSwapIntervalSGI)(int);
BOOL query_function_swap_control(glXGetProcAddressARB_t proc, const char *gl_version, const char *gl_extensions, static BOOL query_function_swap_control(glXGetProcAddressARB_t proc, const char *gl_version, const char *gl_extensions,
const char* glx_version, const char *glx_extensions, const char* glx_version, const char *glx_extensions,
const char *server_glx_extensions, const char *client_glx_extensions) const char *server_glx_extensions, const char *client_glx_extensions)
{ {
...@@ -1212,7 +1212,7 @@ GLboolean WINAPI wglQueryPbufferARB(HPBUFFERARB hPbuffer, int iAttribute, int *p ...@@ -1212,7 +1212,7 @@ GLboolean WINAPI wglQueryPbufferARB(HPBUFFERARB hPbuffer, int iAttribute, int *p
return GL_TRUE; return GL_TRUE;
} }
GLboolean WINAPI wglBindTexImageARB(HPBUFFERARB hPbuffer, int iBuffer) static GLboolean WINAPI wglBindTexImageARB(HPBUFFERARB hPbuffer, int iBuffer)
{ {
Wine_GLPBuffer* object = (Wine_GLPBuffer*) hPbuffer; Wine_GLPBuffer* object = (Wine_GLPBuffer*) hPbuffer;
TRACE("(%p, %d)\n", hPbuffer, iBuffer); TRACE("(%p, %d)\n", hPbuffer, iBuffer);
...@@ -1255,7 +1255,7 @@ GLboolean WINAPI wglBindTexImageARB(HPBUFFERARB hPbuffer, int iBuffer) ...@@ -1255,7 +1255,7 @@ GLboolean WINAPI wglBindTexImageARB(HPBUFFERARB hPbuffer, int iBuffer)
return GL_FALSE; return GL_FALSE;
} }
GLboolean WINAPI wglReleaseTexImageARB(HPBUFFERARB hPbuffer, int iBuffer) static GLboolean WINAPI wglReleaseTexImageARB(HPBUFFERARB hPbuffer, int iBuffer)
{ {
Wine_GLPBuffer* object = (Wine_GLPBuffer*) hPbuffer; Wine_GLPBuffer* object = (Wine_GLPBuffer*) hPbuffer;
TRACE("(%p, %d)\n", hPbuffer, iBuffer); TRACE("(%p, %d)\n", hPbuffer, iBuffer);
...@@ -1295,7 +1295,7 @@ GLboolean WINAPI wglReleaseTexImageARB(HPBUFFERARB hPbuffer, int iBuffer) ...@@ -1295,7 +1295,7 @@ GLboolean WINAPI wglReleaseTexImageARB(HPBUFFERARB hPbuffer, int iBuffer)
return GL_FALSE; return GL_FALSE;
} }
GLboolean WINAPI wglSetPbufferAttribARB(HPBUFFERARB hPbuffer, const int *piAttribList) static GLboolean WINAPI wglSetPbufferAttribARB(HPBUFFERARB hPbuffer, const int *piAttribList)
{ {
Wine_GLPBuffer* object = (Wine_GLPBuffer*) hPbuffer; Wine_GLPBuffer* object = (Wine_GLPBuffer*) hPbuffer;
WARN("(%p, %p): alpha-testing, report any problem\n", hPbuffer, piAttribList); WARN("(%p, %p): alpha-testing, report any problem\n", hPbuffer, piAttribList);
......
...@@ -39,17 +39,4 @@ typedef struct { ...@@ -39,17 +39,4 @@ typedef struct {
extern WGL_extension wgl_extension_registry[]; extern WGL_extension wgl_extension_registry[];
extern int wgl_extension_registry_size; extern int wgl_extension_registry_size;
typedef struct wine_glx_s {
unsigned version;
/** SGIX / 1.3 */
GLXFBConfig* (*p_glXChooseFBConfig) (Display *dpy, int screen, const int *attrib_list, int *nelements);
int (*p_glXGetFBConfigAttrib) (Display *dpy, GLXFBConfig config, int attribute, int *value);
XVisualInfo* (*p_glXGetVisualFromFBConfig) (Display *dpy, GLXFBConfig config);
/** 1.3 */
GLXFBConfig* (*p_glXGetFBConfigs) (Display *dpy, int screen, int *nelements);
void (*p_glXQueryDrawable) (Display *dpy, GLXDrawable draw, int attribute, unsigned int *value);
Bool (*p_glXMakeContextCurrent) (Display *, GLXDrawable, GLXDrawable, GLXContext);
} wine_glx_t;
extern wine_glx_t wine_glx;
#endif /* __DLLS_OPENGL32_WGL_EXT_H */ #endif /* __DLLS_OPENGL32_WGL_EXT_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment