From 8620579483789ae9ac1b68dbefe32b70011386de Mon Sep 17 00:00:00 2001 From: Jeremy Huddleston Date: Mon, 2 Feb 2009 12:30:57 -0800 Subject: [PATCH] XQuartz: GLX: Fix accidental exclusion of glBlitFramebufferEXT on Leopard --- hw/xquartz/GL/indirect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xquartz/GL/indirect.c b/hw/xquartz/GL/indirect.c index c4e2824f3..e23dbf9d8 100644 --- a/hw/xquartz/GL/indirect.c +++ b/hw/xquartz/GL/indirect.c @@ -1291,7 +1291,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);