| 239 | } |
| 240 | |
| 241 | static void OutputTexture(Texture* texture, int indent) |
| 242 | { |
| 243 | OutputIndent(indent); |
| 244 | printf("Texture %d: %s \n", texture->m_Index, texture->m_Name); |
| 245 | |
| 246 | if (texture->m_Image) |
| 247 | OutputValue("image", texture->m_Image->m_Name, indent+1); |
| 248 | if (texture->m_Sampler) |
| 249 | OutputValue("sampler", texture->m_Sampler->m_Name, indent+1); |
| 250 | if (texture->m_BasisuImage) |
| 251 | OutputValue("basisu_image", texture->m_BasisuImage->m_Name, indent+1); |
| 252 | } |
| 253 | |
| 254 | |
| 255 | static void OutputPbrMetallicRoughness(PbrMetallicRoughness* p, int indent) |
no test coverage detected