MCPcopy Create free account
hub / github.com/defold/defold / OutputClearcoat

Function OutputClearcoat

engine/modelc/src/modelimporter_debug.cpp:280–291  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

278}
279
280static 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
293static void OutputTransmission(Transmission* p, int indent)
294{

Callers 1

OutputMaterialFunction · 0.85

Calls 3

OutputIndentFunction · 0.85
OutputValueFunction · 0.85
OutputTextureViewFunction · 0.85

Tested by

no test coverage detected