| 474 | } |
| 475 | |
| 476 | static inline dmRender::HMaterial GetComponentMaterial(const ModelComponent* component, const ModelResource* resource, uint32_t index) { |
| 477 | return GetMaterialResource(component, resource, index)->m_Material; |
| 478 | } |
| 479 | |
| 480 | static inline dmRender::HMaterial GetRenderMaterial(dmRender::HMaterial context_material, const ModelComponent* component, const ModelResource* resource, uint32_t index) { |
| 481 | return context_material ? context_material : GetComponentMaterial(component, resource, index); |
no test coverage detected