VTK
vtkOpenGLFXAAFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkOpenGLFXAAFilter.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
15 
40 #ifndef vtkOpenGLFXAAFilter_h
41 #define vtkOpenGLFXAAFilter_h
42 
43 #include "vtkRenderingOpenGL2Module.h" // For export macro
44 #include "vtkObject.h"
45 #include "vtkFXAAOptions.h" // For DebugOptions enum
46 
47 #include <string> // For std::string
48 
49 class vtkFXAAOptions;
52 class vtkOpenGLRenderer;
54 class vtkShaderProgram;
55 class vtkTextureObject;
57 
58 class VTKRENDERINGOPENGL2_EXPORT vtkOpenGLFXAAFilter: public vtkObject
59 {
60 public:
61  static vtkOpenGLFXAAFilter* New();
63  void PrintSelf(ostream &os, vtkIndent indent) override;
64 
68  void Execute(vtkOpenGLRenderer *ren);
69 
73  void ReleaseGraphicsResources();
74 
80  void UpdateConfiguration(vtkFXAAOptions *opts);
81 
83 
87  vtkSetClampMacro(RelativeContrastThreshold, float, 0.f, 1.f)
88  vtkGetMacro(RelativeContrastThreshold, float)
89  vtkSetClampMacro(HardContrastThreshold, float, 0.f, 1.f)
90  vtkGetMacro(HardContrastThreshold, float)
91  vtkSetClampMacro(SubpixelBlendLimit, float, 0.f, 1.f)
92  vtkGetMacro(SubpixelBlendLimit, float)
93  vtkSetClampMacro(SubpixelContrastThreshold, float, 0.f, 1.f)
94  vtkGetMacro(SubpixelContrastThreshold, float)
95  virtual void SetUseHighQualityEndpoints(bool val);
96  vtkGetMacro(UseHighQualityEndpoints, bool)
97  vtkBooleanMacro(UseHighQualityEndpoints, bool)
98  vtkSetClampMacro(EndpointSearchIterations, int, 0, VTK_INT_MAX)
99  vtkGetMacro(EndpointSearchIterations, int)
100  virtual void SetDebugOptionValue(vtkFXAAOptions::DebugOption opt);
101  vtkGetMacro(DebugOptionValue, vtkFXAAOptions::DebugOption)
103 
104 protected:
106  ~vtkOpenGLFXAAFilter() override;
107 
108  void Prepare();
109  void FreeGLObjects();
110  void CreateGLObjects();
111  void LoadInput();
112  void ApplyFilter();
113  void SubstituteFragmentShader(std::string &fragShader);
114  void Finalize();
115 
116  void StartTimeQuery(vtkOpenGLRenderTimer *timer);
117  void EndTimeQuery(vtkOpenGLRenderTimer *timer);
118  void PrintBenchmark();
119 
120  // Cache GL state that we modify
123 
124  int Viewport[4]; // x, y, width, height
125 
126  // Used to measure execution time:
129 
130  // Parameters:
136 
139 
140  // Set to true when the shader definitions change so we know when to rebuild.
142 
145 
147 
148 private:
149  vtkOpenGLFXAAFilter(const vtkOpenGLFXAAFilter&) = delete;
150  void operator=(const vtkOpenGLFXAAFilter&) = delete;
151 };
152 
153 #endif // vtkOpenGLFXAAFilter_h
VTK_INT_MAX
#define VTK_INT_MAX
Definition: vtkType.h:159
vtkOpenGLFXAAFilter::BlendState
bool BlendState
Definition: vtkOpenGLFXAAFilter.h:121
vtkOpenGLFXAAFilter::SubpixelContrastThreshold
float SubpixelContrastThreshold
Definition: vtkOpenGLFXAAFilter.h:134
vtkOpenGLFXAAFilter::Input
vtkTextureObject * Input
Definition: vtkOpenGLFXAAFilter.h:144
vtkOpenGLFXAAFilter::DepthTestState
bool DepthTestState
Definition: vtkOpenGLFXAAFilter.h:122
vtkOpenGLBufferObject
OpenGL buffer object.
Definition: vtkOpenGLBufferObject.h:33
vtkObject::New
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
vtkOpenGLFXAAFilter::QHelper
vtkOpenGLQuadHelper * QHelper
Definition: vtkOpenGLFXAAFilter.h:146
vtkObject
abstract base class for most VTK objects
Definition: vtkObject.h:59
vtkFXAAOptions
Configuration for FXAA implementations.
Definition: vtkFXAAOptions.h:30
vtkOpenGLQuadHelper
Class to make rendering a full screen quad easier.
Definition: vtkOpenGLQuadHelper.h:54
vtkOpenGLFXAAFilter::RelativeContrastThreshold
float RelativeContrastThreshold
Definition: vtkOpenGLFXAAFilter.h:131
vtkOpenGLFXAAFilter::NeedToRebuildShader
bool NeedToRebuildShader
Definition: vtkOpenGLFXAAFilter.h:141
vtkFXAAOptions::DebugOption
DebugOption
Debugging options that affect the output color buffer.
Definition: vtkFXAAOptions.h:37
vtkOpenGLRenderTimer
Asynchronously measures GPU execution time for a single event.
Definition: vtkOpenGLRenderTimer.h:37
vtkOpenGLFXAAFilter::EndpointSearchIterations
int EndpointSearchIterations
Definition: vtkOpenGLFXAAFilter.h:135
vtkOpenGLFXAAFilter::FXAATimer
vtkOpenGLRenderTimer * FXAATimer
Definition: vtkOpenGLFXAAFilter.h:128
vtkOpenGLFXAAFilter::HardContrastThreshold
float HardContrastThreshold
Definition: vtkOpenGLFXAAFilter.h:132
vtkShaderProgram
The ShaderProgram uses one or more Shader objects.
Definition: vtkShaderProgram.h:47
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkTextureObject
abstracts an OpenGL texture object.
Definition: vtkTextureObject.h:44
vtkOpenGLRenderer
OpenGL renderer.
Definition: vtkOpenGLRenderer.h:45
vtkOpenGLFXAAFilter
Perform FXAA antialiasing on the current framebuffer.
Definition: vtkOpenGLFXAAFilter.h:58
vtkObject::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkObject.h
vtkX3D::string
Definition: vtkX3D.h:490
vtkOpenGLFXAAFilter::DebugOptionValue
vtkFXAAOptions::DebugOption DebugOptionValue
Definition: vtkOpenGLFXAAFilter.h:138
vtkOpenGLFXAAFilter::Renderer
vtkOpenGLRenderer * Renderer
Definition: vtkOpenGLFXAAFilter.h:143
vtkOpenGLFXAAFilter::SubpixelBlendLimit
float SubpixelBlendLimit
Definition: vtkOpenGLFXAAFilter.h:133
vtkFXAAOptions.h
vtkOpenGLVertexArrayObject
The VertexArrayObject class uses, or emulates, vertex array objects.
Definition: vtkOpenGLVertexArrayObject.h:36
vtkOpenGLFXAAFilter::UseHighQualityEndpoints
bool UseHighQualityEndpoints
Definition: vtkOpenGLFXAAFilter.h:137
vtkOpenGLFXAAFilter::PreparationTimer
vtkOpenGLRenderTimer * PreparationTimer
Definition: vtkOpenGLFXAAFilter.h:127