diff options
author | Kristian Høgsberg <[email protected]> | 2010-07-22 22:24:00 -0400 |
---|---|---|
committer | Kristian Høgsberg <[email protected]> | 2010-07-22 22:24:00 -0400 |
commit | 7b7845a076c933e096ac511b4184141ba194449a (patch) | |
tree | 3dd59fa57af0df40f5676229fe567f3c30534bda /src/glx/dri_glx.c | |
parent | 31819830b66a49f1b62e09090cc65aefc657aeb8 (diff) |
glx: Move WaitGL, WaitX, UseXFont to context vtable functions
Diffstat (limited to 'src/glx/dri_glx.c')
-rw-r--r-- | src/glx/dri_glx.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/glx/dri_glx.c b/src/glx/dri_glx.c index 959fc7425a4..352d833fd7d 100644 --- a/src/glx/dri_glx.c +++ b/src/glx/dri_glx.c @@ -95,6 +95,9 @@ struct dri_drawable static const struct glx_context_vtable dri_context_vtable = { NULL, NULL, + DRI_glXUseXFont, + NULL, + NULL, }; /* @@ -879,8 +882,6 @@ driCreateScreen(int screen, __GLXdisplayPrivate *priv) psp->createContext = driCreateContext; psp->createDrawable = driCreateDrawable; psp->swapBuffers = driSwapBuffers; - psp->waitX = NULL; - psp->waitGL = NULL; #ifdef __DRI_SWAP_BUFFER_COUNTER psp->getDrawableMSC = driDrawableGetMSC; |