1 | /* $Id: glx_proto.h 18554 2009-03-30 15:24:33Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | *
|
---|
4 | * VirtualBox guest OpenGL DRI GLX header C prototypes
|
---|
5 | */
|
---|
6 |
|
---|
7 | /*
|
---|
8 | * Copyright (C) 2006-2008 Sun Microsystems, Inc.
|
---|
9 | *
|
---|
10 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | * available from http://www.virtualbox.org. This file is free software;
|
---|
12 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | * General Public License (GPL) as published by the Free Software
|
---|
14 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
15 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
16 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | *
|
---|
18 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
19 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
20 | * additional information or have any questions.
|
---|
21 | */
|
---|
22 |
|
---|
23 | #ifndef ___CROPENGL_GLX_PROTO_H
|
---|
24 | #define ___CROPENGL_GLX_PROTO_H
|
---|
25 |
|
---|
26 | #include "chromium.h"
|
---|
27 | #include "stub.h"
|
---|
28 |
|
---|
29 | #ifdef VBOXOGL_FAKEDRI
|
---|
30 | typedef const char * (*PGLXFUNC_GetDriverConfig)(const char *driverName);
|
---|
31 | typedef void (*PGLXFUNC_FreeMemoryMESA)(Display *dpy, int scrn, void *pointer);
|
---|
32 | typedef GLXContext (*PGLXFUNC_ImportContextEXT)(Display *dpy, GLXContextID contextID);
|
---|
33 | typedef GLXContextID (*PGLXFUNC_GetContextIDEXT)(const GLXContext ctx);
|
---|
34 | typedef Bool (*PGLXFUNC_MakeCurrentReadSGI)(Display *display, GLXDrawable draw, GLXDrawable read, GLXContext ctx);
|
---|
35 | typedef const char * (*PGLXFUNC_GetScreenDriver)(Display *dpy, int scrNum);
|
---|
36 | typedef Display * (*PGLXFUNC_GetCurrentDisplayEXT)(void);
|
---|
37 | typedef void (*PGLXFUNC_FreeContextEXT)(Display *dpy, GLXContext ctx);
|
---|
38 |
|
---|
39 | /*Mesa insternal*/
|
---|
40 | typedef int (*PGLXFUNC_QueryContextInfoEXT)(Display *dpy, GLXContext ctx);
|
---|
41 | typedef void * (*PGLXFUNC_AllocateMemoryMESA)(Display *dpy, int scrn,
|
---|
42 | size_t size, float readFreq,
|
---|
43 | float writeFreq, float priority);
|
---|
44 | typedef GLuint (*PGLXFUNC_GetMemoryOffsetMESA)(Display *dpy, int scrn, const void *pointer );
|
---|
45 | typedef GLXPixmap (*PGLXFUNC_CreateGLXPixmapMESA)(Display *dpy, XVisualInfo *visual, Pixmap pixmap, Colormap cmap);
|
---|
46 | #endif
|
---|
47 |
|
---|
48 | /*Common glX functions*/
|
---|
49 | typedef void (*PGLXFUNC_CopyContext)(Display *dpy, GLXContext src, GLXContext dst,unsigned long mask);
|
---|
50 | typedef void (*PGLXFUNC_UseXFont)(Font font, int first, int count, int listBase);
|
---|
51 | typedef CR_GLXFuncPtr (*PGLXFUNC_GetProcAddress)(const GLubyte *name);
|
---|
52 | typedef Bool (*PGLXFUNC_QueryExtension)(Display *dpy, int *errorBase, int *eventBase);
|
---|
53 | typedef Bool (*PGLXFUNC_IsDirect)(Display *dpy, GLXContext ctx);
|
---|
54 | typedef GLXPixmap (*PGLXFUNC_CreateGLXPixmap)(Display *dpy, XVisualInfo *vis, Pixmap pixmap);
|
---|
55 | typedef void (*PGLXFUNC_SwapBuffers)(Display *dpy, GLXDrawable drawable);
|
---|
56 | typedef GLXDrawable (*PGLXFUNC_GetCurrentDrawable)(void);
|
---|
57 | typedef void (*PGLXFUNC_WaitGL)(void);
|
---|
58 | typedef Display * (*PGLXFUNC_GetCurrentDisplay)(void);
|
---|
59 | typedef const char * (*PGLXFUNC_QueryServerString)(Display *dpy, int screen, int name);
|
---|
60 | typedef GLXContext (*PGLXFUNC_CreateContext)(Display *dpy, XVisualInfo *vis, GLXContext share, Bool direct);
|
---|
61 | typedef int (*PGLXFUNC_GetConfig)(Display *dpy, XVisualInfo *vis, int attrib, int *value);
|
---|
62 | typedef void (*PGLXFUNC_WaitX)(void);
|
---|
63 | typedef GLXContext (*PGLXFUNC_GetCurrentContext)(void);
|
---|
64 | typedef const char * (*PGLXFUNC_GetClientString)(Display *dpy, int name);
|
---|
65 | typedef Bool (*PGLXFUNC_MakeCurrent)(Display *dpy, GLXDrawable drawable, GLXContext ctx);
|
---|
66 | typedef void (*PGLXFUNC_DestroyContext)(Display *dpy, GLXContext ctx);
|
---|
67 | typedef CR_GLXFuncPtr (*PGLXFUNC_GetProcAddressARB)(const GLubyte *name);
|
---|
68 | typedef void (*PGLXFUNC_DestroyGLXPixmap)(Display *dpy, GLXPixmap pix);
|
---|
69 | typedef Bool (*PGLXFUNC_QueryVersion)(Display *dpy, int *major, int *minor);
|
---|
70 | typedef XVisualInfo * (*PGLXFUNC_ChooseVisual)(Display *dpy, int screen, int *attribList);
|
---|
71 | typedef const char * (*PGLXFUNC_QueryExtensionsString)(Display *dpy, int screen);
|
---|
72 |
|
---|
73 | /**
|
---|
74 | * Set this to 1 if you want to build stub functions for the
|
---|
75 | * GL_SGIX_pbuffer and GLX_SGIX_fbconfig extensions.
|
---|
76 | * This used to be disabled, due to "messy compilation issues",
|
---|
77 | * according to the earlier comment; but they're needed just
|
---|
78 | * to resolve symbols for OpenInventor applications, and I
|
---|
79 | * haven't found any reference to exactly what the "messy compilation
|
---|
80 | * issues" are, so I'm re-enabling the code by default.
|
---|
81 | */
|
---|
82 | #define GLX_EXTRAS 1
|
---|
83 |
|
---|
84 | #define GLX_SGIX_video_resize 1
|
---|
85 |
|
---|
86 | /**
|
---|
87 | * Prototypes, in case they're not in glx.h or glxext.h
|
---|
88 | * Unfortunately, there's some inconsistency between the extension
|
---|
89 | * specs, and the SGI, NVIDIA, XFree86 and common glxext.h header
|
---|
90 | * files.
|
---|
91 | */
|
---|
92 | #if defined(GLX_GLXEXT_VERSION)
|
---|
93 | /* match glxext.h, XFree86, Mesa */
|
---|
94 | #define ATTRIB_TYPE const int
|
---|
95 | #else
|
---|
96 | #define ATTRIB_TYPE int
|
---|
97 | #endif
|
---|
98 |
|
---|
99 | #if GLX_EXTRAS
|
---|
100 | typedef GLXPbufferSGIX (*PGLXFUNC_CreateGLXPbufferSGIX)
|
---|
101 | (Display *dpy, GLXFBConfigSGIX config, unsigned int width, unsigned int height, int *attrib_list);
|
---|
102 |
|
---|
103 | typedef int (*PGLXFUNC_QueryGLXPbufferSGIX)
|
---|
104 | (Display *dpy, GLXPbuffer pbuf, int attribute, unsigned int *value);
|
---|
105 |
|
---|
106 | typedef GLXFBConfigSGIX * (*PGLXFUNC_ChooseFBConfigSGIX)
|
---|
107 | (Display *dpy, int screen, int *attrib_list, int *nelements);
|
---|
108 |
|
---|
109 | typedef void (*PGLXFUNC_DestroyGLXPbufferSGIX)(Display *dpy, GLXPbuffer pbuf);
|
---|
110 | typedef void (*PGLXFUNC_SelectEventSGIX)(Display *dpy, GLXDrawable drawable, unsigned long mask);
|
---|
111 | typedef void (*PGLXFUNC_GetSelectedEventSGIX)(Display *dpy, GLXDrawable drawable, unsigned long *mask);
|
---|
112 |
|
---|
113 | typedef GLXFBConfigSGIX (*PGLXFUNC_GetFBConfigFromVisualSGIX)(Display *dpy, XVisualInfo *vis);
|
---|
114 | typedef XVisualInfo * (*PGLXFUNC_GetVisualFromFBConfigSGIX)(Display *dpy, GLXFBConfig config);
|
---|
115 | typedef GLXContext (*PGLXFUNC_CreateContextWithConfigSGIX)
|
---|
116 | (Display *dpy, GLXFBConfig config, int render_type, GLXContext share_list, Bool direct);
|
---|
117 |
|
---|
118 | typedef GLXPixmap (*PGLXFUNC_CreateGLXPixmapWithConfigSGIX)(Display *dpy, GLXFBConfig config, Pixmap pixmap);
|
---|
119 | typedef int (*PGLXFUNC_GetFBConfigAttribSGIX)(Display *dpy, GLXFBConfig config, int attribute, int *value);
|
---|
120 |
|
---|
121 | /*
|
---|
122 | * GLX 1.3 functions
|
---|
123 | */
|
---|
124 | typedef GLXFBConfig * (*PGLXFUNC_ChooseFBConfig)(Display *dpy, int screen, ATTRIB_TYPE *attrib_list, int *nelements);
|
---|
125 | typedef GLXPbuffer (*PGLXFUNC_CreatePbuffer)(Display *dpy, GLXFBConfig config, ATTRIB_TYPE *attrib_list);
|
---|
126 | typedef GLXPixmap (*PGLXFUNC_CreatePixmap)(Display *dpy, GLXFBConfig config, Pixmap pixmap, const ATTRIB_TYPE *attrib_list);
|
---|
127 | typedef GLXWindow (*PGLXFUNC_CreateWindow)(Display *dpy, GLXFBConfig config, Window win, ATTRIB_TYPE *attrib_list);
|
---|
128 | typedef GLXContext (*PGLXFUNC_CreateNewContext)
|
---|
129 | (Display *dpy, GLXFBConfig config, int render_type, GLXContext share_list, Bool direct);
|
---|
130 |
|
---|
131 | typedef void (*PGLXFUNC_DestroyPbuffer)(Display *dpy, GLXPbuffer pbuf);
|
---|
132 | typedef void (*PGLXFUNC_DestroyPixmap)(Display *dpy, GLXPixmap pixmap);
|
---|
133 | typedef void (*PGLXFUNC_DestroyWindow)(Display *dpy, GLXWindow win);
|
---|
134 | typedef GLXDrawable (*PGLXFUNC_GetCurrentReadDrawable)(void);
|
---|
135 | typedef int (*PGLXFUNC_GetFBConfigAttrib)(Display *dpy, GLXFBConfig config, int attribute, int *value);
|
---|
136 | typedef GLXFBConfig * (*PGLXFUNC_GetFBConfigs)(Display *dpy, int screen, int *nelements);
|
---|
137 | typedef void (*PGLXFUNC_GetSelectedEvent)(Display *dpy, GLXDrawable draw, unsigned long *event_mask);
|
---|
138 | typedef XVisualInfo * (*PGLXFUNC_GetVisualFromFBConfig)(Display *dpy, GLXFBConfig config);
|
---|
139 | typedef Bool (*PGLXFUNC_MakeContextCurrent)(Display *display, GLXDrawable draw, GLXDrawable read, GLXContext ctx);
|
---|
140 | typedef int (*PGLXFUNC_QueryContext)(Display *dpy, GLXContext ctx, int attribute, int *value);
|
---|
141 | typedef void (*PGLXFUNC_QueryDrawable)(Display *dpy, GLXDrawable draw, int attribute, unsigned int *value);
|
---|
142 | typedef void (*PGLXFUNC_SelectEvent)(Display *dpy, GLXDrawable draw, unsigned long event_mask);
|
---|
143 |
|
---|
144 | #ifdef CR_EXT_texture_from_pixmap
|
---|
145 | typedef void (*PGLXFUNC_BindTexImageEXT)(Display *dpy, GLXDrawable draw, int buffer, const int *attrib_list);
|
---|
146 | typedef void (*PGLXFUNC_ReleaseTexImageEXT)(Display *dpy, GLXDrawable draw, int buffer);
|
---|
147 | #endif
|
---|
148 |
|
---|
149 | #endif /* GLX_EXTRAS */
|
---|
150 |
|
---|
151 | #endif //___CROPENGL_GLX_PROTO_H
|
---|