From 6d4284e2bff012e3ceeb41157b07d1d887d7cfb1 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 1 Mar 2006 02:07:50 +0000 Subject: Added glBlitFramebufferEXT function. --- src/mesa/main/state.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/mesa/main/state.c') diff --git a/src/mesa/main/state.c b/src/mesa/main/state.c index 9c59ac301f..994aaff7b0 100644 --- a/src/mesa/main/state.c +++ b/src/mesa/main/state.c @@ -1,8 +1,8 @@ /* * Mesa 3-D graphics library - * Version: 6.3 + * Version: 6.5 * - * Copyright (C) 1999-2005 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2006 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -786,6 +786,10 @@ _mesa_init_exec_table(struct _glapi_table *exec) /* GL_EXT_timer_query */ SET_GetQueryObjecti64vEXT(exec, _mesa_GetQueryObjecti64vEXT); SET_GetQueryObjectui64vEXT(exec, _mesa_GetQueryObjectui64vEXT); + +#if FEATURE_EXT_framebuffer_blit + SET_BlitFramebufferEXT(exec, _mesa_BlitFramebufferEXT); +#endif } -- cgit v1.2.3