VTK
|
#include <vtkAbstractRenderDevice.h>
Public Types | |
typedef vtkObject | Superclass |
Public Member Functions | |
virtual int | IsA (const char *type) |
vtkAbstractRenderDevice * | NewInstance () const |
void | PrintSelf (ostream &os, vtkIndent indent) |
void | SetRequestedGLVersion (int major, int minor) |
Set the context that should be requested (must be set before the widget is rendered for the first time. | |
virtual bool | CreateNewWindow (const vtkRecti &geometry, const std::string &name)=0 |
Create a window with the desired geometry. | |
virtual void | MakeCurrent ()=0 |
Make the context current so that it can be used by OpenGL. | |
Static Public Member Functions | |
static int | IsTypeOf (const char *type) |
static vtkAbstractRenderDevice * | SafeDownCast (vtkObjectBase *o) |
static vtkAbstractRenderDevice * | New () |
Make a new device, this class is abstract and one of its derived forms will be returned, or NULL if no override has been provided. | |
Protected Member Functions | |
virtual vtkObjectBase * | NewInstanceInternal () const |
vtkAbstractRenderDevice () | |
~vtkAbstractRenderDevice () | |
Protected Attributes | |
int | GLMajor |
int | GLMinor |
Definition at line 23 of file vtkAbstractRenderDevice.h.
Reimplemented from vtkObject.
Reimplemented in vtkXOpenGLRenderDevice.
Definition at line 26 of file vtkAbstractRenderDevice.h.
vtkAbstractRenderDevice::vtkAbstractRenderDevice | ( | ) | [protected] |
vtkAbstractRenderDevice::~vtkAbstractRenderDevice | ( | ) | [protected] |
static int vtkAbstractRenderDevice::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 vtkObject.
Reimplemented in vtkXOpenGLRenderDevice.
virtual int vtkAbstractRenderDevice::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 vtkObject.
Reimplemented in vtkXOpenGLRenderDevice.
static vtkAbstractRenderDevice* vtkAbstractRenderDevice::SafeDownCast | ( | vtkObjectBase * | o | ) | [static] |
Reimplemented from vtkObject.
Reimplemented in vtkXOpenGLRenderDevice.
virtual vtkObjectBase* vtkAbstractRenderDevice::NewInstanceInternal | ( | ) | const [protected, virtual] |
Reimplemented from vtkObject.
Reimplemented in vtkXOpenGLRenderDevice.
Reimplemented from vtkObject.
Reimplemented in vtkXOpenGLRenderDevice.
void vtkAbstractRenderDevice::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.
Reimplemented in vtkXOpenGLRenderDevice.
static vtkAbstractRenderDevice* vtkAbstractRenderDevice::New | ( | ) | [static] |
Make a new device, this class is abstract and one of its derived forms will be returned, or NULL if no override has been provided.
Reimplemented from vtkObject.
Reimplemented in vtkXOpenGLRenderDevice.
void vtkAbstractRenderDevice::SetRequestedGLVersion | ( | int | major, |
int | minor | ||
) |
Set the context that should be requested (must be set before the widget is rendered for the first time.
major | Major GL version, default is 2. |
minor | Minor GL version, default is 1. |
virtual bool vtkAbstractRenderDevice::CreateNewWindow | ( | const vtkRecti & | geometry, |
const std::string & | name | ||
) | [pure virtual] |
Create a window with the desired geometry.
geometry | The geometry in screen coordinates for the window. |
Implemented in vtkXOpenGLRenderDevice.
virtual void vtkAbstractRenderDevice::MakeCurrent | ( | ) | [pure virtual] |
Make the context current so that it can be used by OpenGL.
This is an expensive call, and so its use should be minimized to once per render ideally.
Implemented in vtkXOpenGLRenderDevice.
int vtkAbstractRenderDevice::GLMajor [protected] |
Definition at line 63 of file vtkAbstractRenderDevice.h.
int vtkAbstractRenderDevice::GLMinor [protected] |
Definition at line 64 of file vtkAbstractRenderDevice.h.