Added equals operator to CUllingSet.
Update AUTHORS file. Change tabs to 4 spaces in ive/TextureCubeMap.cpp
This commit is contained in:
@@ -55,6 +55,20 @@ class SG_EXPORT CullingSet : public Referenced
|
||||
}
|
||||
}
|
||||
|
||||
CullingSet& operator = (const CullingSet& cs)
|
||||
{
|
||||
if (this==&cs) return *this;
|
||||
|
||||
_mask = cs._mask;
|
||||
_frustum = cs._frustum;
|
||||
_occluderList = cs._occluderList;
|
||||
_pixelSizeVector = cs._pixelSizeVector;
|
||||
_smallFeatureCullingPixelSize = cs._smallFeatureCullingPixelSize;
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
inline void set(const CullingSet& cs)
|
||||
{
|
||||
_mask = cs._mask;
|
||||
|
||||
Reference in New Issue
Block a user