| 73 | } |
| 74 | |
| 75 | static V2F_C4B_T2F* expandBufferAndGetPointer(axstd::pod_vector<V2F_C4B_T2F>& buffer, size_t count) |
| 76 | { |
| 77 | size_t oldSize = buffer.size(); |
| 78 | buffer.expand(count); |
| 79 | return buffer.data() + oldSize; |
| 80 | } |
| 81 | |
| 82 | DrawNode::DrawNode() |
| 83 | { |
no test coverage detected