diff options
author | Samuel Rødal <sroedal@trolltech.com> | 2009-03-12 08:00:34 (GMT) |
---|---|---|
committer | Gunnar Sletta <gunnar@trolltech.com> | 2009-04-01 14:35:46 (GMT) |
commit | 1ada6800efbbca276441b3b170b1ccfa0c09c20a (patch) | |
tree | 5687624d88cb06adaedbf48db03eb70c732b3fad /src/opengl/qgl_p.h | |
parent | 4d4580b5f43adb22b6ba95f49698efcd5dbdfeae (diff) | |
download | Qt-1ada6800efbbca276441b3b170b1ccfa0c09c20a.zip Qt-1ada6800efbbca276441b3b170b1ccfa0c09c20a.tar.gz Qt-1ada6800efbbca276441b3b170b1ccfa0c09c20a.tar.bz2 |
Fixes: Add blitting and multisample API to QGLFramebufferObject.
RevBy: Trond
Details: Support GL_EXT_framebuffer_multisample and GL_EXT_framebuffer_blit
in the QGLFramebufferObject API.
Diffstat (limited to 'src/opengl/qgl_p.h')
-rw-r--r-- | src/opengl/qgl_p.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/opengl/qgl_p.h b/src/opengl/qgl_p.h index 76f3812..8ab73d8 100644 --- a/src/opengl/qgl_p.h +++ b/src/opengl/qgl_p.h @@ -330,7 +330,8 @@ public: StencilWrap = 0x00000100, PackedDepthStencil = 0x00000200, NVFloatBuffer = 0x00000400, - PixelBufferObject = 0x00000800 + PixelBufferObject = 0x00000800, + FramebufferBlit = 0x00001000 }; Q_DECLARE_FLAGS(Extensions, Extension) |