| 457 | } |
| 458 | |
| 459 | GPUVertexLayout* MeshBase::GetVertexLayout() const |
| 460 | { |
| 461 | return GPUVertexLayout::Get(Span<GPUBuffer*>(_vertexBuffers, MODEL_MAX_VB)); |
| 462 | } |
| 463 | |
| 464 | bool MeshBase::Init(uint32 vertices, uint32 triangles, const Array<const void*, FixedAllocation<MODEL_MAX_VB>>& vbData, const void* ibData, bool use16BitIndexBuffer, Array<GPUVertexLayout*, FixedAllocation<MODEL_MAX_VB>> vbLayout) |
| 465 | { |
no test coverage detected