]> git.tdb.fi Git - libs/gl.git/blob - source/ext_framebuffer_blit.cpp
For a few lingering whitespace issues
[libs/gl.git] / source / ext_framebuffer_blit.cpp
1 #include "extension.h"
2 #include "ext_framebuffer_blit.h"
3
4 namespace Msp {
5 namespace GL {
6
7 PFNGLBLITFRAMEBUFFEREXTPROC glBlitFramebufferEXT = 0;
8
9 void init_ext_framebuffer_blit()
10 {
11         glBlitFramebufferEXT = reinterpret_cast<PFNGLBLITFRAMEBUFFEREXTPROC>(get_proc_address("glBlitFramebufferEXT"));
12 }
13
14 } // namespace GL
15 } // namespace Msp