diff options
author | Jon TURNEY <[email protected]> | 2010-08-09 14:47:26 +0100 |
---|---|---|
committer | Kristian Høgsberg <[email protected]> | 2010-09-07 12:33:11 -0400 |
commit | ae9487c29984addc96a6d617292370fbc3f8ff9a (patch) | |
tree | 3efedb7017659b4671055b8f26cdb8bdf380313a /src/glx/glxcmds.c | |
parent | 6561a64a69c0f5005d03ea297f9a309f48449731 (diff) |
Some fixes for GLX_INDIRECT_RENDERING only build
This fixes some of the build issues with GLX_INDIRECT_RENDERING but !GLX_DIRECT_RENDERING due to recent changes.
Signed-off-by: Jon TURNEY <[email protected]>
Signed-off-by: Kristian Høgsberg <[email protected]>
Diffstat (limited to 'src/glx/glxcmds.c')
-rw-r--r-- | src/glx/glxcmds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glx/glxcmds.c b/src/glx/glxcmds.c index d4aa8b58668..5cd928753fa 100644 --- a/src/glx/glxcmds.c +++ b/src/glx/glxcmds.c @@ -2161,9 +2161,9 @@ __glXWaitForMscOML(Display * dpy, GLXDrawable drawable, { #ifdef GLX_DIRECT_RENDERING __GLXDRIdrawable *pdraw = GetGLXDRIDrawable(dpy, drawable); -#endif struct glx_screen *psc = pdraw ? pdraw->psc : NULL; int ret; +#endif /* The OML_sync_control spec says these should "generate a GLX_BAD_VALUE @@ -2193,9 +2193,9 @@ __glXWaitForSbcOML(Display * dpy, GLXDrawable drawable, { #ifdef GLX_DIRECT_RENDERING __GLXDRIdrawable *pdraw = GetGLXDRIDrawable(dpy, drawable); -#endif struct glx_screen *psc = pdraw ? pdraw->psc : NULL; int ret; +#endif /* The OML_sync_control spec says this should "generate a GLX_BAD_VALUE * error", but the return type in the spec is Bool. |