| 1174 | |
| 1175 | void Scene::WriteInstanceBuffer(nvrhi::ICommandList* commandList) const |
| 1176 | { |
| 1177 | commandList->writeBuffer(m_InstanceBuffer, m_Resources->instanceData.data(), |
| 1178 | m_Resources->instanceData.size() * sizeof(InstanceData)); |
| 1179 | } |
| 1180 | |
| 1181 | void Scene::UpdateMaterial(const std::shared_ptr<Material>& material) |
| 1182 | { |
nothing calls this directly
no test coverage detected