vtkPixelBufferObject Class Reference

#include <vtkPixelBufferObject.h>

Inheritance diagram for vtkPixelBufferObject:

Inheritance graph
[legend]
Collaboration diagram for vtkPixelBufferObject:

Collaboration graph
[legend]

List of all members.


Detailed Description

abstracts an OpenGL pixel buffer object.

Provides low-level access to GPU memory. Used to pass raw data to GPU. The data is uploaded into a pixel buffer.

See also:
OpenGL Pixel Buffer Object Extension Spec (ARB_pixel_buffer_object): http://www.opengl.org/registry/specs/ARB/pixel_buffer_object.txt
Warning:
Since most GPUs don't support double format all double data is converted to float and then uploaded. DON'T PLAY WITH IT YET.

Definition at line 38 of file vtkPixelBufferObject.h.


Public Types

enum  BufferType { PACKED_BUFFER, UNPACKED_BUFFER }
typedef vtkObject Superclass

Public Member Functions

virtual const char * GetClassName ()
virtual int IsA (const char *type)
void PrintSelf (ostream &os, vtkIndent indent)
void BindToUnPackedBuffer ()
void UnBind ()
void Bind (BufferType buffer)
void ReleaseMemory ()
void SetContext (vtkRenderWindow *context)
vtkRenderWindowGetContext ()
bool Upload1D (int type, void *data, unsigned int numtuples, int comps, vtkIdType increment)
bool Upload2D (int type, void *data, unsigned int dims[2], int comps, vtkIdType increments[2])
bool Upload3D (int type, void *data, unsigned int dims[3], int comps, vtkIdType increments[3], int components, int *componentList)
virtual int GetType ()
virtual unsigned int GetSize ()
virtual unsigned int GetHandle ()
bool Download1D (int type, void *data, unsigned int dim, int numcomps, vtkIdType increment)
bool Download2D (int type, void *data, unsigned int dims[2], int numcomps, vtkIdType increments[2])
bool Download3D (int type, void *data, unsigned int dims[3], int numcomps, vtkIdType increments[3])
void BindToPackedBuffer ()

Static Public Member Functions

static vtkPixelBufferObjectNew ()
static int IsTypeOf (const char *type)
static vtkPixelBufferObjectSafeDownCast (vtkObject *o)
static bool IsSupported (vtkRenderWindow *renWin)

Protected Member Functions

 vtkPixelBufferObject ()
 ~vtkPixelBufferObject ()
bool LoadRequiredExtensions (vtkOpenGLExtensionManager *mgr)
void CreateBuffer ()
void DestroyBuffer ()

Protected Attributes

int BufferTarget
int Type
unsigned int Size
vtkWeakPointer< vtkRenderWindowContext
unsigned int Handle

Member Typedef Documentation

Reimplemented from vtkObject.

Definition at line 42 of file vtkPixelBufferObject.h.


Member Enumeration Documentation

Enumerator:
PACKED_BUFFER 
UNPACKED_BUFFER 

Definition at line 193 of file vtkPixelBufferObject.h.


Constructor & Destructor Documentation

vtkPixelBufferObject::vtkPixelBufferObject (  )  [protected]

vtkPixelBufferObject::~vtkPixelBufferObject (  )  [protected]


Member Function Documentation

static vtkPixelBufferObject* vtkPixelBufferObject::New (  )  [static]

Create an object with Debug turned off, modified time initialized to zero, and reference counting on.

Reimplemented from vtkObject.

virtual const char* vtkPixelBufferObject::GetClassName (  )  [virtual]

Reimplemented from vtkObject.

static int vtkPixelBufferObject::IsTypeOf ( const char *  name  )  [static]

Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h.

Reimplemented from vtkObject.

virtual int vtkPixelBufferObject::IsA ( const char *  name  )  [virtual]

Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h.

Reimplemented from vtkObject.

static vtkPixelBufferObject* vtkPixelBufferObject::SafeDownCast ( vtkObject o  )  [static]

Reimplemented from vtkObject.

void vtkPixelBufferObject::PrintSelf ( ostream &  os,
vtkIndent  indent 
) [virtual]

Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.

Reimplemented from vtkObject.

void vtkPixelBufferObject::SetContext ( vtkRenderWindow context  ) 

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.

vtkRenderWindow* vtkPixelBufferObject::GetContext (  ) 

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.

bool vtkPixelBufferObject::Upload1D ( int  type,
void *  data,
unsigned int  numtuples,
int  comps,
vtkIdType  increment 
) [inline]

