summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Huddleston <jeremyhu@freedesktop.org>2009-02-02 12:30:57 -0800
committerKeith Packard <keithp@keithp.com>2009-02-17 19:02:43 -0800
commit09cde70a6b3a05c28014862db19b36650412c2f3 (patch)
tree25120aa63d0fb23c5bd9859bcdde35e51e555aec
parent6bbe98f01d1fc66b6b853bdcdd62edf87a91627d (diff)
XQuartz: GLX: Fix accidental exclusion of glBlitFramebufferEXT on Leopard
(cherry picked from commit 8620579483789ae9ac1b68dbefe32b70011386de) (cherry picked from commit 0dbc356795bbab3889b5f1684f55bd193757d0c9) Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r--hw/xquartz/GL/indirect.c2
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);