| 598 | } |
| 599 | |
| 600 | HVertexStreamDeclaration NewVertexStreamDeclaration(HContext context) |
| 601 | { |
| 602 | VertexStreamDeclaration* sd = new VertexStreamDeclaration(); |
| 603 | memset(sd, 0, sizeof(*sd)); |
| 604 | |
| 605 | sd->m_Streams.SetCapacity(8); |
| 606 | return sd; |
| 607 | } |
| 608 | |
| 609 | HVertexStreamDeclaration NewVertexStreamDeclaration(HContext context, VertexStepFunction step_function) |
| 610 | { |