/usr/include/vtk-6.3/vtkFrameBufferObject2.h is in libvtk6-dev 6.3.0+dfsg1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkFrameBufferObject2.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkFrameBufferObject2 - Interface to OpenGL framebuffer object.
// .SECTION Description
// A light and efficient interface to an OpenGL Frame Buffer Object.
// Use is very simillalry to directly calling OpenGL, but as vtkObject
// it may safely stored, shared, or passed around. It supports FBO Blit
// and transfer to Pixel Buffer Object.
//
// Typical use case:
//\code{.cpp}
// vtkFrameBufferObject2 *fbo = this->Internals->FBO;
// fbo->SaveCurrentBindings();
// fbo->Bind(vtkgl::FRAMEBUFFER_EXT);
// fbo->AddDepthAttachment(vtkgl::DRAW_FRAMEBUFFER_EXT, depthBuffer);
// fbo->AddColorAttachment(vtkgl::DRAW_FRAMEBUFFER_EXT, 0U, colorTex1);
// fbo->AddColorAttachment(vtkgl::DRAW_FRAMEBUFFER_EXT, 1U, colorTex2);
// fbo->AddColorAttachment(vtkgl::DRAW_FRAMEBUFFER_EXT, 2U, colorTex3);
// fbo->ActivateDrawBuffers(3);
// vtkCheckFrameBufferStatusMacro(vtkgl::FRAMEBUFFER_EXT);
//
// ...
//
// fbo->UnBind(vtkgl::FRAMEBUFFER_EXT);
//\endcode
//
// .SECTION See Also
// vtkRenderbuffer, vtkPixelBufferObject
#ifndef vtkFrameBufferObject2_h
#define vtkFrameBufferObject2_h
#include "vtkObject.h"
#include "vtkRenderingOpenGLModule.h" // For export macro
#include "vtkSmartPointer.h" // needed for vtkSmartPointer.
#include "vtkWeakPointer.h" // needed for vtkWeakPointer.
// Description:
// A variant of vtkErrorMacro that is used to verify framebuffer
// object completeness. It's provided so that reporting may include
// the file and line number of the offending code. In release mode
// the macro does nothing.
#ifdef NDEBUG
# define vtkCheckFrameBufferStatusMacro(mode)
# define vtkStaticCheckFrameBufferStatusMacro(mode)
#else
# define vtkCheckFrameBufferStatusMacroImpl(macro, mode) \
{ \
const char *eStr; \
bool ok = vtkFrameBufferObject2::GetFrameBufferStatus(mode, eStr); \
if (!ok) \
{ \
macro( \
<< "OpenGL ERROR. The FBO is incomplete : " << eStr); \
} \
}
# define vtkCheckFrameBufferStatusMacro(mode) \
vtkCheckFrameBufferStatusMacroImpl(vtkErrorMacro, mode)
# define vtkStaticCheckFrameBufferStatusMacro(mode) \
vtkCheckFrameBufferStatusMacroImpl(vtkGenericWarningMacro, mode)
#endif
class vtkRenderWindow;
class vtkTextureObject;
class vtkRenderbuffer;
class vtkPixelBufferObject;
class vtkOpenGLExtensionManager;
class vtkOpenGLRenderWindow;
class VTKRENDERINGOPENGL_EXPORT vtkFrameBufferObject2 : public vtkObject
{
public:
static vtkFrameBufferObject2* New();
vtkTypeMacro(vtkFrameBufferObject2, vtkObject);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Get/Set the context. Context must be a vtkOpenGLRenderWindow.
// This does not increase the reference count of the
// context to avoid reference loops.
// SetContext() may raise an error is the OpenGL context does not support the
// required OpenGL extensions.
void SetContext(vtkRenderWindow *context);
vtkRenderWindow *GetContext();
// Description:
// Returns if the context supports the required extensions.
// Extension will be loaded when the conetxt is set.
static bool IsSupported(vtkRenderWindow *renWin);
// Description:
// Bind FBO to FRAMEBUFFER, DRAW_FRAMEBUFFER or READ_FRAMEBUFFER
// The current binding is not saved, nor restored. (see glBindFramebuffer)
// This method can be used to prepare for FBO Blit or buffer ping-pong.
// Low level api.
void Bind(unsigned int mode);
// Description:
// Bind saved FBO (see SaveCurrentBindings) for DRAW or READ (see glBindFramebuffer)
// If no bindings were saved bind to default FBO.
// Low level api.
void UnBind(unsigned int mode);
// Description:
// Store the current framebuffer bindings. If this method
// is called then UnBind will restore the saved value accoring
// to its mode (DRAW_FRAMEBUFFER,READ_FRAMEBUFFER,FRAMEBUFFER)
// Restoration occurs in UnBind.
// Low level api
void SaveCurrentBindings();
// Description:
// Store the current draw and read buffers. When restored
// only the buffers matching mode are modified.
// DRAW_FRAMEBUFFER -> glDrawBuffer
// READ_FRAMEBUFFER -> glReadBuffer
// FRAMEBUFFER -> both
void SaveCurrentBuffers();
void RestorePreviousBuffers(unsigned int mode);
// Description:
// Directly assign/remove a texture to color attachments.
void AddColorAttachment(
unsigned int mode,
unsigned int attId,
vtkTextureObject* tex);
void AddTexColorAttachment(
unsigned int mode,
unsigned int attId,
unsigned int handle);
void RemoveTexColorAttachments(unsigned int mode, unsigned int num);
void RemoveTexColorAttachment(unsigned int mode, unsigned int attId)
{ this->AddTexColorAttachment(mode, attId, 0U); }
// Description:
// Directly assign/remove a renderbuffer to color attachments.
void AddColorAttachment(
unsigned int mode,
unsigned int attId,
vtkRenderbuffer* tex);
void AddRenColorAttachment(
unsigned int mode,
unsigned int attId,
unsigned int handle);
void RemoveRenColorAttachments(unsigned int mode, unsigned int num);
void RemoveRenColorAttachment(unsigned int mode, unsigned int attId)
{ this->AddRenColorAttachment(mode, attId, 0U); }
// Description:
// Directly assign/remove a texture/renderbuffer to depth attachments.
void AddDepthAttachment(unsigned int mode, vtkTextureObject* tex);
void AddTexDepthAttachment(unsigned int mode, unsigned int handle);
void RemoveTexDepthAttachment(unsigned int mode)
{ this->AddTexDepthAttachment(mode, 0U); }
// Description:
// Directly assign/remove a renderbuffer to depth attachments.
void AddDepthAttachment(unsigned int mode, vtkRenderbuffer* tex);
void AddRenDepthAttachment(unsigned int mode, unsigned int handle);
void RemoveRenDepthAttachment(unsigned int mode)
{ this->AddRenDepthAttachment(mode, 0U); }
// Description:
// Select a single specific draw or read buffer (zero based)
void ActivateDrawBuffer(unsigned int id);
void ActivateReadBuffer(unsigned int id);
void DeactivateReadBuffer();
// Description:
// Select n consecutive write attachments.
// Low level api.
void ActivateDrawBuffers(unsigned int n);
void ActivateDrawBuffers(unsigned int *ids, int n);
void DeactivateDrawBuffers();
// Description:
// Set up ortho viewport with scissor, lighting, blend, and depth
// disabled. The method affects the current bound FBO. The method is
// static so that it may be used on the default FBO without an instance.
// Low level api.
static
void InitializeViewport(int width, int height);
// Description:
// Validate the current FBO configuration (attachments, formats, etc)
// prints detected errors to vtkErrorMacro.
// Low level api.
int CheckFrameBufferStatus(unsigned int mode);
// Description:
// Validate the current FBO configuration (attachments, formats, etc)
// return false if the FBO is incomplete. Assigns description a literal
// containing a description of the status.
// Low level api.
static
bool GetFrameBufferStatus(
unsigned int mode,
const char *&desc);
// Description:
// Copy from the currently bound READ FBO to the currently
// bound DRAW FBO. The method is static so that one doesn't
// need to ccreate an instance when transfering between attachments
// in the default FBO.
static
int Blit(
int srcExt[4],
int destExt[4],
unsigned int bits,
unsigned int mapping);
// Description:
// Download data from the read color attachment of the currently
// bound FBO into the retruned PBO. The PBO must be free'd when
// you are finished with it. The number of components in the
// PBO is the same as in the name of the specific download fucntion.
// When downloading a single color channel, the channel must be
// identified by index, 1->red, 2->green, 3-> blue.
vtkPixelBufferObject *DownloadColor1(
int extent[4],
int vtkType,
int channel);
vtkPixelBufferObject *DownloadColor3(
int extent[4],
int vtkType);
vtkPixelBufferObject *DownloadColor4(
int extent[4],
int vtkType);
// Description:
// Download data from the depth attachment of the currently
// bound FBO. The returned PBO must be Delete'd by the caller.
// The retruned PBO has one component.
vtkPixelBufferObject *DownloadDepth(
int extent[4],
int vtkType);
// Description:
// Download data from the read buffer of the current FBO. These
// are low level meothds. In the static variant a PBO must be
// passed in since we don't have access to a context. The static
// method is provided so that one may download from the default
// FBO.
vtkPixelBufferObject *Download(
int extent[4],
int vtkType,
int nComps,
int oglType,
int oglFormat);
static
void Download(
int extent[4],
int vtkType,
int nComps,
int oglType,
int oglFormat,
vtkPixelBufferObject *pbo);
//BTX
protected:
// Description:
// Load all necessary extensions.
static
bool LoadRequiredExtensions(vtkRenderWindow *renWin);
// gen buffer (occurs when context is set)
void CreateFBO();
// delete buffer (occurs during destruction or context swicth)
void DestroyFBO();
// Description:
// Given a vtk type get a compatible open gl type.
int GetOpenGLType(int vtkType);
vtkFrameBufferObject2();
~vtkFrameBufferObject2();
vtkWeakPointer<vtkRenderWindow> Context;
unsigned int FBOIndex;
unsigned int PreviousDrawFBO;
unsigned int PreviousReadFBO;
unsigned int DepthBuffer;
unsigned int PreviousDrawBuffer;
unsigned int PreviousReadBuffer;
private:
vtkFrameBufferObject2(const vtkFrameBufferObject2&); // Not implemented.
void operator=(const vtkFrameBufferObject2&); // Not implemented.
friend class vtkRenderbuffer; // needs access to LoadRequiredExtentsions
//ETX
};
#endif
|