VTK  9.4.20250102
vtkSobelGradientMagnitudePass.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
51#ifndef vtkSobelGradientMagnitudePass_h
52#define vtkSobelGradientMagnitudePass_h
53
55#include "vtkRenderingOpenGL2Module.h" // For export macro
56#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
57
58VTK_ABI_NAMESPACE_BEGIN
59class vtkDepthPeelingPassLayerList; // Pimpl
61class vtkOpenGLHelper;
64
65class VTKRENDERINGOPENGL2_EXPORT VTK_MARSHALAUTO vtkSobelGradientMagnitudePass
67{
68public:
71 void PrintSelf(ostream& os, vtkIndent indent) override;
72
77 void Render(const vtkRenderState* s) override;
78
85
86protected:
91
96
101 vtkTextureObject* Pass1; // render target for the scene
102 vtkTextureObject* Gx1; // render target 0 for the first shader
103 vtkTextureObject* Gy1; // render target 1 for the first shader
104
105 // Structures for the various cell types we render.
106 vtkOpenGLHelper* Program1; // shader to compute Gx1 and Gy1
107 vtkOpenGLHelper* Program2; // shader to compute |G| from Gx1 and Gy1
108
109private:
111 void operator=(const vtkSobelGradientMagnitudePass&) = delete;
112};
113
114VTK_ABI_NAMESPACE_END
115#endif
Convenient class for post-processing passes.
a simple class to control print indentation
Definition vtkIndent.h:108
Internal class which encapsulates OpenGL FramebufferObject.
OpenGL rendering window.
Context in which a vtkRenderPass will render.
Implement a post-processing edge detection with a Sobel gradient magnitude render pass.
vtkSobelGradientMagnitudePass()
Default constructor.
void Render(const vtkRenderState *s) override
Perform rendering according to a render state s.
void ReleaseGraphicsResources(vtkWindow *w) override
Release graphics resources and ask components to release their own resources.
vtkOpenGLFramebufferObject * FrameBufferObject
Graphics resources.
~vtkSobelGradientMagnitudePass() override
Destructor.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkSobelGradientMagnitudePass * New()
abstracts an OpenGL texture object.
window superclass for vtkRenderWindow
Definition vtkWindow.h:48
#define VTK_MARSHALAUTO