| 278 | } |
| 279 | |
| 280 | static void OutputClearcoat(Clearcoat* p, int indent) |
| 281 | { |
| 282 | OutputIndent(indent); |
| 283 | printf("clearcoat\n"); |
| 284 | |
| 285 | OutputValue("clearcoat_factor", p->m_ClearcoatFactor, indent+1); |
| 286 | OutputValue("clearcoat_roughness_factor", p->m_ClearcoatRoughnessFactor, indent+1); |
| 287 | |
| 288 | OutputTextureView("clearcoat_texture", &p->m_ClearcoatTexture, indent+1); |
| 289 | OutputTextureView("clearcoat_roughness_texture", &p->m_ClearcoatRoughnessTexture, indent+1); |
| 290 | OutputTextureView("clearcoat_normal_texture", &p->m_ClearcoatNormalTexture, indent+1); |
| 291 | } |
| 292 | |
| 293 | static void OutputTransmission(Transmission* p, int indent) |
| 294 | { |
no test coverage detected