| 511 | } |
| 512 | |
| 513 | static void listMaterial(ListMaterialsOut *out, int type, int index, const BasicMaterialInfoMask *mask) |
| 514 | { |
| 515 | MaterialInfo info(type, index); |
| 516 | if (info.isValid()) |
| 517 | describeMaterial(out->add_value(), info, mask); |
| 518 | } |
| 519 | |
| 520 | static command_result ListMaterials(color_ostream &stream, |
| 521 | const ListMaterialsIn *in, ListMaterialsOut *out) |
no test coverage detected