FreeMat
|
Section: Visualization Toolkit Rendering Classes
Provides low-level access to GPU memory. Used to pass raw data to GPU. The data is uploaded into a pixel buffer.
To create an instance of class vtkPixelBufferObject, simply invoke its constructor as follows
obj = vtkPixelBufferObject
The class vtkPixelBufferObject has several methods that can be used. They are listed below. Note that the documentation is translated automatically from the VTK sources, and may not be completely intelligible. When in doubt, consult the VTK website. In the methods listed below, obj
is an instance of the vtkPixelBufferObject class.
string = obj.GetClassName ()
int = obj.IsA (string name)
vtkPixelBufferObject = obj.NewInstance ()
vtkPixelBufferObject = obj.SafeDownCast (vtkObject o)
obj.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 = obj.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. int = obj.GetUsage ()
- Usage is a performance hint. Valid values are:obj.SetUsage (int )
- Usage is a performance hint. Valid values are:int = obj.GetType ()
- 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. int = obj.GetSize ()
- Get the size of the data loaded into the GPU. Size is in the number of elements of the uploaded Type. int = obj.GetHandle ()
- Get the openGL buffer handle. obj.BindToPackedBuffer ()
obj.BindToUnPackedBuffer ()
- Inactivate the buffer. obj.UnBind ()
- Inactivate the buffer.