diff options
author | Jeremy Huddleston <[email protected]> | 2011-06-05 18:50:55 -0400 |
---|---|---|
committer | Jeremy Huddleston <[email protected]> | 2011-06-05 20:52:15 -0400 |
commit | 1885cf27c9c4642a049c60a8236cb84735cb9eba (patch) | |
tree | 1319b66aeb8dfbe9949f047f48ff9ba0bb07cbaf /src/glx/glxclient.h | |
parent | 3843bbcb4ca4de232dbae6ba3ae619ddfc93508b (diff) |
apple: Build darwin using applegl rather than indirect
This reverts portions of 6849916170c0275c13510251a7b217c20f2b993e that caused
the darwin config to fail to build due to missing implementations in that
commit.
See https://bugs.freedesktop.org/show_bug.cgi?id=29162
Signed-off-by: Jeremy Huddleston <[email protected]>
Diffstat (limited to 'src/glx/glxclient.h')
-rw-r--r-- | src/glx/glxclient.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/glx/glxclient.h b/src/glx/glxclient.h index f9ab222d16e..9262f86f1f3 100644 --- a/src/glx/glxclient.h +++ b/src/glx/glxclient.h @@ -769,7 +769,19 @@ GarbageCollectDRIDrawables(struct glx_screen *psc); extern __GLXDRIdrawable * GetGLXDRIDrawable(Display *dpy, GLXDrawable drawable); +#endif + +#ifdef GLX_USE_APPLEGL +extern struct glx_screen * +applegl_create_screen(int screen, struct glx_display * priv); + +extern struct glx_context * +applegl_create_context(struct glx_screen *psc, + struct glx_config *mode, + struct glx_context *shareList, int renderType); +extern int +applegl_create_display(struct glx_display *display); #endif extern struct glx_context dummyContext; |