| 99 | } |
| 100 | |
| 101 | FaceArray::FaceArray(int size, bool dynamic) |
| 102 | { |
| 103 | if (!dynamic) |
| 104 | { |
| 105 | GetData().SetStorage(CharStorageF.Init(64 * 1024)); |
| 106 | _sections.SetStorage(CharStorageS.Init(1024)); |
| 107 | } |
| 108 | if (size) |
| 109 | { |
| 110 | base::Realloc(size); |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | void FaceArray::Clip(const FaceArray& faces, TLVertexTable& tlMesh, const Camera& camera, ClipFlags clipFlags, |
| 115 | bool doCull) |
nothing calls this directly
no test coverage detected