diff options
author | Jeremy Huddleston <jeremyhu@freedesktop.org> | 2009-02-02 12:30:57 -0800 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@freedesktop.org> | 2009-02-02 12:36:01 -0800 |
commit | f5c7f8a3ab5723b6c1c3cd21b90a87fd7f37cb7f (patch) | |
tree | a15aafd243b7c077155e88083036c5a2a085d8cc | |
parent | 5100d829a4d71ce4a9fbc2b81694a1fb90066ccf (diff) |
XQuartz: GLX: Fix accidental exclusion of glBlitFramebufferEXT on Leopard
(cherry picked from commit 8620579483789ae9ac1b68dbefe32b70011386de)
-rw-r--r-- | hw/xquartz/GL/indirect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xquartz/GL/indirect.c b/hw/xquartz/GL/indirect.c index 687d531a8..517ab1a59 100644 --- a/hw/xquartz/GL/indirect.c +++ b/hw/xquartz/GL/indirect.c @@ -855,7 +855,7 @@ static void setup_dispatch_table(void) { SET_BlendEquationSeparateEXT(disp, glBlendEquationSeparateEXT); SET_BlendFunc(disp, glBlendFunc); SET_BlendFuncSeparateEXT(disp, glBlendFuncSeparateEXT); -#if MAC_OS_X_VERSION_MIN_REQUIRED > 1050 +#if MAC_OS_X_VERSION_MIN_REQUIRED >= 1050 SET_BlitFramebufferEXT(disp, glBlitFramebufferEXT); #endif SET_BufferDataARB(disp, glBufferDataARB); |