Compare commits

...

1 Commits

Author SHA1 Message Date
Sungun Park
23e1779f1e Fix a compile error
FMaterial accesses a private static method of the MaterialDefinition
class, which incurs a compile error for certain compilers.
2025-09-24 12:07:40 -07:00

View File

@@ -109,6 +109,7 @@ struct MaterialDefinition {
private:
friend class MaterialCache;
friend class FMaterial;
static std::unique_ptr<MaterialParser> createParser(backend::Backend const backend,
utils::FixedCapacityVector<backend::ShaderLanguage> languages,