Changeset 1125 for GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include
- Timestamp:
- 07/12/06 15:44:01 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include/RenderingRuns/OgreFocusingMapRenderingRun.h
r1103 r1125 22 22 @brief Constructor. 23 23 24 @param sharedRuns a pointer to the OgreSharedRuns this run belongs to 25 @param name the name of the scene depth texture to be created 26 @param playerView pointer to the player's viewport 24 27 25 */ 28 26 OgreFocusingMapRenderingRun(String name, 29 Viewport* playerView,30 27 Matrix4 lightMatrix, 31 28 unsigned int focusingMapSize); … … 36 33 void getMinMax(Vector3& min, Vector3& max); 37 34 void setLightMatrix(Matrix4 &m){this->lightMatrix = m;} 35 void setCameraMatrices(const Matrix4 &view, const Matrix4 &projection); 38 36 39 37 protected: … … 41 39 @brief pointer to the player's viewport 42 40 */ 43 Viewport* playerView;44 41 Matrix4 lightMatrix; 45 42 /** 46 43 @brief pointer to the player's camera 47 44 */ 48 Camera* playerCamera;45 Camera* camera; 49 46 50 47 /** … … 63 60 inline void createFocusingMap(); 64 61 62 bool needUpdate(unsigned long frameNum ) 63 { 64 return true; 65 } 66 65 67 };
Note: See TracChangeset
for help on using the changeset viewer.