| 51 | ); |
| 52 | |
| 53 | SkySphere::SkySphere() |
| 54 | { |
| 55 | mTypeMask |= EnvironmentObjectType | StaticObjectType; |
| 56 | mNetFlags.set(Ghostable | ScopeAlways); |
| 57 | |
| 58 | INIT_ASSET(Material); |
| 59 | mMatInstance = NULL; |
| 60 | |
| 61 | mIsVBDirty = false; |
| 62 | mPrimCount = 0; |
| 63 | mFogBandHeight = 0; |
| 64 | mFogPrimCount = 0; |
| 65 | |
| 66 | mMatrixSet = reinterpret_cast<MatrixSet*>(dMalloc_aligned(sizeof(MatrixSet), 16)); |
| 67 | constructInPlace(mMatrixSet); |
| 68 | |
| 69 | mFogBandMat = NULL; |
| 70 | mFogBandMatInst = NULL; |
| 71 | } |
| 72 | |
| 73 | SkySphere::~SkySphere() |
| 74 | { |
nothing calls this directly
no test coverage detected