VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Rendering
OpenGL
vtkSobelGradientMagnitudePass.h
Go to the documentation of this file.
1
/*=========================================================================
2
3
Program: Visualization Toolkit
4
Module: vtkSobelGradientMagnitudePass.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
=========================================================================*/
62
#ifndef __vtkSobelGradientMagnitudePass_h
63
#define __vtkSobelGradientMagnitudePass_h
64
65
#include "vtkRenderingOpenGLModule.h"
// For export macro
66
#include "
vtkImageProcessingPass.h
"
67
68
class
vtkOpenGLRenderWindow
;
69
class
vtkDepthPeelingPassLayerList;
// Pimpl
70
class
vtkShaderProgram2
;
71
class
vtkShader2
;
72
class
vtkFrameBufferObject
;
73
class
vtkTextureObject
;
74
75
class
VTKRENDERINGOPENGL_EXPORT
vtkSobelGradientMagnitudePass
:
public
vtkImageProcessingPass
76
{
77
public
:
78
static
vtkSobelGradientMagnitudePass
*
New
();
79
vtkTypeMacro(
vtkSobelGradientMagnitudePass
,
vtkImageProcessingPass
);
80
void
PrintSelf
(ostream& os,
vtkIndent
indent);
81
82
//BTX
84
86
virtual
void
Render
(
const
vtkRenderState
*s);
87
//ETX
89
92
void
ReleaseGraphicsResources
(
vtkWindow
*w);
93
94
protected
:
96
vtkSobelGradientMagnitudePass
();
97
99
virtual
~
vtkSobelGradientMagnitudePass
();
100
102
103
vtkFrameBufferObject
*
FrameBufferObject
;
104
vtkTextureObject
*
Pass1
;
// render target for the scene
105
vtkTextureObject
*
Gx1
;
// render target 0 for the first shader
106
vtkTextureObject
*
Gy1
;
// render target 1 for the first shader
107
vtkShaderProgram2
*
Program1
;
// shader to compute Gx1 and Gy1
108
vtkShaderProgram2
*
Program2
;
// shader to compute |G| from Gx1 and Gy1
110
111
private
:
112
vtkSobelGradientMagnitudePass
(
const
vtkSobelGradientMagnitudePass
&);
// Not implemented.
113
void
operator=(
const
vtkSobelGradientMagnitudePass
&);
// Not implemented.
114
};
115
116
#endif
Generated on Thu May 24 2012 22:22:36 for VTK by
1.8.1