| 116 | } |
| 117 | |
| 118 | DrawNode3D* DrawNode3D::create() |
| 119 | { |
| 120 | DrawNode3D* ret = new DrawNode3D(); |
| 121 | if (ret->init()) |
| 122 | { |
| 123 | ret->autorelease(); |
| 124 | } |
| 125 | else |
| 126 | { |
| 127 | AX_SAFE_DELETE(ret); |
| 128 | } |
| 129 | |
| 130 | return ret; |
| 131 | } |
| 132 | |
| 133 | void DrawNode3D::ensureCapacity(int count) |
| 134 | { |
nothing calls this directly
no test coverage detected