/usr/include/vtk-7.1/vtkShadowMapBakerPass.h is in libvtk7-dev 7.1.1+dfsg1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkShadowMapBakerPass.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/**
* @class vtkShadowMapBakerPass
* @brief Implement a builder of shadow map pass.
*
* Bake a list of shadow maps, once per spot light.
* It work in conjunction with the vtkShadowMapPass, which uses the
* shadow maps for rendering the opaque geometry (a technique to render hard
* shadows in hardware).
*
* This pass expects an initialized depth buffer and color buffer.
* Initialized buffers means they have been cleared with farest z-value and
* background color/gradient/transparent color.
* An opaque pass may have been performed right after the initialization.
*
*
*
* Its delegate is usually set to a vtkOpaquePass.
*
* @par Implementation:
* The first pass of the algorithm is to generate a shadow map per light
* (depth map from the light point of view) by rendering the opaque objects
*
* @sa
* vtkRenderPass, vtkOpaquePass, vtkShadowMapPass
*/
#ifndef vtkShadowMapBakerPass_h
#define vtkShadowMapBakerPass_h
#include "vtkRenderingOpenGL2Module.h" // For export macro
#include "vtkSmartPointer.h" // for ivars
#include <vector> // STL Header
#include "vtkRenderPass.h"
class vtkOpenGLRenderWindow;
class vtkInformationIntegerKey;
class vtkCamera;
class vtkLight;
class vtkFrameBufferObject;
class vtkTextureObject;
class VTKRENDERINGOPENGL2_EXPORT vtkShadowMapBakerPass : public vtkRenderPass
{
public:
static vtkShadowMapBakerPass *New();
vtkTypeMacro(vtkShadowMapBakerPass,vtkRenderPass);
void PrintSelf(ostream& os, vtkIndent indent);
/**
* Perform rendering according to a render state \p s.
* \pre s_exists: s!=0
*/
virtual void Render(const vtkRenderState *s);
/**
* Release graphics resources and ask components to release their own
* resources.
* \pre w_exists: w!=0
*/
void ReleaseGraphicsResources(vtkWindow *w);
//@{
/**
* Delegate for rendering the camera, lights, and opaque geometry.
* If it is NULL, nothing will be rendered and a warning will be emitted.
* It defaults to a vtkCameraPass with a sequence of
* vtkLightPass/vtkOpaquePass.
*/
vtkGetObjectMacro(OpaqueSequence,vtkRenderPass);
virtual void SetOpaqueSequence(vtkRenderPass *opaqueSequence);
//@}
//@{
/**
* Delegate for compositing of the shadow maps across processors.
* If it is NULL, there is no z compositing.
* It is usually set to a vtkCompositeZPass (Parallel package).
* Initial value is a NULL pointer.
*/
vtkGetObjectMacro(CompositeZPass,vtkRenderPass);
virtual void SetCompositeZPass(vtkRenderPass *compositeZPass);
//@}
//@{
/**
* Set/Get the number of pixels in each dimension of the shadow maps
* (shadow maps are square). Initial value is 256. The greater the better.
* Resolution does not have to be a power-of-two value.
*/
vtkSetMacro(Resolution,unsigned int);
vtkGetMacro(Resolution,unsigned int);
//@}
/**
* INTERNAL USE ONLY.
* Internally used by vtkShadowMapBakerPass and vtkShadowMapPass.
* Tell if there is at least one shadow.
* Initial value is false.
*/
bool GetHasShadows();
/**
* INTERNAL USE ONLY.
* Internally used by vtkShadowMapBakerPass and vtkShadowMapPass.
* Tell if the light `l' can create shadows.
* The light has to not be a head light and to be directional or
* positional with an angle less than 180 degrees.
* \pre l_exists: l!=0
*/
bool LightCreatesShadow(vtkLight *l);
/**
* INTERNAL USE ONLY
* Internally used by vtkShadowMapBakerPass and vtkShadowMapPass.
* Give access to the baked shadow maps.
*/
std::vector<vtkSmartPointer<vtkTextureObject> > *GetShadowMaps();
/**
* INTERNAL USE ONLY.
* Internally used by vtkShadowMapBakerPass and vtkShadowMapPass.
* Give access the cameras builds from the ligths.
*/
std::vector<vtkSmartPointer<vtkCamera> > *GetLightCameras();
/**
* INTERNAL USE ONLY.
* Internally used by vtkShadowMapBakerPass and vtkShadowMapPass.
* Do the shadows need to be updated?
* Value changed by vtkShadowMapBakerPass and used by vtkShadowMapPass.
* Initial value is true.
*/
bool GetNeedUpdate();
// // Description:
// INTERNAL USE ONLY.
// Internally used by vtkShadowMapBakerPass and vtkShadowMapPass.
//
// Set NeedUpate to false. Called by vtkShadowMapPass.
void SetUpToDate();
protected:
/**
* Default constructor. DelegatetPass is set to NULL.
*/
vtkShadowMapBakerPass();
/**
* Destructor.
*/
virtual ~vtkShadowMapBakerPass();
/**
* Helper method to compute the mNearest point in a given direction.
* To be called several times, with initialized = false the first time.
* v: point
* pt: origin of the direction
* dir: direction
*/
void PointNearFar(double *v,
double *pt,
double *dir,
double &mNear,
double &mFar,
bool initialized);
/**
* Compute the min/max of the projection of a box in a given direction.
* bb: bounding box
* pt: origin of the direction
* dir: direction
*/
void BoxNearFar(double *bb,
double *pt,
double *dir,
double &mNear,
double &mFar);
/**
* Build a camera from spot light parameters.
* \pre light_exists: light!=0
* \pre lcamera_exists: lcamera!=0
*/
void BuildCameraLight(vtkLight *light,
double *boundingBox,
vtkCamera *lcamera);
/**
* Check if shadow mapping is supported by the current OpenGL context.
* \pre w_exists: w!=0
*/
void CheckSupport(vtkOpenGLRenderWindow *w);
vtkRenderPass *OpaqueSequence;
vtkRenderPass *CompositeZPass;
unsigned int Resolution;
bool HasShadows;
/**
* Graphics resources.
*/
vtkFrameBufferObject *FrameBufferObject;
std::vector<vtkSmartPointer<vtkTextureObject> > *ShadowMaps;
std::vector<vtkSmartPointer<vtkCamera> > *LightCameras;
vtkTimeStamp LastRenderTime;
bool NeedUpdate;
private:
vtkShadowMapBakerPass(const vtkShadowMapBakerPass&) VTK_DELETE_FUNCTION;
void operator=(const vtkShadowMapBakerPass&) VTK_DELETE_FUNCTION;
};
#endif
|