| 132 | } |
| 133 | |
| 134 | std::string ofToResourcePath(const std::string& path) |
| 135 | { |
| 136 | if (!path.empty() && (path[0] == '.' || juce::File::isAbsolutePath(path))) |
| 137 | return path; |
| 138 | |
| 139 | static const auto sResourceDir = ofToFactoryPath("resource") + '/'; |
| 140 | return sResourceDir + path; |
| 141 | } |
| 142 | |
| 143 | struct StyleStack |
| 144 | { |
no test coverage detected