diff options
author | Brian Paul <[email protected]> | 2006-03-01 02:07:50 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2006-03-01 02:07:50 +0000 |
commit | 6d4284e2bff012e3ceeb41157b07d1d887d7cfb1 (patch) | |
tree | 3562c0395d3fd07d907711c4df3c1d64f5498ff8 /src/mesa/main/state.c | |
parent | 9974540c73e0c6e03f2da46483e38363d62a2e7b (diff) |
Added glBlitFramebufferEXT function.
Diffstat (limited to 'src/mesa/main/state.c')
-rw-r--r-- | src/mesa/main/state.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/mesa/main/state.c b/src/mesa/main/state.c index 9c59ac301f3..994aaff7b00 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 } |