diff options
author | Jeremy Huddleston <[email protected]> | 2009-12-24 09:20:33 -0800 |
---|---|---|
committer | Jeremy Huddleston <[email protected]> | 2010-01-03 08:58:13 -0500 |
commit | 32305e3a9f9408922c34f06174aaa0d34cf72459 (patch) | |
tree | 322ae7faaf3e49e3ca5539ee42f2876529c23f09 /src/glx/x11/glxcmds.c | |
parent | 1d95544446f3b862620fe5bb33b37705a2ad8681 (diff) |
glxcmds: Fix comment about __DRI_ALLOCATE
Signed-off-by: Jeremy Huddleston <[email protected]>
Diffstat (limited to 'src/glx/x11/glxcmds.c')
-rw-r--r-- | src/glx/x11/glxcmds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glx/x11/glxcmds.c b/src/glx/x11/glxcmds.c index daa9076471a..d1c68dd02e1 100644 --- a/src/glx/x11/glxcmds.c +++ b/src/glx/x11/glxcmds.c @@ -2575,7 +2575,7 @@ glXAllocateMemoryMESA(Display * dpy, int scrn, (void) readFreq; (void) writeFreq; (void) priority; -#endif /* GLX_DIRECT_RENDERING */ +#endif /* __DRI_ALLOCATE */ return NULL; } @@ -2594,7 +2594,7 @@ glXFreeMemoryMESA(Display * dpy, int scrn, void *pointer) (void) dpy; (void) scrn; (void) pointer; -#endif /* GLX_DIRECT_RENDERING */ +#endif /* __DRI_ALLOCATE */ } |