Upload data to GPU. The input data can be freed after this call. The data ptr is treated as an 1D array with the given number of tuples and given number of components in each tuple to be copied to the GPU. increment is the offset added after the last component in each tuple is transferred. Look at the documentation for ContinuousIncrements in vtkImageData for details about how increments are specified.

Definition at line 61 of file vtkPixelBufferObject.h.

bool vtkPixelBufferObject::Upload2D ( int  type,
void *  data,
unsigned int  dims[2],
int  comps,
vtkIdType  increments[2] 
) [inline]

Update data to GPU sourcing it from a 2D array. The input data can be freed after this call. The data ptr is treated as a 2D array with increments indicating how to iterate over the data. Look at the documentation for ContinuousIncrements in vtkImageData for details about how increments are specified.

Definition at line 82 of file vtkPixelBufferObject.h.

bool vtkPixelBufferObject::Upload3D ( int  type,
void *  data,
unsigned int  dims[3],
int  comps,
vtkIdType  increments[3],
int  components,
int *  componentList 
)

Update data to GPU sourcing it from a 3D array. The input data can be freed after this call. The data ptr is treated as a 3D array with increments indicating how to iterate over the data. Look at the documentation for ContinuousIncrements in vtkImageData for details about how increments are specified.

virtual int vtkPixelBufferObject::GetType (  )  [virtual]

Get the type with which the data is loaded into the GPU. eg. VTK_FLOAT for float32, VTK_CHAR for byte, VTK_UNSIGNED_CHAR for unsigned byte etc.

virtual unsigned int vtkPixelBufferObject::GetSize (  )  [virtual]

Get the size of the data loaded into the GPU. Size is in the number of elements of the uploaded Type.

virtual unsigned int vtkPixelBufferObject::GetHandle (  )  [virtual]

Get the openGL buffer handle.

bool vtkPixelBufferObject::Download1D ( int  type,
void *  data,
unsigned int  dim,
int  numcomps,
vtkIdType  increment 
) [inline]

Download data from pixel buffer to the 1D array. The length of the array must be equal to the size of the data in the memory.

Definition at line 133 of file vtkPixelBufferObject.h.

bool vtkPixelBufferObject::Download2D ( int  type,
void *  data,
unsigned int  dims[2],
int  numcomps,
vtkIdType  increments[2] 
) [inline]

Download data from pixel buffer to the 2D array. (lengthx * lengthy) must be equal to the size of the data in the memory.

Definition at line 153 of file vtkPixelBufferObject.h.

bool vtkPixelBufferObject::Download3D ( int  type,
void *  data,
unsigned int  dims[3],
int  numcomps,
vtkIdType  increments[3] 
)

Download data from pixel buffer to the 3D array. (lengthx * lengthy * lengthz) must be equal to the size of the data in the memory.

void vtkPixelBufferObject::BindToPackedBuffer (  )  [inline]

For wrapping.

Definition at line 180 of file vtkPixelBufferObject.h.

void vtkPixelBufferObject::BindToUnPackedBuffer (  )  [inline]

Definition at line 184 of file vtkPixelBufferObject.h.

void vtkPixelBufferObject::UnBind (  ) 

Inactivate the buffer.

void vtkPixelBufferObject::Bind ( BufferType  buffer  ) 

Make the buffer active.

void vtkPixelBufferObject::ReleaseMemory (  ) 

Release the memory allocated without destroying the PBO handle.

static bool vtkPixelBufferObject::IsSupported ( vtkRenderWindow renWin  )  [static]

Returns if the context supports the required extensions.

bool vtkPixelBufferObject::LoadRequiredExtensions ( vtkOpenGLExtensionManager mgr  )  [protected]

Loads all required OpenGL extensions. Must be called every time a new context is set.

void vtkPixelBufferObject::CreateBuffer (  )  [protected]

Create the pixel buffer object.

void vtkPixelBufferObject::DestroyBuffer (  )  [protected]

Destroys the pixel buffer object.


Member Data Documentation

Definition at line 223 of file vtkPixelBufferObject.h.

int vtkPixelBufferObject::Type [protected]

Definition at line 224 of file vtkPixelBufferObject.h.

unsigned int vtkPixelBufferObject::Size [protected]

Definition at line 225 of file vtkPixelBufferObject.h.

Definition at line 226 of file vtkPixelBufferObject.h.

unsigned int vtkPixelBufferObject::Handle [protected]

Definition at line 227 of file vtkPixelBufferObject.h.


The documentation for this class was generated from the following file:

Generated on Wed Jun 3 19:24:04 2009 for VTK by  doxygen 1.5.6