diff options
author | Jacek Antonelli | 2008-09-06 18:24:57 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-09-06 18:25:07 -0500 |
commit | 798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch) | |
tree | 1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/llmath/llcamera.h | |
parent | Second Life viewer sources 1.20.15 (diff) | |
download | meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.zip meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.gz meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.bz2 meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.xz |
Second Life viewer sources 1.21.0-RC
Diffstat (limited to 'linden/indra/llmath/llcamera.h')
-rw-r--r-- | linden/indra/llmath/llcamera.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/linden/indra/llmath/llcamera.h b/linden/indra/llmath/llcamera.h index 7066b9f..2884338 100644 --- a/linden/indra/llmath/llcamera.h +++ b/linden/indra/llmath/llcamera.h | |||
@@ -115,11 +115,12 @@ protected: | |||
115 | LLPlane mWorldPlanes[PLANE_NUM]; | 115 | LLPlane mWorldPlanes[PLANE_NUM]; |
116 | LLPlane mHorizPlanes[HORIZ_PLANE_NUM]; | 116 | LLPlane mHorizPlanes[HORIZ_PLANE_NUM]; |
117 | 117 | ||
118 | typedef struct | 118 | struct frustum_plane |
119 | { | 119 | { |
120 | frustum_plane() : mask(0) {} | ||
120 | LLPlane p; | 121 | LLPlane p; |
121 | U8 mask; | 122 | U8 mask; |
122 | } frustum_plane; | 123 | }; |
123 | frustum_plane mAgentPlanes[7]; //frustum planes in agent space a la gluUnproject (I'm a bastard, I know) - DaveP | 124 | frustum_plane mAgentPlanes[7]; //frustum planes in agent space a la gluUnproject (I'm a bastard, I know) - DaveP |
124 | 125 | ||
125 | U32 mPlaneCount; //defaults to 6, if setUserClipPlane is called, uses user supplied clip plane in | 126 | U32 mPlaneCount; //defaults to 6, if setUserClipPlane is called, uses user supplied clip plane in |