| 294 | } |
| 295 | |
| 296 | void MeshObject::UpdateImpl(ref_ptr<dp::GraphicsContext> context, uint32_t bufferInd) |
| 297 | { |
| 298 | CHECK(m_impl != nullptr, ()); |
| 299 | m_impl->UpdateBuffer(context, bufferInd); |
| 300 | } |
| 301 | |
| 302 | // static |
| 303 | std::vector<float> MeshObject::GenerateNormalsForTriangles(std::vector<float> const & vertices, size_t componentsCount) |
nothing calls this directly
no test coverage detected