| 326 | } |
| 327 | |
| 328 | static void OutputSheen(Sheen* p, int indent) |
| 329 | { |
| 330 | OutputIndent(indent); |
| 331 | printf("sheen\n"); |
| 332 | OutputArray("sheen_color_factor", p->m_SheenColorFactor, indent+1); |
| 333 | OutputValue("sheen_roughness_factor", p->m_SheenRoughnessFactor, indent+1); |
| 334 | OutputTextureView("sheen_color_texture", &p->m_SheenColorTexture, indent+1); |
| 335 | OutputTextureView("sheen_roughness_texture", &p->m_SheenRoughnessTexture, indent+1); |
| 336 | } |
| 337 | |
| 338 | static void OutputEmissiveStrength(EmissiveStrength* p, int indent) |
| 339 | { |
no test coverage detected