///////////////////////////////////////////////////////
| 226 | |
| 227 | //////////////////////////////////////////////////////////// |
| 228 | Shader::Shader(const std::filesystem::path& filename, Type type) |
| 229 | { |
| 230 | if (!loadFromFile(filename, type)) |
| 231 | throw Exception("Failed to load shader from file"); |
| 232 | } |
| 233 | |
| 234 | |
| 235 | //////////////////////////////////////////////////////////// |
nothing calls this directly
no outgoing calls
no test coverage detected