Get and set material properties
| 54 | |
| 55 | // Get and set material properties |
| 56 | glm::vec4 Material::GetDiffuseColor() const { |
| 57 | auto sl = LockRead_(); |
| 58 | return diffuseColor_; |
| 59 | } |
| 60 | |
| 61 | glm::vec3 Material::GetEmissiveColor() const { |
| 62 | auto sl = LockRead_(); |
no test coverage detected