VTK
|
Convenient class for post-processing passes. render pass. More...
#include <vtkImageProcessingPass.h>
Public Types | |
typedef vtkRenderPass | Superclass |
Public Member Functions | |
virtual int | IsA (const char *type) |
vtkImageProcessingPass * | NewInstance () const |
void | PrintSelf (ostream &os, vtkIndent indent) |
void | ReleaseGraphicsResources (vtkWindow *w) |
virtual vtkRenderPass * | GetDelegatePass () |
virtual void | SetDelegatePass (vtkRenderPass *delegatePass) |
Static Public Member Functions | |
static int | IsTypeOf (const char *type) |
static vtkImageProcessingPass * | SafeDownCast (vtkObjectBase *o) |
Protected Member Functions | |
virtual vtkObjectBase * | NewInstanceInternal () const |
vtkImageProcessingPass () | |
virtual | ~vtkImageProcessingPass () |
void | RenderDelegate (const vtkRenderState *s, int width, int height, int newWidth, int newHeight, vtkFrameBufferObject *fbo, vtkTextureObject *target) |
Protected Attributes | |
vtkRenderPass * | DelegatePass |
Convenient class for post-processing passes. render pass.
Abstract class with some convenient methods frequently used in subclasses.
Definition at line 39 of file vtkImageProcessingPass.h.
Reimplemented from vtkRenderPass.
Reimplemented in vtkSobelGradientMagnitudePass, and vtkGaussianBlurPass.
Definition at line 42 of file vtkImageProcessingPass.h.
vtkImageProcessingPass::vtkImageProcessingPass | ( | ) | [protected] |
Default constructor. DelegatePass is set to NULL.
virtual vtkImageProcessingPass::~vtkImageProcessingPass | ( | ) | [protected, virtual] |
Destructor.
static int vtkImageProcessingPass::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 vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkRenderPass.
Reimplemented in vtkSobelGradientMagnitudePass, and vtkGaussianBlurPass.
virtual int vtkImageProcessingPass::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 vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkRenderPass.
Reimplemented in vtkSobelGradientMagnitudePass, and vtkGaussianBlurPass.
static vtkImageProcessingPass* vtkImageProcessingPass::SafeDownCast | ( | vtkObjectBase * | o | ) | [static] |
Reimplemented from vtkRenderPass.
Reimplemented in vtkSobelGradientMagnitudePass, and vtkGaussianBlurPass.
virtual vtkObjectBase* vtkImageProcessingPass::NewInstanceInternal | ( | ) | const [protected, virtual] |
Reimplemented from vtkRenderPass.
Reimplemented in vtkSobelGradientMagnitudePass, and vtkGaussianBlurPass.
Reimplemented from vtkRenderPass.
Reimplemented in vtkSobelGradientMagnitudePass, and vtkGaussianBlurPass.
void vtkImageProcessingPass::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 vtkRenderPass.
Reimplemented in vtkSobelGradientMagnitudePass, and vtkGaussianBlurPass.
void vtkImageProcessingPass::ReleaseGraphicsResources | ( | vtkWindow * | w | ) | [virtual] |
Release graphics resources and ask components to release their own resources.
Reimplemented from vtkRenderPass.
Reimplemented in vtkSobelGradientMagnitudePass, and vtkGaussianBlurPass.
virtual vtkRenderPass* vtkImageProcessingPass::GetDelegatePass | ( | ) | [virtual] |
Delegate for rendering the image to be processed. If it is NULL, nothing will be rendered and a warning will be emitted. It is usually set to a vtkCameraPass or to a post-processing pass. Initial value is a NULL pointer.
virtual void vtkImageProcessingPass::SetDelegatePass | ( | vtkRenderPass * | delegatePass | ) | [virtual] |
Delegate for rendering the image to be processed. If it is NULL, nothing will be rendered and a warning will be emitted. It is usually set to a vtkCameraPass or to a post-processing pass. Initial value is a NULL pointer.
void vtkImageProcessingPass::RenderDelegate | ( | const vtkRenderState * | s, |
int | width, | ||
int | height, | ||
int | newWidth, | ||
int | newHeight, | ||
vtkFrameBufferObject * | fbo, | ||
vtkTextureObject * | target | ||
) | [protected] |
Render delegate with a image of different dimensions than the original one.
vtkRenderPass* vtkImageProcessingPass::DelegatePass [protected] |
Definition at line 80 of file vtkImageProcessingPass.h.