| 316 | } |
| 317 | |
| 318 | static void OutputVolume(Volume* p, int indent) |
| 319 | { |
| 320 | OutputIndent(indent); |
| 321 | printf("volume\n"); |
| 322 | OutputArray("attenuation_color", p->m_AttenuationColor, indent+1); |
| 323 | OutputValue("attenuation_distance", p->m_AttenuationDistance, indent+1); |
| 324 | OutputValue("thickness_factor", p->m_ThicknessFactor, indent+1); |
| 325 | OutputTextureView("thickness_texture", &p->m_ThicknessTexture, indent+1); |
| 326 | } |
| 327 | |
| 328 | static void OutputSheen(Sheen* p, int indent) |
| 329 | { |
no test coverage detected