| 351 | }; |
| 352 | |
| 353 | static bool ExpectEquals(GLTFPropsParser& propsParser) |
| 354 | { |
| 355 | if (propsParser.GetNext().mKind != GLTFPropsParser::NodeKind_Equals) |
| 356 | return false; |
| 357 | return true; |
| 358 | }; |
| 359 | |
| 360 | bool GLTFReader::ParseMaterialDef(ModelMaterialDef* materialDef, const StringImpl& matText) |
| 361 | { |
no test coverage detected