| 61 | virtual ~TSShapeVertexArray() { set(NULL, 0); } |
| 62 | |
| 63 | virtual void set(void *b, U32 s, bool autoFree = true) |
| 64 | { |
| 65 | if (base && autoFree) |
| 66 | dFree_aligned(base); |
| 67 | base = reinterpret_cast<U8 *>(b); |
| 68 | size = s; |
| 69 | } |
| 70 | }; |
| 71 | |
| 72 | /// TSShape stores generic data for a 3space model. |
nothing calls this directly
no test coverage detected