includeReplacer method
Implementation
String includeReplacer(match, include) {
final string = shaderChunk[include];
if (string == null) {
throw ('Can not resolve #include <$include>');
}
return resolveIncludes(string);
}
String includeReplacer(match, include) {
final string = shaderChunk[include];
if (string == null) {
throw ('Can not resolve #include <$include>');
}
return resolveIncludes(string);
}