VTK  9.3.1
vtkOpenGLProperty.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
11 #ifndef vtkOpenGLProperty_h
12 #define vtkOpenGLProperty_h
13 
14 #include "vtkProperty.h"
15 #include "vtkRenderingOpenGL2Module.h" // For export macro
16 
17 VTK_ABI_NAMESPACE_BEGIN
18 class VTKRENDERINGOPENGL2_EXPORT vtkOpenGLProperty : public vtkProperty
19 {
20 public:
21  static vtkOpenGLProperty* New();
23  void PrintSelf(ostream& os, vtkIndent indent) override;
24 
28  void Render(vtkActor* a, vtkRenderer* ren) override;
29 
33  void BackfaceRender(vtkActor* a, vtkRenderer* ren) override;
34 
40  void PostRender(vtkActor* a, vtkRenderer* r) override;
41 
47  void ReleaseGraphicsResources(vtkWindow* win) override;
48 
49 protected:
51  ~vtkOpenGLProperty() override;
52 
57  bool RenderTextures(vtkActor* actor, vtkRenderer* renderer);
58 
59 private:
60  vtkOpenGLProperty(const vtkOpenGLProperty&) = delete;
61  void operator=(const vtkOpenGLProperty&) = delete;
62 };
63 
64 VTK_ABI_NAMESPACE_END
65 #endif
virtual void Render(vtkActor *, vtkRenderer *)
This method causes the property to set up whatever is required for its instance variables.
represents an object (geometry & properties) in a rendered scene
Definition: vtkActor.h:40
static vtkProperty * New()
Construct object with object color, ambient color, diffuse color, specular color, and edge color whit...
represent surface properties of a geometric object
Definition: vtkProperty.h:56
abstract specification for renderers
Definition: vtkRenderer.h:61
OpenGL property.
window superclass for vtkRenderWindow
Definition: vtkWindow.h:27
a simple class to control print indentation
Definition: vtkIndent.h:28
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual void PostRender(vtkActor *, vtkRenderer *)
This method is called after the actor has been rendered.
virtual void BackfaceRender(vtkActor *, vtkRenderer *)
This method renders the property as a backface property.
Definition: vtkProperty.h:90
virtual void ReleaseGraphicsResources(vtkWindow *win)
Release any graphics resources that are being consumed by this property.